summaryrefslogtreecommitdiff
path: root/Tools/Java/Source/PcdTools/org/tianocore/pcd/entity/Token.java
blob: 74f55ddec31748b75e9528c4f07496757e775739 (plain)
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
/** @file
  Token class.

  This module contains all classes releted to PCD token.

Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution.  The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php

THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

**/
package org.tianocore.pcd.entity;

import java.math.BigInteger;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
   This class is to descript a PCD token object. The information of a token mainly
   comes from MSA, SPD and setting produced by platform developer.
**/
public class Token {
    ///
    /// Enumeration macro defintion for PCD type.
    ///
    public static enum      PCD_TYPE {FEATURE_FLAG, FIXED_AT_BUILD, PATCHABLE_IN_MODULE, DYNAMIC,
                                      DYNAMIC_EX, UNKNOWN}

    ///
    /// Enumeration macro definition for datum type. All type mainly comes from ProcessBind.h.
    /// Wizard maybe expand this type as "int, unsigned int, short, unsigned short etc" in
    /// prompt dialog.
    ///
    public static enum      DATUM_TYPE {UINT8, UINT16, UINT32, UINT64, BOOLEAN, POINTER, UNKNOWN}

    ///
    /// Enumeration macor defintion for usage of PCD
    ///
    public static enum      PCD_USAGE {ALWAYS_PRODUCED, ALWAYS_CONSUMED, SOMETIMES_PRODUCED,
                                       SOMETIMES_CONSUMED, UNKNOWN}

    ///
    /// cName is to identify a PCD entry and will be used for generating autogen.h/autogen.c.
    /// cName will be defined in MSA, SPD and FPD, can be regarded as primary key with token space guid.
    ///
    public String           cName;

    ///
    /// Token space name is the guid defined by token itself in package or module level. This
    /// name mainly for DynamicEx type. For other PCD type token, his token space name is the
    /// assignedtokenSpaceName as follows.
    /// tokenSpaceName is defined in MSA, SPD, FPD, can be regarded as primary key with cName.
    ///
    public String           tokenSpaceName;

    ///
    /// tokenNumber is allocated by platform. tokenNumber indicate an index for this token in
    /// platform token space. For Dynamic, dynamicEx type, this number will be re-adjust by
    /// PCD run-time database autogen tools.
    ///
    public long             tokenNumber;

    ///
    /// This token number is retrieved from FPD file for DynamicEx type.
    ///
    public long             dynamicExTokenNumber;

    ///
    /// All supported PCD type, this value can be retrieved from SPD
    /// Currently, only record all PCD type for this token in FPD file.
    ///
    public List<PCD_TYPE>   supportedPcdType;

    ///
    /// If the token's item type is Dynamic or DynamicEx type, isDynamicPCD
    /// is true.
    ///
    public boolean          isDynamicPCD;

    ///
    /// datumSize is to descript the fix size or max size for this token.
    /// datumSize is defined in SPD.
    ///
    public int              datumSize;

    ///
    /// datum type is to descript what type can be expressed by a PCD token.
    /// For same PCD used in different module, the datum type should be unique.
    /// So it belong memeber to Token class.
    ///
    public DATUM_TYPE       datumType;

    ///
    /// skuData contains all value for SkuNumber of token.
    /// This field is for Dynamic or DynamicEx type PCD,
    ///
    public List<SkuInstance> skuData;

    ///
    /// consumers array record all module private information who consume this PCD token.
    ///
    public Map<String, UsageInstance>  consumers;

    /**
       Constructure function for Token class

       @param cName             The name of token
       @param tokenSpaceName    The name of token space, it is a guid string
    **/
    public Token(String cName, String tokenSpaceName) {
        this.cName                  = cName;
        this.tokenSpaceName         = tokenSpaceName;
        this.tokenNumber            = 0;
        this.datumType              = DATUM_TYPE.UNKNOWN;
        this.datumSize              = -1;
        this.skuData                = new ArrayList<SkuInstance>();

        this.consumers              = new HashMap<String, UsageInstance>();
        this.supportedPcdType       = new ArrayList<PCD_TYPE>();
    }

