forked from msgpack/msgpack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessagePackObject.Utilities.cs
More file actions
1664 lines (1504 loc) · 44 KB
/
MessagePackObject.Utilities.cs
File metadata and controls
1664 lines (1504 loc) · 44 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
#region -- License Terms --
//
// MessagePack for CLI
//
// Copyright (C) 2010-2012 FUJIWARA, Yusuke
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#endregion -- License Terms --
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.Contracts;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
#if !NETFX_CORE
using System.Security.Permissions;
#endif
using System.Text;
namespace MsgPack
{
#if !SILVERLIGHT && !NETFX_CORE
[Serializable]
#endif
partial struct MessagePackObject
{
#region -- Type Code Constants --
private static readonly ValueTypeCode _sbyteTypeCode = new ValueTypeCode( typeof( sbyte ), MessagePackValueTypeCode.Int8 );
private static readonly ValueTypeCode _byteTypeCode = new ValueTypeCode( typeof( byte ), MessagePackValueTypeCode.UInt8 );
private static readonly ValueTypeCode _int16TypeCode = new ValueTypeCode( typeof( short ), MessagePackValueTypeCode.Int16 );
private static readonly ValueTypeCode _uint16TypeCode = new ValueTypeCode( typeof( ushort ), MessagePackValueTypeCode.UInt16 );
private static readonly ValueTypeCode _int32TypeCode = new ValueTypeCode( typeof( int ), MessagePackValueTypeCode.Int32 );
private static readonly ValueTypeCode _uint32TypeCode = new ValueTypeCode( typeof( uint ), MessagePackValueTypeCode.UInt32 );
private static readonly ValueTypeCode _int64TypeCode = new ValueTypeCode( typeof( long ), MessagePackValueTypeCode.Int64 );
private static readonly ValueTypeCode _uint64TypeCode = new ValueTypeCode( typeof( ulong ), MessagePackValueTypeCode.UInt64 );
private static readonly ValueTypeCode _singleTypeCode = new ValueTypeCode( typeof( float ), MessagePackValueTypeCode.Single );
private static readonly ValueTypeCode _doubleTypeCode = new ValueTypeCode( typeof( double ), MessagePackValueTypeCode.Double );
private static readonly ValueTypeCode _booleanTypeCode = new ValueTypeCode( typeof( bool ), MessagePackValueTypeCode.Boolean );
#endregion -- Type Code Constants --
/// <summary>
/// Instance represents nil. This is equal to default value.
/// </summary>
public static readonly MessagePackObject Nil = new MessagePackObject();
#region -- Type Code Fields & Properties --
private object _handleOrTypeCode;
/// <summary>
/// Get whether this instance represents nil.
/// </summary>
/// <value>If this instance represents nil object, then true.</value>
public bool IsNil
{
get { return this._handleOrTypeCode == null; }
}
private ulong _value;
#endregion -- Type Code Fields & Properties --
#region -- Constructors --
/// <summary>
/// Initializes a new instance wraps <see cref="IList<MessagePackObject>"/>.
/// </summary>
/// <param name="value">
/// The collection to be copied.
/// </param>
public MessagePackObject( IList<MessagePackObject> value )
: this( value, false ) { }
/// <summary>
/// Initializes a new instance wraps <see cref="IList<MessagePackObject>"/>.
/// </summary>
/// <param name="value">
/// The collection to be copied or used.
/// </param>
/// <param name="isImmutable">
/// <c>true</c> if the <paramref name="value"/> is immutable collection;
/// othereise, <c>false</c>.
/// </param>
/// <remarks>
/// When the collection is truely immutable or dedicated, you can specify <c>true</c> to the <paramref name="isImmutable"/>.
/// When <paramref name="isImmutable"/> is <c>true</c>, this constructor does not copy its contents,
/// or copies its contents otherwise.
/// <note>
/// Note that both of IReadOnlyList and <see cref="System.Collections.ObjectModel.ReadOnlyCollection{T}"/> is NOT immutable
/// because the modification to the underlying collection will be reflected to the read-only collection.
/// </note>
/// </remarks>
public MessagePackObject( IList<MessagePackObject> value, bool isImmutable )
{
// trick: Avoid long boilerplate initialization. See "CLR via C#".
this = new MessagePackObject();
if ( isImmutable )
{
this._handleOrTypeCode = value;
}
else
{
if ( value == null )
{
this._handleOrTypeCode = null;
}
else
{
var copy = new MessagePackObject[ value.Count ];
value.CopyTo( copy, 0 );
this._handleOrTypeCode = copy;
}
}
}
/// <summary>
/// Initializes a new instance wraps <see cref="MessagePackObjectDictionary"/>.
/// </summary>
/// <param name="value">
/// The dictitonary to be copied.
/// </param>
public MessagePackObject( MessagePackObjectDictionary value )
: this( value, false ) { }
/// <summary>
/// Initializes a new instance wraps <see cref="MessagePackObjectDictionary"/>.
/// </summary>
/// <param name="value">
/// The dictitonary to be copied or used.
/// </param>
/// <param name="isImmutable">
/// <c>true</c> if the <paramref name="value"/> is immutable collection;
/// othereise, <c>false</c>.
/// </param>
/// <remarks>
/// When the collection is truely immutable or dedicated, you can specify <c>true</c> to the <paramref name="isImmutable"/>.
/// When <paramref name="isImmutable"/> is <c>true</c>, this constructor does not copy its contents,
/// or copies its contents otherwise.
/// <note>
/// Note that both of IReadOnlyDictionary and ReadOnlyDictionary is NOT immutable
/// because the modification to the underlying collection will be reflected to the read-only collection.
/// </note>
/// </remarks>
public MessagePackObject( MessagePackObjectDictionary value, bool isImmutable )
{
// trick: Avoid long boilerplate initialization. See "CLR via C#".
this = new MessagePackObject();
if ( isImmutable )
{
this._handleOrTypeCode = value;
}
else
{
if ( value == null )
{
this._handleOrTypeCode = null;
}
else
{
this._handleOrTypeCode = new MessagePackObjectDictionary( value );
}
}
}
/// <summary>
/// Initializes a new instance wraps <see cref="MessagePackString"/>.
/// </summary>
/// <param name="messagePackString"><see cref="MessagePackString"/> which represents byte array or UTF-8 encoded string.</param>
internal MessagePackObject( MessagePackString messagePackString )
{
// trick: Avoid long boilerplate initialization. See "CLR via C#".
this = new MessagePackObject();
this._handleOrTypeCode = messagePackString;
}
#endregion -- Constructors --
#region -- Structure Methods --
/// <summary>
/// Compare two instances are equal.
/// </summary>
/// <param name="obj"><see cref="MessagePackObject"/> instance.</param>
/// <returns>
/// If <paramref name="obj"/> is <see cref="MessagePackObject"/> and its value is equal to this instance, then true.
/// Otherwise false.
/// </returns>
public override bool Equals( Object obj )
{
MessagePackObjectDictionary asDictionary;
if ( Object.ReferenceEquals( obj, null ) )
{
return this.IsNil;
}
else if ( ( asDictionary = obj as MessagePackObjectDictionary ) != null )
{
return this.Equals( new MessagePackObject( asDictionary ) );
}
else if ( !( obj is MessagePackObject ) )
{
return false;
}
else
{
return this.Equals( ( MessagePackObject )obj );
}
}
/// <summary>
/// Compare two instances are equal.
/// </summary>
/// <param name="other"><see cref="MessagePackObject"/> instance.</param>
/// <returns>
/// Whether value of <paramref name="other"/> is equal to this instance or not.
/// </returns>
public bool Equals( MessagePackObject other )
{
if ( this._handleOrTypeCode == null )
{
return other._handleOrTypeCode == null;
}
else if ( other._handleOrTypeCode == null )
{
return false;
}
var valueTypeCode = this._handleOrTypeCode as ValueTypeCode;
if ( valueTypeCode != null )
{
var otherValuetypeCode = other._handleOrTypeCode as ValueTypeCode;
if ( otherValuetypeCode == null )
{
return false;
}
if ( valueTypeCode.TypeCode == MessagePackValueTypeCode.Boolean )
{
if ( otherValuetypeCode.TypeCode != MessagePackValueTypeCode.Boolean )
{
return false;
}
return ( bool )this == ( bool )other;
}
else if ( otherValuetypeCode.TypeCode == MessagePackValueTypeCode.Boolean )
{
return false;
}
if ( valueTypeCode.IsInteger )
{
if ( otherValuetypeCode.IsInteger )
{
return IntegerIntegerEquals( this._value, valueTypeCode, other._value, otherValuetypeCode );
}
else if ( otherValuetypeCode.TypeCode == MessagePackValueTypeCode.Single )
{
return IntegerSingleEquals( this, other );
}
else if ( otherValuetypeCode.TypeCode == MessagePackValueTypeCode.Double )
{
return IntegerDoubleEquals( this, other );
}
}
else if ( valueTypeCode.TypeCode == MessagePackValueTypeCode.Double )
{
if ( otherValuetypeCode.IsInteger )
{
return IntegerDoubleEquals( other, this );
}
else if ( otherValuetypeCode.TypeCode == MessagePackValueTypeCode.Single )
{
return ( double )this == ( float )other;
}
else if ( otherValuetypeCode.TypeCode == MessagePackValueTypeCode.Double )
{
// Cannot compare _value because there might be not normalized.
return ( double )this == ( double )other;
}
}
else if ( valueTypeCode.TypeCode == MessagePackValueTypeCode.Single )
{
if ( otherValuetypeCode.IsInteger )
{
return IntegerSingleEquals( other, this );
}
else if ( otherValuetypeCode.TypeCode == MessagePackValueTypeCode.Single )
{
// Cannot compare _value because there might be not normalized.
return ( float )this == ( float )other;
}
else if ( otherValuetypeCode.TypeCode == MessagePackValueTypeCode.Double )
{
return ( float )this == ( double )other;
}
}
}
{
var asMps = this._handleOrTypeCode as MessagePackString;
if ( asMps != null )
{
return asMps.Equals( other._handleOrTypeCode as MessagePackString );
}
}
{
var asArray = this._handleOrTypeCode as IList<MessagePackObject>;
if ( asArray != null )
{
var otherAsArray = other._handleOrTypeCode as IList<MessagePackObject>;
if ( otherAsArray == null )
{
return false;
}
return asArray.SequenceEqual( otherAsArray );
}
}
{
var asMap = this._handleOrTypeCode as IDictionary<MessagePackObject, MessagePackObject>;
if ( asMap != null )
{
var otherAsMap = other._handleOrTypeCode as IDictionary<MessagePackObject, MessagePackObject>;
if ( otherAsMap == null )
{
return false;
}
if ( asMap.Count != otherAsMap.Count )
{
return false;
}
foreach ( var kv in asMap )
{
MessagePackObject value;
if ( !otherAsMap.TryGetValue( kv.Key, out value ) )
{
return false;
}
if ( kv.Value != value )
{
return false;
}
}
return true;
}
}
{
var asExtendedTypeObjectBody = this._handleOrTypeCode as byte[];
if ( asExtendedTypeObjectBody != null )
{
var otherAsExtendedTypeObjectBody = other._handleOrTypeCode as byte[];
if ( otherAsExtendedTypeObjectBody == null )
{
return false;
}
unchecked
{
return MessagePackExtendedTypeObject.Unpack( ( byte )this._value, asExtendedTypeObjectBody ) ==
MessagePackExtendedTypeObject.Unpack( ( byte )other._value, otherAsExtendedTypeObjectBody );
}
}
}
Debug.Assert( false, String.Format( "Unknown handle type this:'{0}'(value: '{1}'), other:'{2}'(value: '{3}')", this._handleOrTypeCode.GetType(), this._handleOrTypeCode, other._handleOrTypeCode.GetType(), other._handleOrTypeCode ) );
return this._handleOrTypeCode.Equals( other._handleOrTypeCode );
}
private static bool IntegerIntegerEquals( ulong left, ValueTypeCode leftTypeCode, ulong right, ValueTypeCode rightTypeCode )
{
if ( leftTypeCode.IsSigned )
{
if ( rightTypeCode.IsSigned )
{
return left == right;
}
else
{
var leftAsInt64 = unchecked( ( long )left );
if ( leftAsInt64 < 0L )
{
return false;
}
return left == right;
}
}
else
{
if ( rightTypeCode.IsSigned )
{
var rightAsInt64 = unchecked( ( long )right );
if ( rightAsInt64 < 0L )
{
return false;
}
return left == right;
}
else
{
return left == right;
}
}
}
private static bool IntegerSingleEquals( MessagePackObject integer, MessagePackObject real )
{
if ( ( integer._handleOrTypeCode as ValueTypeCode ).IsSigned )
{
return unchecked( ( long )integer._value ) == ( float )real;
}
else
{
return integer._value == ( float )real;
}
}
private static bool IntegerDoubleEquals( MessagePackObject integer, MessagePackObject real )
{
if ( ( integer._handleOrTypeCode as ValueTypeCode ).IsSigned )
{
return unchecked( ( long )integer._value ) == ( double )real;
}
else
{
return integer._value == ( double )real;
}
}
/// <summary>
/// Get hash code of this instance.
/// </summary>
/// <returns>Hash code of this instance.</returns>
public override int GetHashCode()
{
if ( this._handleOrTypeCode == null )
{
return 0;
}
if ( this._handleOrTypeCode is ValueTypeCode )
{
return this._value.GetHashCode();
}
{
var asMps = this._handleOrTypeCode as MessagePackString;
if ( asMps != null )
{
return asMps.GetHashCode();
}
}
{
var asArray = this._handleOrTypeCode as IList<MessagePackObject>;
if ( asArray != null )
{
// TODO: big array support...
return asArray.Aggregate( 0, ( hash, item ) => hash ^ item.GetHashCode() );
}
}
{
var asMap = this._handleOrTypeCode as IDictionary<MessagePackObject, MessagePackObject>;
if ( asMap != null )
{
// TODO: big map support...
return asMap.Aggregate( 0, ( hash, item ) => hash ^ item.GetHashCode() );
}
}
{
var asExtendedTypeObjectBody = this._handleOrTypeCode as byte[];
if ( asExtendedTypeObjectBody != null )
{
unchecked
{
return MessagePackExtendedTypeObject.Unpack( ( byte )this._value, asExtendedTypeObjectBody ).GetHashCode();
}
}
}
{
Contract.Assert( false, String.Format( "(this._handleOrTypeCode is string) but {0}", this._handleOrTypeCode.GetType() ) );
return 0;
}
}
/// <summary>
/// Returns a string that represents the current object.
/// </summary>
/// <returns>
/// A string that represents the current object.
/// </returns>
/// <remarks>
/// <note>
/// DO NOT use this value programmically.
/// The purpose of this method is informational, so format of this value subject to change.
/// </note>
/// </remarks>
public override string ToString()
{
var buffer = new StringBuilder();
ToString( buffer, false );
return buffer.ToString();
}
private void ToString( StringBuilder buffer, bool isJson )
{
if ( this._handleOrTypeCode == null )
{
if ( isJson )
{
buffer.Append( "null" );
}
return;
}
ValueTypeCode valueTypeCode;
if ( ( valueTypeCode = this._handleOrTypeCode as ValueTypeCode ) != null )
{
switch ( valueTypeCode.TypeCode )
{
case MessagePackValueTypeCode.Boolean:
{
if ( isJson )
{
buffer.Append( this.AsBoolean() ? "true" : "false" );
}
else
{
buffer.Append( this.AsBoolean() );
}
break;
}
case MessagePackValueTypeCode.Double:
{
buffer.Append( this.AsDouble().ToString( CultureInfo.InvariantCulture ) );
break;
}
case MessagePackValueTypeCode.Single:
{
buffer.Append( this.AsSingle().ToString( CultureInfo.InvariantCulture ) );
break;
}
default:
{
if ( valueTypeCode.IsSigned )
{
buffer.Append( unchecked( ( long )( this._value ) ).ToString( CultureInfo.InvariantCulture ) );
}
else
{
buffer.Append( this._value.ToString( CultureInfo.InvariantCulture ) );
}
break;
}
}
return;
}
{
var asArray = this._handleOrTypeCode as IList<MessagePackObject>;
if ( asArray != null )
{
// TODO: big array support...
buffer.Append( '[' );
if ( asArray.Count > 0 )
{
for ( int i = 0; i < asArray.Count; i++ )
{
if ( i > 0 )
{
buffer.Append( ',' );
}
buffer.Append( ' ' );
asArray[ i ].ToString( buffer, true );
}
buffer.Append( ' ' );
}
buffer.Append( ']' );
return;
}
}
{
var asMap = this._handleOrTypeCode as IDictionary<MessagePackObject, MessagePackObject>;
if ( asMap != null )
{
// TODO: big map support...
buffer.Append( '{' );
if ( asMap.Count > 0 )
{
bool isFirst = true;
foreach ( var entry in asMap )
{
if ( isFirst )
{
isFirst = false;
}
else
{
buffer.Append( ',' );
}
buffer.Append( ' ' );
entry.Key.ToString( buffer, true );
buffer.Append( ' ' ).Append( ':' ).Append( ' ' );
entry.Value.ToString( buffer, true );
}
buffer.Append( ' ' );
}
buffer.Append( '}' );
return;
}
}
{
var asBinary = this._handleOrTypeCode as MessagePackString;
if ( asBinary != null )
{
// TODO: big array support...
var asString = asBinary.TryGetString();
if ( asString != null )
{
if ( isJson )
{
buffer.Append( '"' );
foreach ( var c in asString )
{
switch ( c )
{
case '"':
{
buffer.Append( '\\' ).Append( '"' );
break;
}
case '\\':
{
buffer.Append( '\\' ).Append( '\\' );
break;
}
case '/':
{
buffer.Append( '\\' ).Append( '/' );
break;
}
case '\b':
{
buffer.Append( '\\' ).Append( 'b' );
break;
}
case '\f':
{
buffer.Append( '\\' ).Append( 'f' );
break;
}
case '\n':
{
buffer.Append( '\\' ).Append( 'n' );
break;
}
case '\r':
{
buffer.Append( '\\' ).Append( 'r' );
break;
}
case '\t':
{
buffer.Append( '\\' ).Append( 't' );
break;
}
case ' ':
{
buffer.Append( ' ' );
break;
}
default:
{
switch ( CharUnicodeInfo.GetUnicodeCategory( c ) )
{
case UnicodeCategory.Control:
case UnicodeCategory.OtherNotAssigned:
case UnicodeCategory.Format:
case UnicodeCategory.LineSeparator:
case UnicodeCategory.ParagraphSeparator:
case UnicodeCategory.SpaceSeparator:
case UnicodeCategory.PrivateUse:
case UnicodeCategory.Surrogate:
{
buffer.Append( '\\' ).Append( 'u' ).Append( ( ( ushort )c ).ToString( "X", CultureInfo.InvariantCulture ) );
break;
}
default:
{
buffer.Append( c );
break;
}
}
break;
}
}
}
buffer.Append( '"' );
}
else
{
buffer.Append( asString );
}
return;
}
var asBlob = asBinary.UnsafeGetBuffer();
if ( asBlob != null )
{
if ( isJson )
{
buffer.Append( '"' );
Binary.ToHexString( asBlob, buffer );
buffer.Append( '"' );
}
else
{
Binary.ToHexString( asBlob, buffer );
}
return;
}
}
}
{
var asExtendedTypeObjectBody = this._handleOrTypeCode as byte[];
if ( asExtendedTypeObjectBody != null )
{
MessagePackExtendedTypeObject.Unpack( ( byte )this._value, asExtendedTypeObjectBody ).ToString( buffer, isJson );
return;
}
}
// may be string
Contract.Assert( false, String.Format( "(this._handleOrTypeCode is string) but {0}", this._handleOrTypeCode.GetType() ) );
if ( isJson )
{
buffer.Append( '"' ).Append( this._handleOrTypeCode ).Append( '"' );
}
else
{
buffer.Append( this._handleOrTypeCode );
}
}
#endregion -- Structure Methods --
#region -- Type Of Methods --
/// <summary>
/// Determine whether the underlying value of this instance is specified type or not.
/// </summary>
/// <typeparam name="T">Target type.</typeparam>
/// <returns>If the underlying value of this instance is <typeparamref name="T"/> then true, otherwise false.</returns>
[SuppressMessage( "Microsoft.Design", "CA1004:GenericMethodsShouldProvideTypeParameter", Justification = "There are no meaningful parameter." )]
public bool? IsTypeOf<T>()
{
return this.IsTypeOf( typeof( T ) );
}
/// <summary>
/// Determine whether the underlying value of this instance is specified type or not.
/// </summary>
/// <param name="type">Target type.</param>
/// <returns>If the underlying value of this instance is <paramref name="type"/> then true, otherwise false.</returns>
/// <exception cref="ArgumentNullException"><paramref name="type"/> is null.</exception>
public bool? IsTypeOf( Type type )
{
if ( type == null )
{
throw new ArgumentNullException( "type" );
}
Contract.EndContractBlock();
if ( this._handleOrTypeCode == null )
{
#if NETFX_CORE
return ( type.GetTypeInfo().IsValueType && Nullable.GetUnderlyingType( type ) == null ) ? false : default( bool? );
#else
return ( type.IsValueType && Nullable.GetUnderlyingType( type ) == null ) ? false : default( bool? );
#endif
}
var typeCode = this._handleOrTypeCode as ValueTypeCode;
if ( typeCode == null )
{
if ( type == typeof( MessagePackExtendedTypeObject ) )
{
return this._handleOrTypeCode is byte[];
}
if ( type == typeof( string ) || type == typeof( IList<char> ) || type == typeof( IEnumerable<char> ) )
{
var asMessagePackString = this._handleOrTypeCode as MessagePackString;
return asMessagePackString != null && asMessagePackString.GetUnderlyingType() == typeof( string );
}
if ( type == typeof( byte[] ) || type == typeof( IList<byte> ) || type == typeof( IEnumerable<byte> ) )
{
return this._handleOrTypeCode is MessagePackString;
}
// Can IEnumerable<byte>
if ( typeof( IEnumerable<MessagePackObject> ).IsAssignableFrom( type )
&& this._handleOrTypeCode is MessagePackString )
{
// Raw is NOT array.
return false;
}
return type.IsAssignableFrom( this._handleOrTypeCode.GetType() );
}
// Lifting support.
#if NETFX_CORE
switch ( WinRTCompatibility.GetTypeCode( type ) )
#else
switch ( Type.GetTypeCode( type ) )
#endif
{
case TypeCode.SByte:
{
return typeCode.IsInteger && ( this._value < 0x80 || ( 0xFFFFFFFFFFFFFF80 <= this._value && typeCode.IsSigned ) );
}
case TypeCode.Byte:
{
return typeCode.IsInteger && this._value < 0x100;
}
case TypeCode.Int16:
{
return typeCode.IsInteger && ( this._value < 0x8000 || ( 0xFFFFFFFFFFFF8000 <= this._value && typeCode.IsSigned ) );
}
case TypeCode.UInt16:
{
return typeCode.IsInteger && this._value < 0x10000;
}
case TypeCode.Int32:
{
return typeCode.IsInteger && ( this._value < 0x80000000 || ( 0xFFFFFFFF80000000 <= this._value && typeCode.IsSigned ) );
}
case TypeCode.UInt32:
{
return typeCode.IsInteger && this._value < 0x100000000L;
}
case TypeCode.Int64:
{
return typeCode.IsInteger && ( this._value < 0x8000000000000000L || typeCode.IsSigned );
}
case TypeCode.UInt64:
{
return typeCode.IsInteger && ( this._value < 0x8000000000000000L || !typeCode.IsSigned );
}
case TypeCode.Double:
{
return
typeCode.Type == typeof( float )
|| typeCode.Type == typeof( double );
}
}
return typeCode.Type == type;
}
/// <summary>
/// Get the value indicates whether this instance wraps raw binary (or string) or not.
/// </summary>
/// <value>This instance wraps raw binary (or string) then true.</value>
public bool IsRaw
{
get { return !this.IsNil && ( this._handleOrTypeCode is MessagePackString ); }
}
/// <summary>
/// Get the value indicates whether this instance wraps list (array) or not.
/// </summary>
/// <value>This instance wraps list (array) then true.</value>
public bool IsList
{
get { return !this.IsNil && this._handleOrTypeCode is IList<MessagePackObject>; }
}
/// <summary>
/// Get the value indicates whether this instance wraps list (array) or not.
/// </summary>
/// <value>This instance wraps list (array) then true.</value>
public bool IsArray
{
get { return this.IsList; }
}
/// <summary>
/// Get the value indicates whether this instance wraps dictionary (map) or not.
/// </summary>
/// <value>This instance wraps dictionary (map) then true.</value>
public bool IsDictionary
{
get { return !this.IsNil && this._handleOrTypeCode is IDictionary<MessagePackObject, MessagePackObject>; }
}
/// <summary>
/// Get the value indicates whether this instance wraps dictionary (map) or not.
/// </summary>
/// <value>This instance wraps dictionary (map) then true.</value>
public bool IsMap
{
get { return this.IsDictionary; }
}
/// <summary>
/// Get underlying type of this instance.
/// </summary>
/// <returns>Underlying <see cref="Type"/>.</returns>
public Type UnderlyingType
{
get
{
if ( this._handleOrTypeCode == null )
{
return null;
}
var typeCode = this._handleOrTypeCode as ValueTypeCode;
if ( typeCode == null )
{
var asMps = this._handleOrTypeCode as MessagePackString;
if ( asMps != null )
{
return asMps.GetUnderlyingType();
}
else
{
return this._handleOrTypeCode.GetType();
}
}
else
{
return typeCode.Type;
}
}
}
#endregion -- Type Of Methods --
/// <summary>
/// Pack this instance itself using specified <see cref="Packer"/>.
/// </summary>
/// <param name="packer"><see cref="Packer"/>.</param>
/// <param name="options">Packing options. This value can be null.</param>
/// <exception cref="ArgumentNullException"><paramref name="packer"/> is null.</exception>
public void PackToMessage( Packer packer, PackingOptions options )
{
if ( packer == null )
{
throw new ArgumentNullException( "packer" );
}