forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathByteArray.cs
More file actions
1586 lines (1285 loc) · 52.7 KB
/
ByteArray.cs
File metadata and controls
1586 lines (1285 loc) · 52.7 KB
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
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
#nullable enable
using System;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Text;
using Microsoft.Scripting.Runtime;
using Microsoft.Scripting.Utils;
using IronPython.Runtime.Exceptions;
using IronPython.Runtime.Operations;
using IronPython.Runtime.Types;
namespace IronPython.Runtime {
/// <summary>
/// bytearray(string, encoding[, errors]) -> bytearray
/// bytearray(iterable) -> bytearray
///
/// Construct a mutable bytearray object from:
/// - an iterable yielding values in range(256), including:
/// + a list of integer values
/// + a bytes, bytearray, buffer, or array object
/// - a text string encoded using the specified encoding
///
/// bytearray([int]) -> bytearray
///
/// Construct a zero-initialized bytearray of the specified length.
/// (default=0)
/// </summary>
[PythonType("bytearray")]
public class ByteArray : IList<byte>, IReadOnlyList<byte>, ICodeFormattable, IBufferProtocol {
// _bytes is readonly to ensure proper size locking during buffer exports
private readonly ArrayData<byte> _bytes;
public ByteArray() {
_bytes = new ArrayData<byte>(0);
}
private ByteArray(ArrayData<byte> bytes) {
_bytes = bytes;
}
private ByteArray(ReadOnlySpan<byte> bytes) {
_bytes = new ArrayData<byte>(bytes);
}
internal ByteArray(IEnumerable<byte> bytes) {
_bytes = new ArrayData<byte>(bytes);
}
public void __init__() {
lock (this) {
_bytes.Clear();
}
}
public void __init__(int source) {
lock (this) {
if (source < 0) throw PythonOps.ValueError("negative count");
_bytes.Clear();
if (source > 0) {
_bytes.Add(0);
_bytes.InPlaceMultiply(source);
}
}
}
public void __init__([NotNone] IBufferProtocol source) {
if (Converter.TryConvertToIndex(source, out int size, throwNonInt: false)) {
__init__(size);
} else {
lock (this) {
_bytes.Clear();
using IPythonBuffer buffer = source.GetBuffer(BufferFlags.FullRO);
_bytes.AddRange(buffer);
}
}
}
public void __init__(CodeContext context, object? source) {
if (Converter.TryConvertToIndex(source, out int size, throwNonInt: false)) {
__init__(size);
} else if (source is IEnumerable<byte> en) {
lock (this) {
_bytes.Clear();
_bytes.AddRange(en);
}
} else {
lock (this) {
_bytes.Clear();
}
IEnumerator ie = PythonOps.GetEnumerator(context, source);
while (ie.MoveNext()) {
Add(ByteOps.GetByte(ie.Current));
}
}
}
public void __init__([NotNone] string @string) {
throw PythonOps.TypeError("string argument without an encoding");
}
public void __init__(CodeContext context, [NotNone] string source, [NotNone] string encoding, [NotNone] string errors = "strict") {
lock (this) {
_bytes.Clear();
_bytes.AddRange(StringOps.encode(context, source, encoding, errors));
}
}
[PythonHidden]
internal ArrayData<byte> UnsafeByteList {
get => _bytes;
}
#region Public Mutable Sequence API
public void append(int item) {
lock (this) {
_bytes.Add(item.ToByteChecked());
}
}
public void append(object? item) {
lock (this) {
_bytes.Add(ByteOps.GetByte(item));
}
}
public void extend([NotNone] IEnumerable<byte> seq) {
using (new OrderedLocker(this, seq)) {
// use the original count for if we're extending this w/ this
_bytes.AddRange(seq);
}
}
public void extend(CodeContext context, object? seq) {
// We don't make use of the length hint when extending the byte array.
// However, in order to match CPython behavior with invalid length hints we
// we need to go through the motions and get the length hint and attempt
// to convert it to an int.
extend(ByteOps.GetBytes(seq, useHint: true, context));
}
public void insert(int index, int value) {
lock (this) {
if (index >= Count) {
append(value);
return;
}
index = PythonOps.FixSliceIndex(index, Count);
_bytes.Insert(index, value.ToByteChecked());
}
}
public void insert(int index, object? value) {
insert(index, Converter.ConvertToIndex(value));
}
public int pop() {
lock (this) {
if (Count == 0) {
throw PythonOps.IndexError("pop off of empty bytearray");
}
int res = _bytes[_bytes.Count - 1];
_bytes.RemoveAt(_bytes.Count - 1);
return res;
}
}
public int pop(int index) {
lock (this) {
if (Count == 0) {
throw PythonOps.IndexError("pop off of empty bytearray");
}
index = PythonOps.FixIndex(index, Count);
int ret = _bytes[index];
_bytes.RemoveAt(index);
return ret;
}
}
private void RemoveByte(byte value) {
var idx = _bytes.IndexOfByte(value, 0, _bytes.Count);
if (idx == -1)
throw PythonOps.ValueError("value not found in bytearray");
_bytes.RemoveAt(idx);
}
public void remove(int value) {
lock (this) {
RemoveByte(value.ToByteChecked());
}
}
public void remove(object? value) {
lock (this) {
RemoveByte(ByteOps.GetByte(value));
}
}
public void reverse() {
lock (this) {
_bytes.Reverse();
}
}
[SpecialName]
public ByteArray InPlaceAdd([NotNone] ByteArray other) {
using (new OrderedLocker(this, other)) {
_bytes.AddRange(other._bytes);
return this;
}
}
[SpecialName]
public ByteArray InPlaceAdd([NotNone] IBufferProtocol other) {
lock (this) {
using var buf = other.GetBufferNoThrow();
if (buf is null) throw TypeErrorForConcat(this, other);
_bytes.AddRange(buf);
return this;
}
}
[SpecialName]
public ByteArray InPlaceMultiply(int len) {
lock (this) {
_bytes.InPlaceMultiply(len);
return this;
}
}
#endregion
#region Public Python API surface
public ByteArray capitalize() {
lock (this) {
return new ByteArray(_bytes.Capitalize());
}
}
public ByteArray center(int width) => center(width, (byte)' ');
public ByteArray center(int width, [BytesLike, NotNone] IList<byte> fillchar)
=> center(width, fillchar.ToByte("center", 2));
private ByteArray center(int width, byte fillchar) {
lock (this) {
var res = _bytes.TryCenter(width, fillchar);
return res == null ? CopyThis() : new ByteArray(res);
}
}
public void clear() => Clear();
public ByteArray copy() => CopyThis();
public int count([BytesLike, NotNone] IList<byte> sub) {
lock (this) {
return _bytes.CountOf(sub, 0, _bytes.Count);
}
}
public int count([BytesLike, NotNone] IList<byte> sub, int start) {
lock (this) {
return _bytes.CountOf(sub, start, _bytes.Count);
}
}
public int count([BytesLike, NotNone] IList<byte> sub, int start, int end) {
lock (this) {
return _bytes.CountOf(sub, start, end);
}
}
public int count([BytesLike, NotNone] IList<byte> sub, object? start)
=> count(sub, start, null);
public int count([BytesLike, NotNone] IList<byte> sub, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return _bytes.CountOf(sub, istart, iend);
}
}
public int count(BigInteger @byte)
=> count(Bytes.FromByte(@byte.ToByteChecked()));
public int count(BigInteger @byte, int start)
=> count(Bytes.FromByte(@byte.ToByteChecked()), start);
public int count(BigInteger @byte, int start, int end)
=> count(Bytes.FromByte(@byte.ToByteChecked()), start, end);
public int count(BigInteger @byte, object? start)
=> count(Bytes.FromByte(@byte.ToByteChecked()), start);
public int count(BigInteger @byte, object? start, object? end)
=> count(Bytes.FromByte(@byte.ToByteChecked()), start, end);
public string decode(CodeContext context, [NotNone] string encoding = "utf-8", [NotNone] string errors = "strict") {
lock (this) {
using var mv = new MemoryView(this, readOnly: true);
return StringOps.RawDecode(context, mv, encoding, errors);
}
}
public string decode(CodeContext context, [NotNone] Encoding encoding, [NotNone] string errors = "strict") {
lock (this) {
using var bufer = ((IBufferProtocol)this).GetBuffer();
return StringOps.DoDecode(context, bufer, errors, StringOps.GetEncodingName(encoding, normalize: false), encoding);
}
}
public bool endswith([BytesLike, NotNone] IList<byte> suffix) {
lock (this) {
return _bytes.EndsWith(suffix);
}
}
public bool endswith([BytesLike, NotNone] IList<byte> suffix, int start) {
lock (this) {
return _bytes.EndsWith(suffix, start, _bytes.Count);
}
}
public bool endswith([BytesLike, NotNone] IList<byte> suffix, int start, int end) {
lock (this) {
return _bytes.EndsWith(suffix, start, end);
}
}
public bool endswith([BytesLike, NotNone] IList<byte> suffix, object? start) {
return endswith(suffix, start, null);
}
public bool endswith([BytesLike, NotNone] IList<byte> suffix, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return _bytes.EndsWith(suffix, istart, iend);
}
}
public bool endswith([NotNone] PythonTuple suffix) {
lock (this) {
return _bytes.EndsWith(suffix);
}
}
public bool endswith([NotNone] PythonTuple suffix, int start) {
lock (this) {
return _bytes.EndsWith(suffix, start, _bytes.Count);
}
}
public bool endswith([NotNone] PythonTuple suffix, int start, int end) {
lock (this) {
return _bytes.EndsWith(suffix, start, end);
}
}
public bool endswith([NotNone] PythonTuple suffix, object? start) {
return endswith(suffix, start, null);
}
public bool endswith([NotNone] PythonTuple suffix, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return _bytes.EndsWith(suffix, istart, iend);
}
}
[Documentation("\n" + // hidden overload
"Return True if self ends with the specified suffix, False otherwise.\n" +
"With optional start, test self beginning at that position.\n" +
"With optional end, stop comparing self at that position.\n" +
"suffix can also be a tuple of bytes-like objects to try.")]
public bool endswith(object? suffix, object? start = null, object? end = null) {
if (suffix is IList<byte> blist) return endswith(blist, start, end);
if (suffix is PythonTuple tuple) return endswith(tuple, start, end);
throw PythonOps.TypeError("{0} first arg must be a bytes-like object or a tuple of bytes-like objects, not {1}", nameof(endswith), PythonOps.GetPythonTypeName(suffix));
}
public ByteArray expandtabs() {
return expandtabs(8);
}
public ByteArray expandtabs(int tabsize) {
lock (this) {
return new ByteArray(_bytes.ExpandTabs(tabsize));
}
}
public int find([BytesLike, NotNone] IList<byte> sub) {
lock (this) {
return _bytes.Find(sub, 0, _bytes.Count);
}
}
public int find([BytesLike, NotNone] IList<byte> sub, int start) {
lock (this) {
return _bytes.Find(sub, start, _bytes.Count);
}
}
public int find([BytesLike, NotNone] IList<byte> sub, int start, int end) {
lock (this) {
return _bytes.Find(sub, start, end);
}
}
public int find([BytesLike, NotNone] IList<byte> sub, object? start)
=> find(sub, start, null);
public int find([BytesLike, NotNone] IList<byte> sub, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return _bytes.Find(sub, istart, iend);
}
}
public int find(BigInteger @byte) {
lock (this) {
return _bytes.IndexOfByte(@byte.ToByteChecked(), 0, _bytes.Count);
}
}
public int find(BigInteger @byte, int start) {
lock (this) {
return _bytes.IndexOfByte(@byte.ToByteChecked(), start, _bytes.Count);
}
}
public int find(BigInteger @byte, int start, int end) {
lock (this) {
return _bytes.IndexOfByte(@byte.ToByteChecked(), start, end);
}
}
public int find(BigInteger @byte, object? start)
=> find(@byte, start, null);
public int find(BigInteger @byte, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return _bytes.IndexOfByte(@byte.ToByteChecked(), istart, iend);
}
}
public static ByteArray fromhex([NotNone] string @string) {
return new ByteArray(IListOfByteOps.FromHex(@string));
}
public string hex() => Bytes.ToHex(_bytes.AsByteSpan()); // new in CPython 3.5
public int index([BytesLike, NotNone] IList<byte> sub) {
lock (this) {
return index(sub, 0, _bytes.Count);
}
}
public int index([BytesLike, NotNone] IList<byte> sub, int start) {
lock (this) {
return index(sub, start, _bytes.Count);
}
}
public int index([BytesLike, NotNone] IList<byte> sub, int start, int end) {
lock (this) {
int res = find(sub, start, end);
if (res == -1) {
throw PythonOps.ValueError("subsection not found");
}
return res;
}
}
public int index([BytesLike, NotNone] IList<byte> sub, object? start)
=> index(sub, start, null);
public int index([BytesLike, NotNone] IList<byte> sub, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return index(sub, istart, iend);
}
}
public int index(BigInteger @byte)
=> index(Bytes.FromByte(@byte.ToByteChecked()));
public int index(BigInteger @byte, int start)
=> index(Bytes.FromByte(@byte.ToByteChecked()), start);
public int index(BigInteger @byte, int start, int end)
=> index(Bytes.FromByte(@byte.ToByteChecked()), start, end);
public int index(BigInteger @byte, object? start)
=> index(Bytes.FromByte(@byte.ToByteChecked()), start, null);
public int index(BigInteger @byte, object? start, object? end)
=> index(Bytes.FromByte(@byte.ToByteChecked()), start, end);
public bool isalnum() {
lock (this) {
return _bytes.IsAlphaNumeric();
}
}
public bool isalpha() {
lock (this) {
return _bytes.IsLetter();
}
}
public bool isdigit() {
lock (this) {
return _bytes.IsDigit();
}
}
public bool islower() {
lock (this) {
return _bytes.IsLower();
}
}
public bool isspace() {
lock (this) {
return _bytes.IsWhiteSpace();
}
}
/// <summary>
/// return true if self is a titlecased string and there is at least one
/// character in self; also, uppercase characters may only follow uncased
/// characters (e.g. whitespace) and lowercase characters only cased ones.
/// return false otherwise.
/// </summary>
public bool istitle() {
lock (this) {
return _bytes.IsTitle();
}
}
public bool isupper() {
lock (this) {
return _bytes.IsUpper();
}
}
/// <summary>
/// Return a string which is the concatenation of the strings
/// in the sequence seq. The separator between elements is the
/// string providing this method
/// </summary>
public ByteArray join(object? sequence) {
IEnumerator seq = PythonOps.GetEnumerator(sequence);
if (!seq.MoveNext()) {
return new ByteArray();
}
// check if we have just a sequnce of just one value - if so just
// return that value.
object? curVal = seq.Current;
if (!seq.MoveNext()) {
return JoinOne(curVal);
}
List<byte> ret = new List<byte>();
ByteOps.AppendJoin(curVal, 0, ret);
int index = 1;
do {
ret.AddRange(this);
ByteOps.AppendJoin(seq.Current, index, ret);
index++;
} while (seq.MoveNext());
return new ByteArray(ret);
}
public ByteArray join([NotNone] PythonList sequence) {
if (sequence.__len__() == 0) {
return new ByteArray();
}
lock (this) {
if (sequence.__len__() == 1) {
return JoinOne(sequence[0]);
}
List<byte> ret = new List<byte>();
ByteOps.AppendJoin(sequence._data[0], 0, ret);
for (int i = 1; i < sequence._size; i++) {
ret.AddRange(this);
ByteOps.AppendJoin(sequence._data[i], i, ret);
}
return new ByteArray(ret);
}
}
public ByteArray ljust(int width) {
return ljust(width, (byte)' ');
}
public ByteArray ljust(int width, [BytesLike, NotNone] IList<byte> fillchar) {
return ljust(width, fillchar.ToByte("ljust", 2));
}
private ByteArray ljust(int width, byte fillchar) {
lock (this) {
int spaces = width - _bytes.Count;
if (spaces <= 0) {
return CopyThis();
}
List<byte> ret = new List<byte>(width);
ret.AddRange(_bytes);
for (int i = 0; i < spaces; i++) {
ret.Add(fillchar);
}
return new ByteArray(ret);
}
}
public ByteArray lower() {
lock (this) {
return new ByteArray(_bytes.ToLower());
}
}
public ByteArray lstrip() {
lock (this) {
var res = _bytes.LeftStrip();
return res == null ? CopyThis() : new ByteArray(res);
}
}
public ByteArray lstrip([BytesLike]IList<byte>? chars) {
if (chars == null) return lstrip();
lock (this) {
var res = _bytes.LeftStrip(chars);
return res == null ? CopyThis() : new ByteArray(res);
}
}
public static Bytes maketrans([BytesLike, NotNone] IList<byte> from, [BytesLike, NotNone] IList<byte> to)
=> Bytes.maketrans(from, to);
[return: SequenceTypeInfo(typeof(ByteArray))]
public PythonTuple partition([BytesLike, NotNone] IList<byte> sep) {
if (sep.Count == 0) {
throw PythonOps.ValueError("empty separator");
}
object[] obj = new object[3] { new ByteArray(), new ByteArray(), new ByteArray() };
if (_bytes.Count != 0) {
int index = find(sep);
if (index == -1) {
obj[0] = CopyThis();
} else {
obj[0] = new ByteArray(_bytes.Substring(0, index));
obj[1] = new ByteArray(new List<byte>(sep));
obj[2] = new ByteArray(_bytes.Substring(index + sep.Count, _bytes.Count - index - sep.Count));
}
}
return PythonTuple.MakeTuple(obj);
}
public ByteArray replace([BytesLike, NotNone] IList<byte> old, [BytesLike, NotNone] IList<byte> @new)
=> replace(old, @new, -1);
public ByteArray replace([BytesLike, NotNone] IList<byte> old, [BytesLike, NotNone] IList<byte> @new, int count) {
if (count == 0) {
return CopyThis();
}
return new ByteArray(_bytes.Replace(old, @new, ref count));
}
public int rfind([BytesLike, NotNone] IList<byte> sub) {
lock (this) {
return _bytes.ReverseFind(sub, 0, _bytes.Count);
}
}
public int rfind([BytesLike, NotNone] IList<byte> sub, int start) {
lock (this) {
return _bytes.ReverseFind(sub, start, _bytes.Count);
}
}
public int rfind([BytesLike, NotNone] IList<byte> sub, int start, int end) {
lock (this) {
return _bytes.ReverseFind(sub, start, end);
}
}
public int rfind([BytesLike, NotNone] IList<byte> sub, object? start)
=> rfind(sub, start, null);
public int rfind([BytesLike, NotNone] IList<byte> sub, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return _bytes.ReverseFind(sub, istart, iend);
}
}
public int rfind(BigInteger @byte)
=> rfind(Bytes.FromByte(@byte.ToByteChecked()));
public int rfind(BigInteger @byte, int start)
=> rfind(Bytes.FromByte(@byte.ToByteChecked()), start);
public int rfind(BigInteger @byte, int start, int end)
=> rfind(Bytes.FromByte(@byte.ToByteChecked()), start, end);
public int rfind(BigInteger @byte, object? start)
=> rfind(Bytes.FromByte(@byte.ToByteChecked()), start, null);
public int rfind(BigInteger @byte, object? start, object? end)
=> rfind(Bytes.FromByte(@byte.ToByteChecked()), start, end);
public int rindex([BytesLike, NotNone] IList<byte> sub) {
lock (this) {
return rindex(sub, 0, _bytes.Count);
}
}
public int rindex([BytesLike, NotNone] IList<byte> sub, int start) {
lock (this) {
return rindex(sub, start, _bytes.Count);
}
}
public int rindex([BytesLike, NotNone] IList<byte> sub, int start, int end) {
int ret = rfind(sub, start, end);
if (ret == -1) {
throw PythonOps.ValueError("subsection not found");
}
return ret;
}
public int rindex([BytesLike, NotNone] IList<byte> sub, object? start)
=> rindex(sub, start, null);
public int rindex([BytesLike, NotNone] IList<byte> sub, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return rindex(sub, istart, iend);
}
}
public int rindex(BigInteger @byte)
=> rindex(Bytes.FromByte(@byte.ToByteChecked()));
public int rindex(BigInteger @byte, int start)
=> rindex(Bytes.FromByte(@byte.ToByteChecked()), start);
public int rindex(BigInteger @byte, int start, int end)
=> rindex(Bytes.FromByte(@byte.ToByteChecked()), start, end);
public int rindex(BigInteger @byte, object? start)
=> rindex(Bytes.FromByte(@byte.ToByteChecked()), start, null);
public int rindex(BigInteger @byte, object? start, object? end)
=> rindex(Bytes.FromByte(@byte.ToByteChecked()), start, end);
public ByteArray rjust(int width) {
return rjust(width, (byte)' ');
}
public ByteArray rjust(int width, [BytesLike, NotNone] IList<byte> fillchar) {
return rjust(width, fillchar.ToByte("rjust", 2));
}
private ByteArray rjust(int width, int fillchar) {
byte fill = fillchar.ToByteChecked();
lock (this) {
int spaces = width - _bytes.Count;
if (spaces <= 0) {
return CopyThis();
}
List<byte> ret = new List<byte>(width);
for (int i = 0; i < spaces; i++) {
ret.Add(fill);
}
ret.AddRange(_bytes);
return new ByteArray(ret);
}
}
[return: SequenceTypeInfo(typeof(ByteArray))]
public PythonTuple rpartition([BytesLike, NotNone] IList<byte> sep) {
if (sep.Count == 0) {
throw PythonOps.ValueError("empty separator");
}
lock (this) {
object[] obj = new object[3] { new ByteArray(), new ByteArray(), new ByteArray() };
if (_bytes.Count != 0) {
int index = rfind(sep);
if (index == -1) {
obj[2] = CopyThis();
} else {
obj[0] = new ByteArray(_bytes.Substring(0, index));
obj[1] = new ByteArray(new List<byte>(sep));
obj[2] = new ByteArray(_bytes.Substring(index + sep.Count, Count - index - sep.Count));
}
}
return PythonTuple.MakeTuple(obj);
}
}
[return: SequenceTypeInfo(typeof(ByteArray))]
public PythonList rsplit([BytesLike]IList<byte>? sep = null, int maxsplit = -1) {
lock (this) {
return _bytes.RightSplit(sep, maxsplit, x => new ByteArray(new List<byte>(x)));
}
}
public ByteArray rstrip() {
lock (this) {
var res = _bytes.RightStrip();
return res == null ? CopyThis() : new ByteArray(res);
}
}
public ByteArray rstrip([BytesLike]IList<byte>? chars) {
if (chars == null) return rstrip();
lock (this) {
var res = _bytes.RightStrip(chars);
return res == null ? CopyThis() : new ByteArray(res);
}
}
[return: SequenceTypeInfo(typeof(ByteArray))]
public PythonList split([BytesLike]IList<byte>? sep = null, int maxsplit = -1) {
lock (this) {
return _bytes.Split(sep, maxsplit, x => new ByteArray(x));
}
}
[return: SequenceTypeInfo(typeof(ByteArray))]
public PythonList splitlines() {
return splitlines(false);
}
[return: SequenceTypeInfo(typeof(ByteArray))]
public PythonList splitlines(bool keepends) {
lock (this) {
return _bytes.SplitLines(keepends, x => new ByteArray(x));
}
}
public bool startswith([BytesLike, NotNone] IList<byte> prefix) {
lock (this) {
return _bytes.StartsWith(prefix);
}
}
public bool startswith([BytesLike, NotNone] IList<byte> prefix, int start) {
lock (this) {
return _bytes.StartsWith(prefix, start, _bytes.Count);
}
}
public bool startswith([BytesLike, NotNone] IList<byte> prefix, int start, int end) {
lock (this) {
return _bytes.StartsWith(prefix, start, end);
}
}
public bool startswith([BytesLike, NotNone] IList<byte> prefix, object? start) {
return startswith(prefix, start, null);
}
public bool startswith([BytesLike, NotNone] IList<byte> prefix, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return _bytes.StartsWith(prefix, istart, iend);
}
}
public bool startswith([NotNone] PythonTuple prefix) {
lock (this) {
return _bytes.StartsWith(prefix);
}
}
public bool startswith([NotNone] PythonTuple prefix, int start) {
lock (this) {
return _bytes.StartsWith(prefix, start, _bytes.Count);
}
}
public bool startswith([NotNone] PythonTuple prefix, int start, int end) {
lock (this) {
return _bytes.StartsWith(prefix, start, end);
}
}
public bool startswith([NotNone] PythonTuple prefix, object? start) {
return startswith(prefix, start, null);
}
public bool startswith([NotNone] PythonTuple prefix, object? start, object? end) {
int istart = start != null ? Converter.ConvertToIndex(start) : 0;
lock (this) {
int iend = end != null ? Converter.ConvertToIndex(end) : _bytes.Count;
return _bytes.StartsWith(prefix, istart, iend);
}
}
[Documentation("\n" + // hidden overload
"Return True if self starts with the specified prefix, False otherwise.\n" +
"With optional start, test self beginning at that position.\n" +
"With optional end, stop comparing self at that position.\n" +
"prefix can also be a tuple of bytes-like objects to try.")]
public bool startswith(object? prefix, object? start = null, object? end = null) {
if (prefix is IList<byte> blist) return startswith(blist, start, end);
if (prefix is PythonTuple tuple) return startswith(tuple, start, end);
throw PythonOps.TypeError("{0} first arg must be a bytes-like object or a tuple of bytes-like objects, not {1}", nameof(startswith), PythonOps.GetPythonTypeName(prefix));
}
public ByteArray strip() {
lock (this) {
var res = _bytes.Strip();
return res == null ? CopyThis() : new ByteArray(res);
}
}
public ByteArray strip([BytesLike]IList<byte>? chars) {
if (chars == null) return strip();
lock (this) {
var res = _bytes.Strip(chars);
return res == null ? CopyThis() : new ByteArray(res);
}
}
public ByteArray swapcase() {
lock (this) {
return new ByteArray(_bytes.SwapCase());
}
}
public ByteArray title() {
lock (this) {
var res = _bytes.Title();
return res == null ? CopyThis() : new ByteArray(res);
}
}
private void ValidateTable(IList<byte>? table) {
if (table != null && table.Count != 256) {
throw PythonOps.ValueError("translation table must be 256 characters long");
}
}
public ByteArray translate([BytesLike]IList<byte>? table) {
ValidateTable(table);
lock (this) {
return new ByteArray(_bytes.Translate(table, null));
}
}
public ByteArray translate([BytesLike]IList<byte>? table, [BytesLike, NotNone] IList<byte> delete) {