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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
|
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
//using Windows.Networking;
//using Windows.Networking.Sockets;
namespace SharpCifs.Util.Sharpen
{
public static class Extensions
{
private static readonly long EpochTicks;
static Extensions()
{
DateTime time = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
EpochTicks = time.Ticks;
}
public static void Add<T>(this IList<T> list, int index, T item)
{
list.Insert(index, item);
}
public static void AddFirst<T>(this IList<T> list, T item)
{
list.Insert(0, item);
}
public static void AddLast<T>(this IList<T> list, T item)
{
list.Add(item);
}
public static void RemoveLast<T>(this IList<T> list)
{
if (list.Count > 0)
list.Remove(list.Count - 1);
}
public static StringBuilder AppendRange(this StringBuilder sb, string str, int start, int end)
{
return sb.Append(str, start, end - start);
}
public static StringBuilder Delete(this StringBuilder sb, int start, int end)
{
return sb.Remove(start, end - start);
}
public static void SetCharAt(this StringBuilder sb, int index, char c)
{
sb[index] = c;
}
public static int IndexOf(this StringBuilder sb, string str)
{
return sb.ToString().IndexOf(str);
}
public static int BitCount(int val)
{
uint num = (uint)val;
int count = 0;
for (int i = 0; i < 32; i++)
{
if ((num & 1) != 0)
{
count++;
}
num >>= 1;
}
return count;
}
public static IndexOutOfRangeException CreateIndexOutOfRangeException(int index)
{
return new IndexOutOfRangeException("Index: " + index);
}
public static string Decode(this Encoding e, byte[] chars, int start, int len)
{
try
{
byte[] bom = e.GetPreamble();
if (bom != null && bom.Length > 0)
{
if (len >= bom.Length)
{
int pos = start;
bool hasBom = true;
for (int n = 0; n < bom.Length && hasBom; n++)
{
if (bom[n] != chars[pos++])
hasBom = false;
}
if (hasBom)
{
len -= pos - start;
start = pos;
}
}
}
return e.GetString(chars, start, len);
}
catch (DecoderFallbackException)
{
throw new CharacterCodingException();
}
}
public static Encoding GetEncoding(string name)
{
// Encoding e = Encoding.GetEncoding (name, EncoderFallback.ExceptionFallback, DecoderFallback.ExceptionFallback);
try
{
Encoding e = Encoding.GetEncoding(name.Replace('_', '-'));
if (e is UTF8Encoding)
return new UTF8Encoding(false, true);
return e;
}
catch (ArgumentException)
{
throw new UnsupportedCharsetException(name);
}
}
public static ICollection<KeyValuePair<T, TU>> EntrySet<T, TU>(this IDictionary<T, TU> s)
{
return s;
}
public static bool AddItem<T>(this IList<T> list, T item)
{
list.Add(item);
return true;
}
public static bool AddItem<T>(this ICollection<T> list, T item)
{
list.Add(item);
return true;
}
public static TU Get<T, TU>(this IDictionary<T, TU> d, T key)
{
TU val;
d.TryGetValue(key, out val);
return val;
}
public static TU Put<T, TU>(this IDictionary<T, TU> d, T key, TU value)
{
TU old;
d.TryGetValue(key, out old);
d[key] = value;
return old;
}
public static void PutAll<T, TU>(this IDictionary<T, TU> d, IDictionary<T, TU> values)
{
foreach (KeyValuePair<T, TU> val in values)
d[val.Key] = val.Value;
}
public static CultureInfo GetEnglishCulture()
{
return new CultureInfo("en-US");
}
public static T GetFirst<T>(this IList<T> list)
{
return ((list.Count == 0) ? default(T) : list[0]);
}
public static CultureInfo GetGermanCulture()
{
CultureInfo r = new CultureInfo("de-DE");
return r;
}
public static T GetLast<T>(this IList<T> list)
{
return ((list.Count == 0) ? default(T) : list[list.Count - 1]);
}
public static int GetOffset(this TimeZoneInfo tzone, long date)
{
return (int)tzone.GetUtcOffset(MillisToDateTimeOffset(date, 0).DateTime).TotalMilliseconds;
}
public static long GetTime(this DateTime dateTime)
{
return new DateTimeOffset(DateTime.SpecifyKind(dateTime, DateTimeKind.Utc), TimeSpan.Zero).ToMillisecondsSinceEpoch();
}
public static void InitCause(this Exception ex, Exception cause)
{
Console.WriteLine(cause);
}
public static bool IsEmpty<T>(this ICollection<T> col)
{
return (col.Count == 0);
}
public static bool IsEmpty<T>(this Stack<T> col)
{
return (col.Count == 0);
}
public static bool IsLower(this char c)
{
return char.IsLower(c);
}
public static bool IsUpper(this char c)
{
return char.IsUpper(c);
}
public static Iterator<T> Iterator<T>(this ICollection<T> col)
{
return new EnumeratorWrapper<T>(col, col.GetEnumerator());
}
public static Iterator<T> Iterator<T>(this IEnumerable<T> col)
{
return new EnumeratorWrapper<T>(col, col.GetEnumerator());
}
public static T Last<T>(this ICollection<T> col)
{
IList<T> list = col as IList<T>;
if (list != null)
{
return list[list.Count - 1];
}
return col.Last();
}
public static int LowestOneBit(int val)
{
return (1 << NumberOfTrailingZeros(val));
}
public static bool Matches(this string str, string regex)
{
Regex regex2 = new Regex(regex);
return regex2.IsMatch(str);
}
public static DateTime CreateDate(long milliSecondsSinceEpoch)
{
long num = EpochTicks + (milliSecondsSinceEpoch * 10000);
return new DateTime(num);
}
public static DateTime CreateDateFromUTC(long milliSecondsSinceEpoch)
{
long num = EpochTicks + (milliSecondsSinceEpoch * 10000);
return new DateTime(num, DateTimeKind.Utc);
}
public static DateTimeOffset MillisToDateTimeOffset(long milliSecondsSinceEpoch, long offsetMinutes)
{
TimeSpan offset = TimeSpan.FromMinutes(offsetMinutes);
long num = EpochTicks + (milliSecondsSinceEpoch * 10000);
return new DateTimeOffset(num + offset.Ticks, offset);
}
public static int NumberOfLeadingZeros(int val)
{
uint num = (uint)val;
int count = 0;
while ((num & 0x80000000) == 0)
{
num = num << 1;
count++;
}
return count;
}
public static int NumberOfTrailingZeros(int val)
{
uint num = (uint)val;
int count = 0;
while ((num & 1) == 0)
{
num = num >> 1;
count++;
}
return count;
}
public static int Read(this StreamReader reader, char[] data)
{
return reader.Read(data, 0, data.Length);
}
public static T Remove<T>(this IList<T> list, T item)
{
int index = list.IndexOf(item);
if (index == -1)
{
return default(T);
}
T local = list[index];
list.RemoveAt(index);
return local;
}
public static T Remove<T>(this IList<T> list, int i)
{
T old;
try
{
old = list[i];
list.RemoveAt(i);
}
catch (IndexOutOfRangeException)
{
throw new NoSuchElementException();
}
return old;
}
public static T RemoveFirst<T>(this IList<T> list)
{
return list.Remove(0);
}
public static string ReplaceAll(this string str, string regex, string replacement)
{
Regex rgx = new Regex(regex);
if (replacement.IndexOfAny(new[] { '\\', '$' }) != -1)
{
// Back references not yet supported
StringBuilder sb = new StringBuilder();
for (int n = 0; n < replacement.Length; n++)
{
char c = replacement[n];
if (c == '$')
throw new NotSupportedException("Back references not supported");
if (c == '\\')
c = replacement[++n];
sb.Append(c);
}
replacement = sb.ToString();
}
return rgx.Replace(str, replacement);
}
public static bool RegionMatches(this string str, bool ignoreCase, int toOffset, string other, int ooffset, int len)
{
if (toOffset < 0 || ooffset < 0 || toOffset + len > str.Length || ooffset + len > other.Length)
return false;
return string.Compare(str, toOffset, other, ooffset, len) == 0;
}
public static T Set<T>(this IList<T> list, int index, T item)
{
T old = list[index];
list[index] = item;
return old;
}
public static int Signum(long val)
{
if (val < 0)
{
return -1;
}
if (val > 0)
{
return 1;
}
return 0;
}
public static void RemoveAll<T, TU>(this ICollection<T> col, ICollection<TU> items) where TU : T
{
foreach (var u in items)
col.Remove(u);
}
public static bool ContainsAll<T, TU>(this ICollection<T> col, ICollection<TU> items) where TU : T
{
foreach (var u in items)
if (!col.Any(n => (ReferenceEquals(n, u)) || n.Equals(u)))
return false;
return true;
}
public static bool Contains<T>(this ICollection<T> col, object item)
{
if (!(item is T))
return false;
return col.Any(n => (ReferenceEquals(n, item)) || n.Equals(item));
}
public static void Sort<T>(this IList<T> list)
{
List<T> sorted = new List<T>(list);
sorted.Sort();
for (int i = 0; i < list.Count; i++)
{
list[i] = sorted[i];
}
}
public static void Sort<T>(this IList<T> list, IComparer<T> comparer)
{
List<T> sorted = new List<T>(list);
sorted.Sort(comparer);
for (int i = 0; i < list.Count; i++)
{
list[i] = sorted[i];
}
}
public static string[] Split(this string str, string regex)
{
return str.Split(regex, 0);
}
public static string[] Split(this string str, string regex, int limit)
{
Regex rgx = new Regex(regex);
List<string> list = new List<string>();
int startIndex = 0;
if (limit != 1)
{
int nm = 1;
foreach (Match match in rgx.Matches(str))
{
list.Add(str.Substring(startIndex, match.Index - startIndex));
startIndex = match.Index + match.Length;
if (limit > 0 && ++nm == limit)
break;
}
}
if (startIndex < str.Length)
{
list.Add(str.Substring(startIndex));
}
if (limit >= 0)
{
int count = list.Count - 1;
while ((count >= 0) && (list[count].Length == 0))
{
count--;
}
list.RemoveRange(count + 1, (list.Count - count) - 1);
}
return list.ToArray();
}
public static IList<T> SubList<T>(this IList<T> list, int start, int len)
{
List<T> sublist = new List<T>(len);
for (int i = start; i < (start + len); i++)
{
sublist.Add(list[i]);
}
return sublist;
}
public static char[] ToCharArray(this string str)
{
char[] destination = new char[str.Length];
str.CopyTo(0, destination, 0, str.Length);
return destination;
}
public static long ToMillisecondsSinceEpoch(this DateTime dateTime)
{
if (dateTime.Kind != DateTimeKind.Utc)
{
throw new ArgumentException("dateTime is expected to be expressed as a UTC DateTime", "dateTime");
}
return new DateTimeOffset(DateTime.SpecifyKind(dateTime, DateTimeKind.Utc), TimeSpan.Zero).ToMillisecondsSinceEpoch();
}
public static long ToMillisecondsSinceEpoch(this DateTimeOffset dateTimeOffset)
{
return (((dateTimeOffset.Ticks - dateTimeOffset.Offset.Ticks) - EpochTicks) / TimeSpan.TicksPerMillisecond);
}
public static string ToOctalString(int val)
{
return Convert.ToString(val, 8);
}
public static string ToHexString(int val)
{
return Convert.ToString(val, 16);
}
public static string ToString(object val)
{
return val.ToString();
}
public static string ToString(int val, int bas)
{
return Convert.ToString(val, bas);
}
public static IList<TU> UpcastTo<T, TU>(this IList<T> s) where T : TU
{
List<TU> list = new List<TU>(s.Count);
for (int i = 0; i < s.Count; i++)
{
list.Add(s[i]);
}
return list;
}
public static ICollection<TU> UpcastTo<T, TU>(this ICollection<T> s) where T : TU
{
List<TU> list = new List<TU>(s.Count);
foreach (var v in s)
{
list.Add(v);
}
return list;
}
public static T ValueOf<T>(T val)
{
return val;
}
//use? for NUnit-testing?
//public static string GetTestName(object obj)
//{
// return GetTestName();
//}
//public static string GetTestName()
//{
// MethodBase met;
// int n = 0;
// do
// {
// met = new StackFrame(n).GetMethod();
// if (met != null)
// {
// foreach (Attribute at in met.GetCustomAttributes(true))
// {
// if (at.GetType().FullName == "NUnit.Framework.TestAttribute")
// {
// // Convert back to camel case
// string name = met.Name;
// if (char.IsUpper(name[0]))
// name = char.ToLower(name[0]) + name.Substring(1);
// return name;
// }
// }
// }
// n++;
// } while (met != null);
// return "";
//}
public static string GetHostAddress(this IPAddress addr)
{
return addr.ToString();
}
public static IPAddress GetAddressByName(string host)
{
if (host == "0.0.0.0")
{
return IPAddress.Any;
}
try
{
return IPAddress.Parse(host);
}
catch (Exception ex)
{
return null;
}
}
public static IPAddress[] GetAddressesByName(string host)
{
//IReadOnlyList<EndpointPair> data = null;
//try
//{
// Task.Run(async () =>
// {
// data = await DatagramSocket.GetEndpointPairsAsync(new HostName(host), "0");
// }).Wait();
//}
//catch (Exception ex)
//{
// return null;
//}
//return data != null
// ? data.Where(i => i.RemoteHostName.Type == HostNameType.Ipv4)
// .GroupBy(i => i.RemoteHostName.DisplayName)
// .Select(i => IPAddress.Parse(i.First().RemoteHostName.DisplayName))
// .ToArray()
// : null;
//get v4-address only
var entry = Task.Run(() => System.Net.Dns.GetHostEntryAsync(host))
.GetAwaiter()
.GetResult();
return entry.AddressList
.Where(addr => addr.AddressFamily == AddressFamily.InterNetwork)
.ToArray();
}
public static string GetImplementationVersion(this Assembly asm)
{
return asm.GetName().Version.ToString();
}
public static string GetHost(this Uri uri)
{
return string.IsNullOrEmpty(uri.Host) ? "" : uri.Host;
}
public static string GetUserInfo(this Uri uri)
{
return string.IsNullOrEmpty(uri.UserInfo) ? null : uri.UserInfo;
}
public static string GetQuery(this Uri uri)
{
return string.IsNullOrEmpty(uri.Query) ? null : uri.Query;
}
public static int GetLocalPort(this Socket socket)
{
return ((IPEndPoint)socket.LocalEndPoint).Port;
}
public static int GetPort(this Socket socket)
{
return ((IPEndPoint)socket.RemoteEndPoint).Port;
}
public static IPAddress GetInetAddress(this Socket socket)
{
return ((IPEndPoint)socket.RemoteEndPoint).Address;
}
/*public static bool RemoveElement(this ArrayList list, object elem)
{
int i = list.IndexOf(elem);
if (i == -1)
return false;
list.RemoveAt(i);
return true;
}*/
public static Semaphore CreateSemaphore(int count)
{
return new Semaphore(count, int.MaxValue);
}
}
}
|