summaryrefslogtreecommitdiff
path: root/src/plugins/common/src/com/motorola/studio/android/model/manifest/parser/AndroidManifestNodeParser.java
blob: 0cd1e25f55fec5a127eafbbc5d4c5952c222f81f (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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
/*
* Copyright (C) 2012 The Android Open Source Project
*
* 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.
*/
package com.motorola.studio.android.model.manifest.parser;

import java.util.LinkedList;
import java.util.List;

import org.eclipse.osgi.util.NLS;
import org.w3c.dom.Comment;
import org.w3c.dom.NamedNodeMap;

import com.motorola.studio.android.common.log.StudioLogger;
import com.motorola.studio.android.common.utilities.i18n.UtilitiesNLS;
import com.motorola.studio.android.model.manifest.dom.AbstractBuildingBlockNode;
import com.motorola.studio.android.model.manifest.dom.AbstractIconLabelNameNode;
import com.motorola.studio.android.model.manifest.dom.AbstractSimpleNameNode;
import com.motorola.studio.android.model.manifest.dom.ActionNode;
import com.motorola.studio.android.model.manifest.dom.ActivityAliasNode;
import com.motorola.studio.android.model.manifest.dom.ActivityNode;
import com.motorola.studio.android.model.manifest.dom.ApplicationNode;
import com.motorola.studio.android.model.manifest.dom.CategoryNode;
import com.motorola.studio.android.model.manifest.dom.CommentNode;
import com.motorola.studio.android.model.manifest.dom.DataNode;
import com.motorola.studio.android.model.manifest.dom.GrantUriPermissionNode;
import com.motorola.studio.android.model.manifest.dom.IAndroidManifestProperties;
import com.motorola.studio.android.model.manifest.dom.InstrumentationNode;
import com.motorola.studio.android.model.manifest.dom.IntentFilterNode;
import com.motorola.studio.android.model.manifest.dom.ManifestNode;
import com.motorola.studio.android.model.manifest.dom.MetadataNode;
import com.motorola.studio.android.model.manifest.dom.PermissionGroupNode;
import com.motorola.studio.android.model.manifest.dom.PermissionNode;
import com.motorola.studio.android.model.manifest.dom.PermissionTreeNode;
import com.motorola.studio.android.model.manifest.dom.ProviderNode;
import com.motorola.studio.android.model.manifest.dom.ReceiverNode;
import com.motorola.studio.android.model.manifest.dom.ServiceNode;
import com.motorola.studio.android.model.manifest.dom.UnknownNode;
import com.motorola.studio.android.model.manifest.dom.UsesFeatureNode;
import com.motorola.studio.android.model.manifest.dom.UsesLibraryNode;
import com.motorola.studio.android.model.manifest.dom.UsesPermissionNode;
import com.motorola.studio.android.model.manifest.dom.UsesSDKNode;

/**
 * Abstract class that contains methods to parse the AndroidManifest.xml file nodes
 */
abstract class AndroidManifestNodeParser implements IAndroidManifestProperties
{
    /**
     * Errors when parsing
     */
    protected final List<String> parseErrors;

    /**
     * Default constructor
     */
    public AndroidManifestNodeParser()
    {
        parseErrors = new LinkedList<String>();
    }

    /**
     * Parses a <manifest> node
     * 
     * @param attributes The node attributes
     * @return a ManifestNode object corresponding to the node
     */
    protected ManifestNode parseManifestNode(NamedNodeMap attributes)
    {
        ManifestNode manifestNode = new ManifestNode("");
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_PACKAGE))
            {
                manifestNode.setPackage(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_SHAREDUSERID))
            {
                manifestNode.setSharedUserId(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_VERSIONCODE))
            {
                Integer versionCode;

                try
                {
                    versionCode = Integer.parseInt(attrValue);
                }
                catch (NumberFormatException nfe)
                {
                    versionCode = 1;
                    String errMsg =
                            NLS.bind(
                                    UtilitiesNLS.ERR_AndroidManifestNodeParser_ErrorParsingVersionCode,
                                    attrValue, versionCode.toString());
                    parseErrors.add(errMsg);
                    StudioLogger.error(AndroidManifestNodeParser.class, errMsg, nfe);
                }

                manifestNode.setVersionCode(versionCode);
            }
            else if (attrName.equalsIgnoreCase(PROP_VERSIONNAME))
            {
                manifestNode.setVersionName(attrValue);
            }
            else if (!attrName.equalsIgnoreCase(PROP_XMLNS))
            {
                manifestNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return manifestNode;
    }

    /**
     * Parses an <uses-permission> node
     * 
     * @param attributes The node attributes
     * @return a UsesPermissionNode object corresponding to the node
     */
    protected UsesPermissionNode parseUsesPermissionNode(NamedNodeMap attributes)
    {
        UsesPermissionNode usesPermissionNode = new UsesPermissionNode("");
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_NAME))
            {
                usesPermissionNode.setName(attrValue);
            }
            else
            {
                usesPermissionNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return usesPermissionNode;
    }

    /**
     * Parses a <permission> node
     * 
     * @param attributes The node attributes
     * @return a PermissionNode object corresponding to the node
     */
    protected PermissionNode parsePermissionNode(NamedNodeMap attributes)
    {
        PermissionNode permissionNode = new PermissionNode("");
        String attrName, attrValue;

        parseAbstractIconLabelNameNode(attributes, permissionNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_DESCRIPTION))
            {
                permissionNode.setDescription(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PERMISSIONGROUP))
            {
                permissionNode.setPermissionGroup(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PROTECTIONLEVEL))
            {
                permissionNode.setProtectionLevel(PermissionNode.getProtectionLevel(attrValue));
            }
            else
            {
                permissionNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return permissionNode;
    }

    /**
     * Parses a <permission-tree> node
     * 
     * @param attributes The node attributes
     * @return a PermissionTreeNode object corresponding to the node
     */
    protected PermissionTreeNode parsePermissionTreeNode(NamedNodeMap attributes)
    {
        PermissionTreeNode permissionTreeNode = new PermissionTreeNode("");
        String attrName, attrValue;

        parseAbstractIconLabelNameNode(attributes, permissionTreeNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();
            permissionTreeNode.addUnknownProperty(attrName, attrValue);
        }

        return permissionTreeNode;
    }

    /**
     * Parses a <permission-group> node
     * 
     * @param attributes The node attributes
     * @return a PermissionGroupNode object corresponding to the node
     */
    protected PermissionGroupNode parsePermissionGroupNode(NamedNodeMap attributes)
    {
        PermissionGroupNode permissionGroupNode = new PermissionGroupNode("");
        String attrName, attrValue;

        parseAbstractIconLabelNameNode(attributes, permissionGroupNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_DESCRIPTION))
            {
                permissionGroupNode.setDescription(attrValue);
            }
            else
            {
                permissionGroupNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return permissionGroupNode;
    }

    /**
     * Parses an <instrumentation> node
     * 
     * @param attributes The node attributes
     * @return an InstrumentationNode object corresponding to the node
     */
    protected InstrumentationNode parseInstrumentationNode(NamedNodeMap attributes)
    {
        InstrumentationNode instrumentationNode = new InstrumentationNode("");
        String attrName, attrValue;

        parseAbstractIconLabelNameNode(attributes, instrumentationNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_FUNCTIONALTEST))
            {
                Boolean functionalTest = Boolean.parseBoolean(attrValue);
                instrumentationNode.setFunctionalTest(functionalTest);
            }
            else if (attrName.equalsIgnoreCase(PROP_HANDLEPROFILING))
            {
                Boolean handleProfiling = Boolean.parseBoolean(attrValue);
                instrumentationNode.setHandleProfiling(handleProfiling);
            }
            else if (attrName.equalsIgnoreCase(PROP_TARGETPACKAGE))
            {
                instrumentationNode.setTargetPackage(attrValue);
            }
            else
            {
                instrumentationNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return instrumentationNode;
    }

    /**
     * Parses an <uses-sdk> node
     * 
     * @param attributes The node attributes
     * @return an UsesNode object corresponding to the node
     */
    protected UsesSDKNode parseUsesSdkNode(NamedNodeMap attributes)
    {
        UsesSDKNode usesSDKNode = new UsesSDKNode();
        String attrName, attrValue;
        String minSdkVersion;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_MINSDKVERSION))
            {
                minSdkVersion = attrValue;
                usesSDKNode.setMinSdkVersion(minSdkVersion);
            }
            else if (attrName.equalsIgnoreCase(PROP_MAXSDKVERSION))
            {
                usesSDKNode.setPropMaxSdkVersion(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_TARGETSDKVERSION))
            {
                usesSDKNode.setPropTargetSdkVersion(attrValue);
            }
            else
            {
                usesSDKNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return usesSDKNode;
    }

    /**
     * Parses an <application> node
     * 
     * @param attributes The node attributes
     * @return an ApplicationNode object corresponding to the node
     */
    protected ApplicationNode parseApplicationNode(NamedNodeMap attributes)
    {
        ApplicationNode applicationNode = new ApplicationNode("");
        String attrName, attrValue;

        parseAbstractIconLabelNameNode(attributes, applicationNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_ALLOWCLEARUSERDATA))
            {
                Boolean allowClearUserData = Boolean.parseBoolean(attrValue);
                applicationNode.setAllowClearUserData(allowClearUserData);
            }
            else if (attrName.equalsIgnoreCase(PROP_ALLOWTASKREPARENTING))
            {
                Boolean allowTaskReparentig = Boolean.parseBoolean(attrValue);
                applicationNode.setAllowTaskReparenting(allowTaskReparentig);
            }
            else if (attrName.equalsIgnoreCase(PROP_DEBUGGABLE))
            {
                Boolean debbugable = Boolean.parseBoolean(attrValue);
                applicationNode.setDebuggable(debbugable);
            }
            else if (attrName.equalsIgnoreCase(PROP_DESCRIPTION))
            {
                applicationNode.setDescription(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_ENABLED))
            {
                Boolean enabled = Boolean.parseBoolean(attrValue);
                applicationNode.setEnabled(enabled);
            }
            else if (attrName.equalsIgnoreCase(PROP_HASCODE))
            {
                Boolean hasCode = Boolean.parseBoolean(attrValue);
                applicationNode.setHasCode(hasCode);
            }
            else if (attrName.equalsIgnoreCase(PROP_MANAGESPACEACTIVITY))
            {
                applicationNode.setManageSpaceActivity(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PERMISSION))
            {
                applicationNode.setPermission(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PERSISTENT))
            {
                Boolean persistent = Boolean.parseBoolean(attrValue);
                applicationNode.setPersistent(persistent);
            }
            else if (attrName.equalsIgnoreCase(PROP_PROCESS))
            {
                applicationNode.setProcess(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_TASKAFFINITY))
            {
                applicationNode.setTaskAffinity(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_THEME))
            {
                applicationNode.setTheme(attrValue);
            }
            else
            {
                applicationNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return applicationNode;
    }

    /**
     * Parses an <activity> node
     * 
     * @param attributes The node attributes
     * @return an ActivityNode object corresponding to the node
     */
    protected ActivityNode parseActivityNode(NamedNodeMap attributes)
    {
        ActivityNode activityNode = new ActivityNode("");
        String attrName, attrValue;

        parseAbstractBuildingBlockNode(attributes, activityNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_ALLOWTASKREPARENTING))
            {
                Boolean allowTaskReparentig = Boolean.parseBoolean(attrValue);
                activityNode.setAllowTaskReparenting(allowTaskReparentig);
            }
            else if (attrName.equalsIgnoreCase(PROP_ALWAYSRETAINTASKSTATE))
            {
                Boolean alwaysRetainTaskState = Boolean.parseBoolean(attrValue);
                activityNode.setAlwaysRetainTaskState(alwaysRetainTaskState);
            }
            else if (attrName.equalsIgnoreCase(PROP_CLEARTASKONLAUNCH))
            {
                Boolean clearTaskOnLaunch = Boolean.parseBoolean(attrValue);
                activityNode.setClearTaskOnLaunch(clearTaskOnLaunch);
            }
            else if (attrName.equalsIgnoreCase(PROP_CONFIGCHANGES))
            {
                String configChanges[] = attrValue.split("\\|");

                for (String configChange : configChanges)
                {
                    activityNode.addConfigChanges(ActivityNode
                            .getConfigChangeFromName(configChange));
                }
            }
            else if (attrName.equalsIgnoreCase(PROP_EXCLUDEFROMRECENTS))
            {
                Boolean excludeFromRecents = Boolean.parseBoolean(attrValue);
                activityNode.setExcludeFromRecents(excludeFromRecents);
            }
            else if (attrName.equalsIgnoreCase(PROP_FINISHONTASKLAUNCH))
            {
                Boolean finishOnTaskLaunch = Boolean.parseBoolean(attrValue);
                activityNode.setFinishOnTaskLaunch(finishOnTaskLaunch);
            }
            else if (attrName.equalsIgnoreCase(PROP_LAUNCHMODE))
            {
                activityNode.setLaunchMode(ActivityNode.getLaunchModeFromName(attrValue));
            }
            else if (attrName.equalsIgnoreCase(PROP_MULTIPROCESS))
            {
                Boolean multiprocess = Boolean.parseBoolean(attrValue);
                activityNode.setMultiprocess(multiprocess);
            }
            else if (attrName.equalsIgnoreCase(PROP_SCREENORIENTATION))
            {
                activityNode.setScreenOrientation(ActivityNode
                        .getScreenOrientationFromName(attrValue));
            }
            else if (attrName.equalsIgnoreCase(PROP_STATENOTNEEDED))
            {
                Boolean stateNotNeeded = Boolean.parseBoolean(attrValue);
                activityNode.setStateNotNeeded(stateNotNeeded);
            }
            else if (attrName.equalsIgnoreCase(PROP_TASKAFFINITY))
            {
                activityNode.setTaskAffinity(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_THEME))
            {
                activityNode.setTheme(attrValue);
            }
            else
            {
                activityNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return activityNode;
    }

    /**
     * Parses an <intent-filter> node
     * 
     * @param attributes The node attributes
     * @return an IntentFilterNode object corresponding to the node
     */
    protected IntentFilterNode parseIntentFilterNode(NamedNodeMap attributes)
    {
        IntentFilterNode intentFilterNode = new IntentFilterNode();
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_ICON))
            {
                intentFilterNode.setIcon(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_LABEL))
            {
                intentFilterNode.setLabel(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PRIORITY))
            {
                try
                {
                    Integer priority = Integer.parseInt(attrValue);
                    intentFilterNode.setPriority(priority);
                }
                catch (NumberFormatException nfe)
                {
                    String errMsg =
                            NLS.bind(
                                    UtilitiesNLS.ERR_AndroidManifestNodeParser_ErrorParsingPriority,
                                    attrValue);
                    parseErrors.add(errMsg);
                    StudioLogger.error(AndroidManifestNodeParser.class, errMsg, nfe);
                }
            }
            else
            {
                intentFilterNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return intentFilterNode;
    }

    /**
     * Parses an <action> node
     * 
     * @param attributes The node attributes
     * @return an ActionNode object corresponding to the node
     */
    protected ActionNode parseActionNode(NamedNodeMap attributes)
    {
        ActionNode actionNode = new ActionNode("");
        String attrName, attrValue;

        parseAbstractSimpleNameNode(attributes, actionNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            actionNode.addUnknownProperty(attrName, attrValue);
        }

        return actionNode;
    }

    /**
     * Parses a <category> node
     * 
     * @param attributes The node attributes
     * @return a CategoryNode object corresponding to the node
     */
    protected CategoryNode parseCategoryNode(NamedNodeMap attributes)
    {
        CategoryNode categoryNode = new CategoryNode("");
        String attrName, attrValue;

        parseAbstractSimpleNameNode(attributes, categoryNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            categoryNode.addUnknownProperty(attrName, attrValue);
        }

        return categoryNode;
    }

    /**
     * Parses a <data> node
     * 
     * @param attributes The node attributes
     * @return a DataNode object corresponding to the node
     */
    protected DataNode parseDataNode(NamedNodeMap attributes)
    {
        DataNode dataNode = new DataNode();
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_HOST))
            {
                dataNode.setHost(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_MIMETYPE))
            {
                dataNode.setMimeType(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PATH))
            {
                dataNode.setPath(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PATHPATTERN))
            {
                dataNode.setPathPattern(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PATHPREFIX))
            {
                dataNode.setPathPrefix(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PORT))
            {
                dataNode.setPort(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_SCHEME))
            {
                dataNode.setScheme(attrValue);
            }
            else
            {
                dataNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return dataNode;
    }

    /**
     * Parses a <metadata> node
     * 
     * @param attributes The node attributes
     * @return a MetadataNode object corresponding to the node
     */
    protected MetadataNode parseMetadataNode(NamedNodeMap attributes)
    {
        MetadataNode metadataNode = new MetadataNode("");
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_NAME))
            {
                metadataNode.setName(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_RESOURCE))
            {
                metadataNode.setResource(attrValue);
            }
            else if (attrName.equals(PROP_VALUE))
            {
                metadataNode.setValue(attrValue);
            }
            else
            {
                metadataNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return metadataNode;
    }

    /**
     * Parses an <activity-alias> node
     * 
     * @param attributes The node attributes
     * @return an ActivityNode object corresponding to the node
     */
    protected ActivityAliasNode parseActivityAliasNode(NamedNodeMap attributes)
    {
        ActivityAliasNode activityAliasNode = new ActivityAliasNode("", "");
        String attrName, attrValue;

        parseAbstractIconLabelNameNode(attributes, activityAliasNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_ENABLED))
            {
                Boolean enabled = Boolean.parseBoolean(attrValue);
                activityAliasNode.setEnabled(enabled);
            }
            else if (attrName.equalsIgnoreCase(PROP_EXPORTED))
            {
                Boolean exported = Boolean.parseBoolean(attrValue);
                activityAliasNode.setExported(exported);
            }
            else if (attrName.equalsIgnoreCase(PROP_PERMISSION))
            {
                activityAliasNode.setPermission(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_TARGETACTIVITY))
            {
                activityAliasNode.setTargetActivity(attrValue);
            }
            else
            {
                activityAliasNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return activityAliasNode;
    }

    /**
     * Parses a <service> node
     * 
     * @param attributes The node attributes
     * @return a ServiceNode object corresponding to the node
     */
    protected ServiceNode parseServiceNode(NamedNodeMap attributes)
    {
        ServiceNode serviceNode = new ServiceNode("");
        String attrName, attrValue;

        parseAbstractBuildingBlockNode(attributes, serviceNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            serviceNode.addUnknownProperty(attrName, attrValue);
        }

        return serviceNode;
    }

    /**
     * Parses a <receiver> node
     * 
     * @param attributes The node attributes
     * @return a ReceiverNode object corresponding to the node
     */
    protected ReceiverNode parseReceiverNode(NamedNodeMap attributes)
    {
        ReceiverNode receiverNode = new ReceiverNode("");
        String attrName, attrValue;

        parseAbstractBuildingBlockNode(attributes, receiverNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            receiverNode.addUnknownProperty(attrName, attrValue);
        }

        return receiverNode;
    }

    /**
     * Parses a <provider> node
     * 
     * @param attributes The node attributes
     * @return a ProviderNode object corresponding to the node
     */
    protected ProviderNode parseProviderNode(NamedNodeMap attributes)
    {
        ProviderNode providerNode = new ProviderNode("", "");
        String attrName, attrValue;

        parseAbstractBuildingBlockNode(attributes, providerNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_AUTHORITIES))
            {
                String[] authorities = attrValue.split(";");

                for (String authority : authorities)
                {
                    providerNode.addAuthority(authority);
                }

                providerNode.removeAuthority("");
            }
            else if (attrName.equalsIgnoreCase(PROP_GRANTURIPERMISSIONS))
            {
                Boolean grantUriPermissions = Boolean.parseBoolean(attrValue);
                providerNode.setGrantUriPermissions(grantUriPermissions);
            }
            else if (attrName.equalsIgnoreCase(PROP_INITORDER))
            {
                try
                {
                    Integer initOrder = Integer.parseInt(attrValue);
                    providerNode.setInitOrder(initOrder);
                }
                catch (NumberFormatException nfe)
                {
                    String errMsg =
                            NLS.bind(
                                    UtilitiesNLS.ERR_AndroidManifestNodeParser_ErrorParsingInitOrder,
                                    attrValue);
                    parseErrors.add(errMsg);
                    StudioLogger.error(AndroidManifestNodeParser.class, errMsg, nfe);
                }
            }
            else if (attrName.equalsIgnoreCase(PROP_MULTIPROCESS))
            {
                Boolean multiprocess = Boolean.parseBoolean(attrValue);
                providerNode.setMultiprocess(multiprocess);
            }
            else if (attrName.equalsIgnoreCase(PROP_READPERMISSION))
            {
                providerNode.setReadPermission(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_SYNCABLE))
            {
                Boolean syncable = Boolean.parseBoolean(attrValue);
                providerNode.setSyncable(syncable);
            }
            else if (attrName.equalsIgnoreCase(PROP_WRITEPERMISSION))
            {
                providerNode.setWritePermission(attrValue);
            }
            else
            {
                providerNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return providerNode;
    }

    /**
     * Parses a <grant-uri-permission> node
     * 
     * @param attributes The node attributes
     * @return a GrantUriPermissionNode object corresponding to the node
     */
    protected GrantUriPermissionNode parseGrantUriPermissionNode(NamedNodeMap attributes)
    {
        GrantUriPermissionNode grantUriPermissionNode = new GrantUriPermissionNode();
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_PATH))
            {
                grantUriPermissionNode.setPath(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PATHPATTERN))
            {
                grantUriPermissionNode.setPathPattern(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PATHPREFIX))
            {
                grantUriPermissionNode.setPathPrefix(attrValue);
            }
            else
            {
                grantUriPermissionNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return grantUriPermissionNode;
    }

    /**
     * Parses an <uses-library> node
     * 
     * @param attributes The node attributes
     * @return an UsesLibraryNode object corresponding to the node
     */
    protected UsesLibraryNode parseUsesLibraryNode(NamedNodeMap attributes)
    {
        UsesLibraryNode usesLibraryNode = new UsesLibraryNode("");
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_NAME))
            {
                usesLibraryNode.setName(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_REQUIRED))
            {
                usesLibraryNode.setRequired(Boolean.parseBoolean(attrValue));
            }
            else
            {
                usesLibraryNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return usesLibraryNode;
    }

    /**
     * Parses an <uses-feature> node
     * 
     * @param attributes The node attributes
     * @return an UsesFeatureNode object corresponding to the node
     */
    protected UsesFeatureNode parseUsesFeatureNode(NamedNodeMap attributes)
    {
        UsesFeatureNode usesFeatureNode = new UsesFeatureNode("");
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_NAME))
            {
                usesFeatureNode.setName(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_REQUIRED))
            {
                usesFeatureNode.setRequired(Boolean.parseBoolean(attrValue));
            }
            else
            {
                usesFeatureNode.addUnknownProperty(attrName, attrValue);
            }
        }

        return usesFeatureNode;
    }

    /**
     * Parses a comment node (<!-- This is a comment -->) 
     * 
     * @param comment The xml comment node
     * 
     * @return a CommentNode object representing the xml comment node
     */
    protected CommentNode parseCommentNode(Comment comment)
    {
        CommentNode commentNode = new CommentNode();
        commentNode.setComment(comment.getTextContent());

        return commentNode;
    }

    /**
     * Creates an unknown node based on its attributes. An node is classified as
     * unknown when it is not specified by the AndroidManifest.xml file specification
     * or when it is under another node that could not contain it.
     * 
     * @param attributes The node attributes
     * @return a UnknownNode object corresponding to the node
     */
    protected UnknownNode parseUnknownNode(String nodeName, NamedNodeMap attributes)
    {
        UnknownNode unknownNode = new UnknownNode(nodeName);
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            unknownNode.addUnknownProperty(attrName, attrValue);
        }

        return unknownNode;
    }

    /**
     * Sets all attributes relative to an AbstractIconLabelNameNode from an
     * attributes list
     * 
     * @param attributes The node attributes
     * @param amNode The AbstractIconLabelNameNode where the attributes must be in
     */
    private void parseAbstractIconLabelNameNode(NamedNodeMap attributes,
            AbstractIconLabelNameNode amNode)
    {
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_ICON))
            {
                amNode.setIcon(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_LABEL))
            {
                amNode.setLabel(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_NAME))
            {
                amNode.setName(attrValue);
            }
        }
    }

    /**
     * Sets all attributes relative to an AbstractBuildingBlockNode from an
     * attributes list
     * 
     * @param attributes The node attributes
     * @param amNode The AbstractBuildingBlockNode where the attributes must be in
     */
    private void parseAbstractBuildingBlockNode(NamedNodeMap attributes,
            AbstractBuildingBlockNode amNode)
    {
        String attrName, attrValue;
        Boolean boolValue;

        parseAbstractIconLabelNameNode(attributes, amNode);

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_ENABLED))
            {
                boolValue = Boolean.parseBoolean(attrValue);
                amNode.setEnabled(boolValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_EXPORTED))
            {
                boolValue = Boolean.parseBoolean(attrValue);
                amNode.setExported(boolValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PERMISSION))
            {
                amNode.setPermission(attrValue);
            }
            else if (attrName.equalsIgnoreCase(PROP_PROCESS))
            {
                amNode.setProcess(attrValue);
            }
        }
    }

    /**
     * Sets all attributes relative to an AbstractSimpleNameNode from an
     * attributes list
     * 
     * @param attributes The node attributes
     * @param amNode The AbstractSimpleNameNode where the attributes must be in
     */
    private void parseAbstractSimpleNameNode(NamedNodeMap attributes, AbstractSimpleNameNode amNode)
    {
        String attrName, attrValue;

        for (int i = 0; i < attributes.getLength(); i++)
        {
            attrName = attributes.item(i).getNodeName().trim();
            attrValue = attributes.item(i).getNodeValue();

            if (attrName.equalsIgnoreCase(PROP_NAME))
            {
                amNode.setName(attrValue);
            }
        }
    }
}