File: PwObjectList.cs

package info (click to toggle)
keepass2 2.57%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 14,520 kB
  • sloc: cs: 120,930; xml: 6,271; cpp: 322; sh: 53; makefile: 42
file content (298 lines) | stat: -rw-r--r-- 7,381 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
  KeePass Password Safe - The Open-Source Password Manager
  Copyright (C) 2003-2024 Dominik Reichl <dominik.reichl@t-online.de>

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;

using KeePassLib.Interfaces;

namespace KeePassLib.Collections
{
	/// <summary>
	/// List of objects that implement <c>IDeepCloneable</c>
	/// and cannot be <c>null</c>.
	/// </summary>
	/// <typeparam name="T">Object type.</typeparam>
	public sealed class PwObjectList<T> : IEnumerable<T>
		where T : class, IDeepCloneable<T>
	{
		private List<T> m_l = new List<T>();

		public uint UCount
		{
			get { return (uint)m_l.Count; }
		}

		public PwObjectList()
		{
		}

		IEnumerator IEnumerable.GetEnumerator()
		{
			return m_l.GetEnumerator();
		}

		public IEnumerator<T> GetEnumerator()
		{
			return m_l.GetEnumerator();
		}

		public void Clear()
		{
			m_l.Clear();
		}

		public PwObjectList<T> CloneDeep()
		{
			PwObjectList<T> l = new PwObjectList<T>();
			foreach(T o in m_l) l.Add(o.CloneDeep());
			return l;
		}

		public PwObjectList<T> CloneShallow()
		{
			PwObjectList<T> l = new PwObjectList<T>();
			l.Add(this);
			return l;
		}

		public List<T> CloneShallowToList()
		{
			return new List<T>(m_l);
		}

		public void Add(T o)
		{
			if(o == null) { Debug.Assert(false); throw new ArgumentNullException("o"); }

			m_l.Add(o);
		}

		public void Add(PwObjectList<T> l)
		{
			if(l == null) { Debug.Assert(false); throw new ArgumentNullException("l"); }

			m_l.AddRange(l.m_l);
		}

		public void Add(List<T> l)
		{
			if(l == null) { Debug.Assert(false); throw new ArgumentNullException("l"); }

			foreach(T o in l)
			{
				if(o == null) { Debug.Assert(false); throw new ArgumentOutOfRangeException("l"); }
			}

			m_l.AddRange(l);
		}

		public void Insert(uint uIndex, T o)
		{
			if(o == null) { Debug.Assert(false); throw new ArgumentNullException("o"); }

			m_l.Insert((int)uIndex, o);
		}

		public T GetAt(uint uIndex)
		{
			if(uIndex >= m_l.Count) { Debug.Assert(false); throw new ArgumentOutOfRangeException("uIndex"); }

			return m_l[(int)uIndex];
		}

		public void SetAt(uint uIndex, T o)
		{
			if(uIndex >= m_l.Count) { Debug.Assert(false); throw new ArgumentOutOfRangeException("uIndex"); }
			if(o == null) { Debug.Assert(false); throw new ArgumentNullException("o"); }

			m_l[(int)uIndex] = o;
		}

		public List<T> GetRange(uint uStartIndexIncl, uint uEndIndexIncl)
		{
			if(uStartIndexIncl >= (uint)m_l.Count)
				throw new ArgumentOutOfRangeException("uStartIndexIncl");
			if(uEndIndexIncl >= (uint)m_l.Count)
				throw new ArgumentOutOfRangeException("uEndIndexIncl");
			if(uStartIndexIncl > uEndIndexIncl)
				throw new ArgumentException();

			List<T> l = new List<T>((int)(uEndIndexIncl - uStartIndexIncl) + 1);
			for(uint u = uStartIndexIncl; u <= uEndIndexIncl; ++u)
				l.Add(m_l[(int)u]);

			return l;
		}

		public int IndexOf(T o)
		{
			if(o == null) { Debug.Assert(false); throw new ArgumentNullException("o"); }

			return m_l.IndexOf(o);
		}

		public bool Remove(T o)
		{
			if(o == null) { Debug.Assert(false); throw new ArgumentNullException("o"); }

			return m_l.Remove(o);
		}

		public void RemoveAt(uint uIndex)
		{
			m_l.RemoveAt((int)uIndex);
		}

		public void MoveOne(T o, bool bUp)
		{
			if(o == null) { Debug.Assert(false); throw new ArgumentNullException("o"); }

			int c = m_l.Count;
			if(c <= 1) return;

			int i = m_l.IndexOf(o);
			if(i < 0) { Debug.Assert(false); return; }

			if(bUp && (i != 0)) // No assert for top item
			{
				T oTemp = m_l[i - 1];
				m_l[i - 1] = m_l[i];
				m_l[i] = oTemp;
			}
			else if(!bUp && (i != (c - 1))) // No assert for bottom item
			{
				T oTemp = m_l[i + 1];
				m_l[i + 1] = m_l[i];
				m_l[i] = oTemp;
			}
		}

		public void MoveOne(T[] v, bool bUp)
		{
			if(v == null) { Debug.Assert(false); throw new ArgumentNullException("v"); }

			List<int> lIndices = new List<int>();
			foreach(T o in v)
			{
				if(o == null) { Debug.Assert(false); continue; }

				int p = m_l.IndexOf(o);
				if(p >= 0) lIndices.Add(p);
				else { Debug.Assert(false); }
			}

			MoveOne(lIndices.ToArray(), bUp);
		}

		public void MoveOne(int[] vIndices, bool bUp)
		{
			if(vIndices == null) { Debug.Assert(false); throw new ArgumentNullException("vIndices"); }

			int n = m_l.Count;
			if(n <= 1) return; // No moving possible

			int m = vIndices.Length;
			if(m == 0) return; // Nothing to move

			int[] v = new int[m];
			Array.Copy(vIndices, v, m);
			Array.Sort<int>(v);

			if((v[0] < 0) || (v[m - 1] >= n)) { Debug.Assert(false); return; }
			if((bUp && (v[0] == 0)) || (!bUp && (v[m - 1] == (n - 1))))
				return; // Moving as a block is not possible

			int iStart = (bUp ? 0 : (m - 1));
			int iExcl = (bUp ? m : -1);
			int iStep = (bUp ? 1 : -1);

			for(int i = iStart; i != iExcl; i += iStep)
			{
				int p = v[i];
				T o = m_l[p];

				if(bUp)
				{
					m_l[p] = m_l[p - 1];
					m_l[p - 1] = o;
				}
				else
				{
					m_l[p] = m_l[p + 1];
					m_l[p + 1] = o;
				}
			}
		}

		public void MoveTopBottom(T[] v, bool bTop)
		{
			if(v == null) { Debug.Assert(false); throw new ArgumentNullException("v"); }
			if(v.Length == 0) return;
			if(v.Length > m_l.Count) { Debug.Assert(false); return; }

			List<T> lMoved = new List<T>(v.Length);
			List<T> lOthers = new List<T>(m_l.Count - v.Length);
			foreach(T o in m_l)
			{
				if(Array.IndexOf(v, o) >= 0) lMoved.Add(o);
				else lOthers.Add(o);
			}
			if(lMoved.Count != v.Length) { Debug.Assert(false); return; }

			m_l = new List<T>(m_l.Count);
			m_l.AddRange(bTop ? lMoved : lOthers);
			m_l.AddRange(bTop ? lOthers : lMoved);
		}

		public void Sort(IComparer<T> tComparer)
		{
			if(tComparer == null) throw new ArgumentNullException("tComparer");

			m_l.Sort(tComparer);
		}

		public void Sort(Comparison<T> tComparison)
		{
			if(tComparison == null) throw new ArgumentNullException("tComparison");

			m_l.Sort(tComparison);
		}

		public static PwObjectList<T> FromArray(T[] v)
		{
			if(v == null) throw new ArgumentNullException("v");

			PwObjectList<T> l = new PwObjectList<T>();
			foreach(T o in v) l.Add(o);
			return l;
		}

		public static PwObjectList<T> FromList(List<T> l)
		{
			if(l == null) throw new ArgumentNullException("l");

			PwObjectList<T> lNew = new PwObjectList<T>();
			lNew.Add(l);
			return lNew;
		}
	}
}