    /**
      updateSupportPcdType

      SupportPcdType should be gotten from SPD file actually, but now it just
      record all PCD type for this token in FPD file.

      @param pcdType    new PCD type found in FPD file for this token.
    **/
    public void updateSupportPcdType(PCD_TYPE pcdType) {
        int size = supportedPcdType.size();
        for (int index = 0; index < size; index++) {
            if (supportedPcdType.get(index) == pcdType) {
                return;
            }
        }

        //
        // If not found, add the pcd type to member variable supportedPcdType
        //
        supportedPcdType.add(pcdType);
    }

    /**
       Judge whether pcdType is belong to dynamic type. Dynamic type includes
       DYNAMIC and DYNAMIC_EX.

       @param pcdType       the judged pcd type

       @return boolean
    **/
    public static boolean isDynamic(PCD_TYPE pcdType) {
        if ((pcdType == PCD_TYPE.DYNAMIC   ) ||
            (pcdType == PCD_TYPE.DYNAMIC_EX)) {
            return true;
        }

        return false;
    }

    /**
       The pcd type is DynamicEx?

       @retval true     Is DynamicEx type
       @retval false    not DynamicEx type
    **/
    public boolean isDynamicEx() {
        int size = supportedPcdType.size();
        for (int i = 0; i < size; i++) {
            if (supportedPcdType.get(i) == PCD_TYPE.DYNAMIC_EX) {
                return true;
            }
        }

        return false;
    }

    /**
      Use "TokencName + "-" + SpaceTokenName" as primary key when adding token into database

      @param   cName                     Token name.
      @param   tokenSpaceName            The token space guid string defined in MSA or SPD

      @retval  primary key for this token in token database.
    **/
    public static String getPrimaryKeyString(String cName, String tokenSpaceName) {
        if (tokenSpaceName == null) {
            return cName + "_nullTokenSpaceGuid";
        } else {
            return cName + "_" + tokenSpaceName.toString().replace('-', '_').toLowerCase();
        }
    }

    /**
       If skudata list contains more than one data, then Sku mechanism is enable.

       @retval boolean  if the number of sku data exceed to 1
    **/
    public boolean isSkuEnable() {
        if (this.skuData.size() > 1) {
            return true;
        }
        return false;
    }

    /**
       If Hii type for value of token

       @return boolean
    **/
    public boolean isHiiEnable() {
        if (getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.HII_TYPE) {
            return true;
        }
        return false;
    }

    /**
       If Vpd type for value of token

       @return boolean
    **/
    public boolean isVpdEnable() {
        if (getDefaultSku().type == DynamicTokenValue.VALUE_TYPE.VPD_TYPE) {
            return true;
        }
        return false;
    }

    /**
       Get the token primary key in token database.

       @return String
    **/
    public String getPrimaryKeyString () {
        return Token.getPrimaryKeyString(cName, tokenSpaceName);
    }

    /**
      Judge datumType is valid

      @param type  The datumType want to be judged.

      @retval TRUE  - The type is valid.
      @retval FALSE - The type is invalid.
    **/
    public static boolean isValiddatumType(DATUM_TYPE type) {
        if ((type.ordinal() < DATUM_TYPE.UINT8.ordinal() ) ||
            (type.ordinal() > DATUM_TYPE.POINTER.ordinal())) {
            return false;
        }
        return true;
    }

    /**
      Judge pcdType is valid

      @param  type The PCdType want to be judged.

      @retval TRUE  - The type is valid.
      @retval FALSE - The type is invalid.
    **/
    public static boolean isValidpcdType(PCD_TYPE  type) {
        if ((type.ordinal() < PCD_TYPE.FEATURE_FLAG.ordinal() ) ||
            (type.ordinal() > PCD_TYPE.DYNAMIC_EX.ordinal())) {
            return false;
        }
        return true;
    }

    /**
      Add an usage instance for token

      @param usageInstance   The usage instance

      @retval TRUE  - Success to add usage instance.
      @retval FALSE - Fail to add usage instance
    **/
    public boolean addUsageInstance(UsageInstance usageInstance) {
        if (isUsageInstanceExist(usageInstance.usageId)) {
            return false;
        }

        //
        // Put usage instance into usage instance database of this PCD token.
        //
        consumers.put(usageInstance.getPrimaryKey(), usageInstance);

        return true;
    }

    /**
       Judge whether exist an usage instance for this token

       @param usageId       The UsageInstance identification for usage instance

       @return boolean      whether exist an usage instance for this token.
    **/
    public boolean isUsageInstanceExist(UsageIdentification usageId) {
        String keyStr = UsageInstance.getPrimaryKey(usageId);

        return (consumers.get(keyStr) != null);
    }

