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

« back to all changes in this revision

Viewing changes to contrib/NGit/NGit.Revwalk/RevObjectList.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 NGit;
 
46
using NGit.Revwalk;
 
47
using Sharpen;
 
48
 
 
49
namespace NGit.Revwalk
 
50
{
 
51
        /// <summary>
 
52
        /// An ordered list of
 
53
        /// <see cref="RevObject">RevObject</see>
 
54
        /// subclasses.
 
55
        /// </summary>
 
56
        /// <?></?>
 
57
        public class RevObjectList<E> : AbstractList<E> where E:RevObject
 
58
        {
 
59
                internal const int BLOCK_SHIFT = 8;
 
60
 
 
61
                internal const int BLOCK_SIZE = 1 << BLOCK_SHIFT;
 
62
 
 
63
                /// <summary>Items stored in this list.</summary>
 
64
                /// <remarks>
 
65
                /// Items stored in this list.
 
66
                /// <p>
 
67
                /// If
 
68
                /// <see cref="RevObjectListBlock.shift">RevObjectListBlock.shift</see>
 
69
                /// = 0 this block holds the list elements; otherwise
 
70
                /// it holds pointers to other
 
71
                /// <see cref="RevObjectListBlock">RevObjectListBlock</see>
 
72
                /// instances which use a shift that
 
73
                /// is
 
74
                /// <see cref="RevObjectList{E}.BLOCK_SHIFT">RevObjectList&lt;E&gt;.BLOCK_SHIFT</see>
 
75
                /// smaller.
 
76
                /// </remarks>
 
77
                internal RevObjectListBlock contents = new RevObjectListBlock(0);
 
78
 
 
79
                /// <summary>Current number of elements in the list.</summary>
 
80
                /// <remarks>Current number of elements in the list.</remarks>
 
81
                protected internal int size = 0;
 
82
 
 
83
                /// <summary>Create an empty object list.</summary>
 
84
                /// <remarks>Create an empty object list.</remarks>
 
85
                public RevObjectList()
 
86
                {
 
87
                }
 
88
 
 
89
                // Initialized above.
 
90
                public override void Add(int index, E element)
 
91
                {
 
92
                        if (index != size)
 
93
                        {
 
94
                                throw new NotSupportedException(MessageFormat.Format(JGitText.Get().unsupportedOperationNotAddAtEnd
 
95
                                        , index));
 
96
                        }
 
97
                        Set(index, element);
 
98
                        size++;
 
99
                }
 
100
 
 
101
                public override E Set(int index, E element)
 
102
                {
 
103
                        RevObjectListBlock s = contents;
 
104
                        while (index >> s.shift >= BLOCK_SIZE)
 
105
                        {
 
106
                                s = new RevObjectListBlock(s.shift + BLOCK_SHIFT);
 
107
                                s.contents[0] = contents;
 
108
                                contents = s;
 
109
                        }
 
110
                        while (s.shift > 0)
 
111
                        {
 
112
                                int i = index >> s.shift;
 
113
                                index -= i << s.shift;
 
114
                                if (s.contents[i] == null)
 
115
                                {
 
116
                                        s.contents[i] = new RevObjectListBlock(s.shift - BLOCK_SHIFT);
 
117
                                }
 
118
                                s = (RevObjectListBlock)s.contents[i];
 
119
                        }
 
120
                        object old = s.contents[index];
 
121
                        s.contents[index] = element;
 
122
                        return (E)old;
 
123
                }
 
124
 
 
125
                public override E Get(int index)
 
126
                {
 
127
                        RevObjectListBlock s = contents;
 
128
                        if (index >> s.shift >= 1024)
 
129
                        {
 
130
                                return null;
 
131
                        }
 
132
                        while (s != null && s.shift > 0)
 
133
                        {
 
134
                                int i = index >> s.shift;
 
135
                                index -= i << s.shift;
 
136
                                s = (RevObjectListBlock)s.contents[i];
 
137
                        }
 
138
                        return s != null ? (E)s.contents[index] : null;
 
139
                }
 
140
 
 
141
                public override int Count
 
142
                {
 
143
                        get
 
144
                        {
 
145
                                return size;
 
146
                        }
 
147
                }
 
148
 
 
149
                public override void Clear()
 
150
                {
 
151
                        contents = new RevObjectListBlock(0);
 
152
                        size = 0;
 
153
                }
 
154
        }
 
155
 
 
156
        /// <summary>One level of contents, either an intermediate level or a leaf level.</summary>
 
157
        /// <remarks>One level of contents, either an intermediate level or a leaf level.</remarks>
 
158
        internal class RevObjectListBlock
 
159
        {
 
160
                internal readonly object[] contents = new object[RevObjectList<RevObject>.BLOCK_SIZE];
 
161
 
 
162
                internal readonly int shift;
 
163
 
 
164
                internal RevObjectListBlock(int s)
 
165
                {
 
166
                        shift = s;
 
167
                }
 
168
        }
 
169
}