~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to contrib/NGit/NGit.Storage.File/ReflogReader.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
This code is derived from jgit (http://eclipse.org/jgit).
 
3
Copyright owners are documented in jgit's IP log.
 
4
 
 
5
This program and the accompanying materials are made available
 
6
under the terms of the Eclipse Distribution License v1.0 which
 
7
accompanies this distribution, is reproduced below, and is
 
8
available at http://www.eclipse.org/org/documents/edl-v10.php
 
9
 
 
10
All rights reserved.
 
11
 
 
12
Redistribution and use in source and binary forms, with or
 
13
without modification, are permitted provided that the following
 
14
conditions are met:
 
15
 
 
16
- Redistributions of source code must retain the above copyright
 
17
  notice, this list of conditions and the following disclaimer.
 
18
 
 
19
- Redistributions in binary form must reproduce the above
 
20
  copyright notice, this list of conditions and the following
 
21
  disclaimer in the documentation and/or other materials provided
 
22
  with the distribution.
 
23
 
 
24
- Neither the name of the Eclipse Foundation, Inc. nor the
 
25
  names of its contributors may be used to endorse or promote
 
26
  products derived from this software without specific prior
 
27
  written permission.
 
28
 
 
29
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
 
30
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 
31
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
32
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
33
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 
34
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
35
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
36
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
37
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
38
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 
39
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
40
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
41
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
42
*/
 
43
 
 
44
using System;
 
45
using System.Collections.Generic;
 
46
using System.IO;
 
47
using NGit;
 
48
using NGit.Storage.File;
 
49
using NGit.Util;
 
50
using Sharpen;
 
51
 
 
52
namespace NGit.Storage.File
 
53
{
 
54
        /// <summary>Utility for reading reflog entries</summary>
 
55
        public class ReflogReader
 
56
        {
 
57
                /// <summary>Parsed reflog entry</summary>
 
58
                public class Entry
 
59
                {
 
60
                        private ObjectId oldId;
 
61
 
 
62
                        private ObjectId newId;
 
63
 
 
64
                        private PersonIdent who;
 
65
 
 
66
                        private string comment;
 
67
 
 
68
                        internal Entry(byte[] raw, int pos)
 
69
                        {
 
70
                                oldId = ObjectId.FromString(raw, pos);
 
71
                                pos += Constants.OBJECT_ID_STRING_LENGTH;
 
72
                                if (raw[pos++] != ' ')
 
73
                                {
 
74
                                        throw new ArgumentException(JGitText.Get().rawLogMessageDoesNotParseAsLogEntry);
 
75
                                }
 
76
                                newId = ObjectId.FromString(raw, pos);
 
77
                                pos += Constants.OBJECT_ID_STRING_LENGTH;
 
78
                                if (raw[pos++] != ' ')
 
79
                                {
 
80
                                        throw new ArgumentException(JGitText.Get().rawLogMessageDoesNotParseAsLogEntry);
 
81
                                }
 
82
                                who = RawParseUtils.ParsePersonIdentOnly(raw, pos);
 
83
                                int p0 = RawParseUtils.Next(raw, pos, '\t');
 
84
                                if (p0 >= raw.Length)
 
85
                                {
 
86
                                        comment = string.Empty;
 
87
                                }
 
88
                                else
 
89
                                {
 
90
                                        // personident has no \t, no comment present
 
91
                                        int p1 = RawParseUtils.NextLF(raw, p0);
 
92
                                        comment = p1 > p0 ? RawParseUtils.Decode(raw, p0, p1 - 1) : string.Empty;
 
93
                                }
 
94
                        }
 
95
 
 
96
                        /// <returns>the commit id before the change</returns>
 
97
                        public virtual ObjectId GetOldId()
 
98
                        {
 
99
                                return oldId;
 
100
                        }
 
101
 
 
102
                        /// <returns>the commit id after the change</returns>
 
103
                        public virtual ObjectId GetNewId()
 
104
                        {
 
105
                                return newId;
 
106
                        }
 
107
 
 
108
                        /// <returns>user performin the change</returns>
 
109
                        public virtual PersonIdent GetWho()
 
110
                        {
 
111
                                return who;
 
112
                        }
 
113
 
 
114
                        /// <returns>textual description of the change</returns>
 
115
                        public virtual string GetComment()
 
116
                        {
 
117
                                return comment;
 
118
                        }
 
119
 
 
120
                        public override string ToString()
 
121
                        {
 
122
                                return "Entry[" + oldId.Name + ", " + newId.Name + ", " + GetWho() + ", " + GetComment
 
123
                                        () + "]";
 
124
                        }
 
125
                }
 
126
 
 
127
                private FilePath logName;
 
128
 
 
129
                internal ReflogReader(Repository db, string refname)
 
130
                {
 
131
                        logName = new FilePath(db.Directory, "logs/" + refname);
 
132
                }
 
133
 
 
134
                /// <summary>Get the last entry in the reflog</summary>
 
135
                /// <returns>the latest reflog entry, or null if no log</returns>
 
136
                /// <exception cref="System.IO.IOException">System.IO.IOException</exception>
 
137
                public virtual ReflogReader.Entry GetLastEntry()
 
138
                {
 
139
                        IList<ReflogReader.Entry> entries = GetReverseEntries(1);
 
140
                        return entries.Count > 0 ? entries[0] : null;
 
141
                }
 
142
 
 
143
                /// <returns>all reflog entries in reverse order</returns>
 
144
                /// <exception cref="System.IO.IOException">System.IO.IOException</exception>
 
145
                public virtual IList<ReflogReader.Entry> GetReverseEntries()
 
146
                {
 
147
                        return GetReverseEntries(int.MaxValue);
 
148
                }
 
149
 
 
150
                /// <param name="max">max numer of entries to read</param>
 
151
                /// <returns>all reflog entries in reverse order</returns>
 
152
                /// <exception cref="System.IO.IOException">System.IO.IOException</exception>
 
153
                public virtual IList<ReflogReader.Entry> GetReverseEntries(int max)
 
154
                {
 
155
                        byte[] log;
 
156
                        try
 
157
                        {
 
158
                                log = IOUtil.ReadFully(logName);
 
159
                        }
 
160
                        catch (FileNotFoundException)
 
161
                        {
 
162
                                return Sharpen.Collections.EmptyList<ReflogReader.Entry>();
 
163
                        }
 
164
                        int rs = RawParseUtils.PrevLF(log, log.Length);
 
165
                        IList<ReflogReader.Entry> ret = new AList<ReflogReader.Entry>();
 
166
                        while (rs >= 0 && max-- > 0)
 
167
                        {
 
168
                                rs = RawParseUtils.PrevLF(log, rs);
 
169
                                ReflogReader.Entry entry = new ReflogReader.Entry(log, rs < 0 ? 0 : rs + 2);
 
170
                                ret.AddItem(entry);
 
171
                        }
 
172
                        return ret;
 
173
                }
 
174
        }
 
175
}