    /**
      Get the PCD_TYPE according to the string of PCD_TYPE

      @param pcdTypeStr    The string of PCD_TYPE

      @return PCD_TYPE
    **/
    public static PCD_TYPE getPcdTypeFromString(String pcdTypeStr) {
        if (pcdTypeStr == null) {
            return PCD_TYPE.UNKNOWN;
        }

        if (pcdTypeStr.equalsIgnoreCase("FEATURE_FLAG")) {
            return PCD_TYPE.FEATURE_FLAG;
        } else if (pcdTypeStr.equalsIgnoreCase("FIXED_AT_BUILD")) {
            return PCD_TYPE.FIXED_AT_BUILD;
        } else if (pcdTypeStr.equalsIgnoreCase("PATCHABLE_IN_MODULE")) {
            return PCD_TYPE.PATCHABLE_IN_MODULE;
        } else if (pcdTypeStr.equalsIgnoreCase("DYNAMIC")) {
            return PCD_TYPE.DYNAMIC;
        } else if (pcdTypeStr.equalsIgnoreCase("DYNAMIC_EX")) {
            return PCD_TYPE.DYNAMIC_EX;
        } else {
            return PCD_TYPE.UNKNOWN;
        }
    }

    /**
      Get the string of given datumType. This string will be used for generating autogen files

      @param datumType   Given datumType

      @return The string of datum type.
    **/
    public static String getStringOfdatumType(DATUM_TYPE  datumType) {
        return datumType.toString();
    }

    /**
      Get the datumType according to a string.

      @param datumTypeStr    The string of datumType

      @return DATUM_TYPE
    **/
    public static DATUM_TYPE getdatumTypeFromString(String datumTypeStr) {
        if (datumTypeStr.equalsIgnoreCase("UINT8")) {
            return DATUM_TYPE.UINT8;
        } else if (datumTypeStr.equalsIgnoreCase("UINT16")) {
            return DATUM_TYPE.UINT16;
        } else if (datumTypeStr.equalsIgnoreCase("UINT32")) {
            return DATUM_TYPE.UINT32;
        } else if (datumTypeStr.equalsIgnoreCase("UINT64")) {
            return DATUM_TYPE.UINT64;
        } else if (datumTypeStr.equalsIgnoreCase("VOID*")) {
            return DATUM_TYPE.POINTER;
        } else if (datumTypeStr.equalsIgnoreCase("BOOLEAN")) {
            return DATUM_TYPE.BOOLEAN;
        }
        return DATUM_TYPE.UNKNOWN;
    }

    /**
      Get string of given pcdType

      @param pcdType  The given PcdType

      @return The string of PCD_TYPE.
    **/
    public static String getStringOfpcdType(PCD_TYPE pcdType) {
        return pcdType.toString();
    }

    /**
      Get the PCD_USAGE according to a string

      @param usageStr  The string of PCD_USAGE

      @return The PCD_USAGE
    **/
    public static PCD_USAGE getUsageFromString(String usageStr) {
        if (usageStr == null) {
            return PCD_USAGE.UNKNOWN;
        }

        if (usageStr.equalsIgnoreCase("ALWAYS_PRODUCED")) {
            return PCD_USAGE.ALWAYS_PRODUCED;
        } else if (usageStr.equalsIgnoreCase("SOMETIMES_PRODUCED")) {
            return PCD_USAGE.SOMETIMES_PRODUCED;
        } else if (usageStr.equalsIgnoreCase("ALWAYS_CONSUMED")) {
            return PCD_USAGE.ALWAYS_CONSUMED;
        } else if (usageStr.equalsIgnoreCase("SOMETIMES_CONSUMED")) {
            return PCD_USAGE.SOMETIMES_CONSUMED;
        }

        return PCD_USAGE.UNKNOWN;
    }

    /**
      Get the string of given PCD_USAGE

      @param   usage   The given PCD_USAGE

      @return The string of PDC_USAGE.
    **/
    public static String getStringOfUsage(PCD_USAGE usage) {
        return usage.toString();
    }

    /**
      Get the Defined datumType string for autogen. The string is for generating some MACROs in Autogen.h

      @param datumType The given datumType

      @return string of datum type for autogen.
    **/
    public static String GetAutogenDefinedatumTypeString(DATUM_TYPE datumType) {
        switch (datumType) {

        case UINT8:
            return "8";
        case UINT16:
            return "16";
        case BOOLEAN:
            return "BOOL";
        case POINTER:
            return "PTR";
        case UINT32:
            return "32";
        case UINT64:
            return "64";
        default:
            return null;
        }
    }

    /**
      Get the datumType String for Autogen. This string will be used for generating defintions of PCD token in autogen

      @param datumType   The given datumType

      @return string of datum type.
    **/

    public static String getAutogendatumTypeString(DATUM_TYPE datumType) {
        switch (datumType) {
        case UINT8:
            return "UINT8";
        case UINT16:
            return "UINT16";
        case UINT32:
            return "UINT32";
        case UINT64:
            return "UINT64";
        case POINTER:
            return "VOID*";
        case BOOLEAN:
            return "BOOLEAN";
        }
        return null;
    }

    /**
      Get the datumType string for generating some MACROs in autogen file of Library

      @param   datumType  The given datumType

      @return String of datum for genrating bit charater.
    **/
    public static String getAutogenLibrarydatumTypeString(DATUM_TYPE datumType) {
        switch (datumType) {
        case UINT8:
            return "8";
        case UINT16:
            return "16";
        case BOOLEAN:
            return "Bool";
        case POINTER:
            return "Ptr";
        case UINT32:
            return "32";
        case UINT64:
            return "64";
        default:
            return null;
        }
    }

    /**
       Get the sku data who id is 0.

       @retval DynamicTokenValue    the value of this dyanmic token.
    **/
    public DynamicTokenValue getDefaultSku() {
        int index;
        int size = skuData.size();
        for (index = 0; index < size; index++) {
            if (skuData.get(index).id == 0) {
                return skuData.get(index).value;
            }
        }

        return null;
    }

    /**
       Get the number of Sku data for this token

       @retval int the number of sku data
    **/
    public int getSkuIdCount () {
        return this.skuData.size();
    }

    /**
       Get the size of PCD value, this PCD is POINTER type.

       @param str   the string of the value
       @param al    the array list for outer parameter.
    **/
    private void getCurrentSizeFromDefaultValue (String str, ArrayList<Integer> al) {
        if (isValidNullValue(str)) {
            al.add(new Integer(0));
        } else {
            //
            // isValidNullValue has already make sure that str here
            // always contain a valid default value of the following 3
            // cases:
            // 1) "Hello world" //Assci string
            // 2) L"Hello" //Unicode string
            // 3) {0x01, 0x02, 0x03} //Byte stream
            //
            if (str.startsWith("\"")) {
                al.add(new Integer(str.length() - 2));
            } else if (str.startsWith("L\"")){
                //
                // Unicode is 2 bytes each.
                //
                al.add(new Integer((str.length() - 3) * 2));
            } else if (str.startsWith("{")) {
                //
                // We count the number of "," in the string.
                // The number of byte is one plus the number of
                // comma.
                //
                String str2 = str;

                int cnt = 0;
                int pos = 0;
                pos = str2.indexOf(",", 0);
                while (pos != -1) {
                    cnt++;
                    pos++;
                    pos = str2.indexOf(",", pos);
                }
                cnt++;
                al.add(new Integer(cnt));
            }
        }
    }

    /**
       This method can be used to get the MAX and current size
       for pointer type dynamic(ex) PCD entry
    **/
    public ArrayList<Integer> getPointerTypeSize () {
        ArrayList<Integer> al = new ArrayList<Integer>();

        //
        // For VPD_enabled and HII_enabled, we can only return the MAX size.
        // For the default DATA type dynamic PCD entry, we will return
        // the MAX size and current size for each SKU_ID.
        //
        al.add(new Integer(this.datumSize));

        if (!this.isVpdEnable()) {
            int idx;
            if (this.isHiiEnable()){
                for (idx = 0; idx < this.skuData.size(); idx++) {
                    String str = this.skuData.get(idx).value.hiiDefaultValue;
                    getCurrentSizeFromDefaultValue(str, al);
                }
            } else {
                for (idx = 0; idx < this.skuData.size(); idx++) {
                    String str = this.skuData.get(idx).value.value;
                    getCurrentSizeFromDefaultValue(str, al);
                }
            }
        }

        return al;
    }

    /**
       Get default value for a token, For HII type, HiiDefaultValue of default
       SKU 0 will be returned; For Default type, the defaultvalue of default SKU
       0 will be returned.

       @return String get the default value for a DYNAMIC type PCD.
    **/
    public String getDynamicDefaultValue() {
        DynamicTokenValue dynamicData = getDefaultSku();
        if (hasDefaultValue()) {
            switch (dynamicData.type) {
            case DEFAULT_TYPE:
                return dynamicData.value;
            }
        }

        return null;
    }

    /**
        Judge whether a DYNAMIC PCD has default value.

        @return whether a DYNAMIC PCD has default value.
    **/
    public boolean hasDefaultValue () {
        DynamicTokenValue dynamicValue  = null;

        if (isSkuEnable()) {
            return true;
        }

        if (this.isDynamicPCD) {
            dynamicValue = getDefaultSku();
            switch (dynamicValue.type) {
            case HII_TYPE:
                return true;
            case VPD_TYPE:
                return true;
            case DEFAULT_TYPE:
                return !isValidNullValue(dynamicValue.value);
            }
        }

        return false;
    }

    /**
       Judge the value is NULL value. NULL value means the value is uninitialized value

       @param judgedValue   the want want to be judged

       @return boolean  whether the value of PCD is NULL.
    **/
    public boolean isValidNullValue(String judgedValue) {
        String      subStr;
        BigInteger  bigIntValue;

        switch (datumType) {
        case UINT8:
        case UINT16:
        case UINT32:
            if (judgedValue.length() > 2) {
                if ((judgedValue.charAt(0) == '0')        &&
                    ((judgedValue.charAt(1) == 'x') || (judgedValue.charAt(1) == 'X'))){
                    subStr      = judgedValue.substring(2, judgedValue.length());
                    bigIntValue = new BigInteger(subStr, 16);
                } else {
                    bigIntValue = new BigInteger(judgedValue);
                }
            } else {
                bigIntValue = new BigInteger(judgedValue);
            }
            if (bigIntValue.bitCount() == 0) {
                return true;
            }
            break;
        case UINT64:
            if (judgedValue.length() > 2){
                if ((judgedValue.charAt(0) == '0') &&
                    ((judgedValue.charAt(1) == 'x') ||
                     (judgedValue.charAt(1) == 'X'))) {
                    bigIntValue = new BigInteger(judgedValue.substring(2, judgedValue.length()),  16);
                    if (bigIntValue.bitCount() == 0) {
                        return true;
                    }
                } else {
                    bigIntValue = new BigInteger(judgedValue);
                    if (bigIntValue.bitCount() == 0) {
                        return true;
                    }
                }
            } else  {
                bigIntValue = new BigInteger(judgedValue);
                if (bigIntValue.bitCount() == 0) {
                    return true;
                }
            }
            break;
        case BOOLEAN:
            if (judgedValue.equalsIgnoreCase("false")) {
                return true;
            }
            break;
        case POINTER:
            if (judgedValue.equalsIgnoreCase("\"\"")   ||
                judgedValue.equalsIgnoreCase("L\"\"")   ||
                (judgedValue.length() == 0)) {
                return true;
            } else if (judgedValue.trim().charAt(0) == '{') {
                int       start         = judgedValue.indexOf('{');
                int       end           = judgedValue.lastIndexOf('}');
                String[]  strValueArray = judgedValue.substring(start + 1, end).split(",");
                if (strValueArray.length > 1) {
                    return false;
                } else {
                    if (strValueArray[0].matches("(0x)?(0X)?0*")) {
                        return true;
                    }
                }
            }
        }
        return false;
    }

    /**
       Is the string value in Unicode

       @return boolean the string value is UNICODE type string.
    **/
    public boolean isHiiDefaultValueUnicodeStringType() {
        DynamicTokenValue dynamicData = getDefaultSku();

        if (dynamicData == null)
            return false;

        return dynamicData.hiiDefaultValue.startsWith("L\"")
                && dynamicData.hiiDefaultValue.endsWith("\"");
    }

    /**
       Is the string value in ANSCI

       @return boolean whether the dfault value for HII case is string type.
    **/
    public boolean isHiiDefaultValueASCIIStringType() {
        DynamicTokenValue dynamicData = getDefaultSku();

        if (dynamicData == null)
            return false;

        return dynamicData.hiiDefaultValue.startsWith("\"")
        && dynamicData.hiiDefaultValue.endsWith("\"");
    }

    /**
       Judege whether current value is UNICODE string type.

       @return boolean whether the value is UNICODE string.
    **/
    public boolean isUnicodeStringType () {
        String str = getDynamicDefaultValue();

        if (str == null) {
            return false;
        }

        if (datumType == Token.DATUM_TYPE.POINTER &&
            str.startsWith("L\"") &&
            str.endsWith("\"")) {
            return true;
        }

        return false;
    }

    /**
       Judge whether the string type is ANSIC string.

       @return boolean whether the string type is ANSIC string
    **/
    public boolean isASCIIStringType () {
        String str = getDynamicDefaultValue();

        if (str == null) {
            return false;
        }

        if (datumType == Token.DATUM_TYPE.POINTER &&
            str.startsWith("\"") &&
            str.endsWith("\"")) {
            return true;
        }

        return false;
    }

    /**
       Judge whether the string value is byte array.

       @return boolean  whether the string value is byte array.

    **/
    public boolean isByteStreamType () {
        String str = getDynamicDefaultValue();

        if (str == null) {
            return false;
        }

        if (datumType == Token.DATUM_TYPE.POINTER &&
            str.startsWith("{") &&
            str.endsWith("}")) {
            return true;
        }

        return false;

    }

    /**
       Get string value for ANSIC string type

       @return String the string value
    **/
    public String getStringTypeString () {
        return getDefaultSku().value.substring(2, getDefaultSku().value.length() - 1);
    }

    /**
       Judge whether a datum string is byte array.
       
       @param datum             datum string
       
       @return boolean          true - is byte array, false - not byte array
    **/
    public static boolean isByteArrayDatum(String datum) {
        if (datum == null) {
            return false;
        }

        String trimedStr = datum.trim();

        if (trimedStr.length() == 0) {
            return false;
        }

        if (trimedStr.startsWith("{") && 
            trimedStr.endsWith("}")) {
            return true;
        }

        return false;
    }

    /**
       Judge whether a datum string is unicode.
       
       @param datum             datum string
       
       @return boolean          true - is unicode, false - not unicode
    **/
    public static boolean isUnicodeDatum(String datum) {
        if (datum  == null) {
            return false;
        }

        String trimedStr = datum.trim();
        if (trimedStr.length() == 0) {
            return false;
        }

        if (trimedStr.startsWith("L")  &&
            trimedStr.charAt(1) == '"' &&
            trimedStr.endsWith("\"")) {
            return true;
        }

        return false;
    }

    /**
       Judge whether a datum string is ANSCI string.
       
       @param datum             datum string
       
       @return boolean          true - is ANSIC, false - not ANSIC
    **/
    public static boolean isAnsciDatum(String datum) {
        if (datum == null) {
            return false;
        }

        String trimedStr = datum.trim();

        if (trimedStr.length() == 0) {
            return false;
        }

        if (datum.startsWith("\"") &&
            datum.endsWith("\"")) {
            return true;
        }

        return false;
    }

    /**
       Get byte array string for POINTER type Datum.
       
       @param datum         the datum whose type is POINTER
       
       @return String       the byte array string
    **/
    public String getByteArrayForPointerDatum(String datum) {
        String byteArray = "{";

        if (datumType != Token.DATUM_TYPE.POINTER) {
            return null;
        }

        if (Token.isAnsciDatum(datum)) {
            String trimedStr = datum.trim();
            trimedStr = trimedStr.substring(1, trimedStr.length() - 1);
            char charArray[] = trimedStr.toCharArray();
            for (int index = 0; index < charArray.length; index++) {
                byteArray += String.format("0x%02x ", (byte)charArray[index]);
                if (index != (charArray.length - 1)) {
                    byteArray += ",";
                }
            }
        } else if (Token.isUnicodeDatum(datum)) {
            String trimedStr = datum.trim();
            trimedStr = trimedStr.substring(2, trimedStr.length() - 1);
            for (int index = 0; index < trimedStr.length(); index++) {
                short unicodeVal = (short)trimedStr.codePointAt(index);
                byteArray += String.format("0x%02x, 0x%02x", 
                                           (byte)unicodeVal,
                                           (byte)((unicodeVal & 0xFF00) >> 8));
                if (index != (trimedStr.length() - 1)) {
                    byteArray += " ,";
                }
            }
        } else if (Token.isByteArrayDatum(datum)){
            return datum;
        } else {
            return null;
        }

        byteArray += "}";

        return byteArray;
    }
}