summaryrefslogtreecommitdiff
path: root/print/OEM Printer Customization Plug-in Samples/C++/PTPCPlPr/src/xmlhandler.cxx
blob: 4bbee2e8fdeefa7196dfbedcf87df39c69070d15 (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
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
//  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
//  ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
//  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
//  PARTICULAR PURPOSE.
//
//  Copyright  1998 - 2005  Microsoft Corporation.  All Rights Reserved.
//
//  FILE: xmlhandler.cxx
//
//
//  PURPOSE: Helper Class that handles all functionality related to
//  processing of input PrintTicket/PrintCapabilities XML documents.
//
//
//  Functions: Public and Private functions of class OEMPTXMLHandler.
//

#include "precomp.hxx"

#include "globals.hxx"
#include "printschema.hxx"
#include "xmlhandler.hxx"

// This indicates to Prefast that this is a usermode driver file.
_Analysis_mode_(_Analysis_code_type_user_driver_);


//Disable the warnings generated by PFEFAST for conversion between wchar_t * and BSTR
//because MSXML defines all its interfaces parameters as BSTR but officially declares itself
//to be wchar_t safe.

#pragma prefast(disable:__WARNING_WCHAR_TO_BSTR)

//
// MSXML makes the guarantee that we can call it's methods with LPTSTRs instead
// of BSTRs, so we need to do a const cast whenever we pass our strings to MSXML.
//
#define MSXMLSTR(lptstr_value) (const_cast<BSTR>(lptstr_value))

/*++
Routine Name:
    OEMPTXMLHandler
Routine Description:
    Print Ticket Handler Constructor


Arguments:
    None

Return Value:
    None

--*/

OEMPTXMLHandler::OEMPTXMLHandler() :
    m_pRootDocument(NULL),
    m_pRootElement(NULL),
    m_pNSManager(NULL),
    m_dwNextIndex(0)
{
}

/*++
Routine Name:
    ~OEMPTXMLHandler(
Routine Description:
    Print Ticket Handler Destructor

Arguments:
    None

Return Value:
    None

--*/

OEMPTXMLHandler::~OEMPTXMLHandler()
{
    if (m_pRootDocument)
    {
        m_pRootDocument->Release();
        m_pRootDocument = NULL;
    }
    if (m_pRootElement)
    {
        m_pRootElement->Release();
        m_pRootElement = NULL;
    }
    if (m_pNSManager)
    {
        m_pNSManager->Release();
        m_pNSManager = NULL;
    }
}

/*++
Routine Name:
    SetRoot

Routine Description:

    Initialization routine. Sets root of the DOM tree. Alos creates an instance of xml namespace manager
    using plug-in helper interface method.

    Note:  This routine MUST BE called before any other xml handling routines are called.
    Note also that it is not necessary to call CoInitializeEx because Unidrv has already
    made that call while creating the DOM tree with appropriate arguments passed on to it
    and when Unidrv makes a call to one of plug-in interface routines, since plug-in is
    running in the same thread, it does not need to make that call again
    In fact the plug-in SHOULD NOT make that call to CoInitializeEx , because Unidrv must have made
    that call with some particular concurrency model settings which plug-in cannot find out,
    so the plug-in might end up changing the concurrency setting made by Unidrv.

Arguments:
    pRoot - Root of the input DOM tree.


Return Value:
    HRESULT Completion status code

--*/
HRESULT
OEMPTXMLHandler::SetRoot(
    _In_ IXMLDOMDocument2 *pRoot,
    _In_ IPrintCoreHelper *pHelper
    )
{
    HRESULT hr = S_OK;

    //
    // check if input paramters are not NULL
    //
    if (!pRoot || !pHelper)
    {
        return E_INVALIDARG;
    }

    m_pRootDocument = pRoot;

    m_pRootDocument->AddRef();


    //
    // Make use of Plug-in Helper Interface method provided by Unidrv to create an Instance of MSXML Namespace Manager.
    // The plug-in must make use of Helper Interface provided by Unidrv while creating instance of namespacemanager
    // of MSXML DOM document, the plug-in should not load MSXML6.DLL by itself but should rely on Unidrv for
    // doing that
    //
    if (SUCCEEDED(hr))
    {
        //
        // Note: Current versions of Unidrv support MSXML6 hence plug-in should also support that and write its
        // code in compliance with MSXML6
        //
        hr = pHelper->CreateInstanceOfMSXMLObject(CLSID_MXNamespaceManager60, NULL, NULL, IID_IMXNamespaceManager, (void**)&m_pNSManager);
    }

    //
    // Get the Root Element of the document and store it in pRootElement.
    //
    if (SUCCEEDED(hr))
    {
        hr = m_pRootDocument->get_documentElement(&m_pRootElement);
    }

    if (FAILED(hr))
    {
        if (m_pRootDocument)
        {
            m_pRootDocument->Release();
            m_pRootDocument = NULL;
        }

        if (m_pRootElement)
        {
            m_pRootElement->Release();
            m_pRootElement = NULL;
        }

        if (m_pNSManager)
        {
            m_pNSManager->Release();
            m_pNSManager = NULL;
        }
    }

    return hr;
}

/*++
Routine Name:
    CreateFeatureNode

Routine Description:

    Creates a new Feature Node

Arguments:
    pParent - parent node of the new feature node, if NULL, root is considered as parent
    pszNamespaceURI - namesapce URI to which new node belongs
    pszFeatureName - local name of the new feature node
    ppFeatureNode - out pointer to newly created node

Return Value:
    HRESULT Completion status code
    S_OK on success
    E_* on failure

--*/

HRESULT OEMPTXMLHandler::CreateFeatureNode(
    _In_opt_ IXMLDOMElement *pParent,
    _In_ PCWSTR pszNamespaceURI,
    _In_ PCWSTR pszFeatureName,
    _Out_opt_ IXMLDOMElement **ppFeatureNode
    )
{
    HRESULT hr = S_OK;
    IXMLDOMElement *pNewElement = NULL;
    BSTR qName = NULL;

    if (!pszFeatureName)
    {
        return E_INVALIDARG;
    }

    if (!pParent)
    {
        pParent = m_pRootElement;
    }


    hr = CreateXMLElement(pParent, printschema::FEATURE_ELEMENT_NAME, printschema::FRAMEWORK_URI, &pNewElement);

    if (SUCCEEDED(hr))
    {
        hr = CreateQName(pNewElement, pszNamespaceURI, pszFeatureName, &qName);
    }

    if (SUCCEEDED(hr))
    {

        // The 'name' attibute node is not namespace qualified; it
        // belongs to the namespace of its parent (feature/option)
        // node.

        hr = CreateXMLAttribute(pNewElement, printschema::NAME_ATTRIBUTE_NAME, L"", qName);
    }

    if (qName)
    {
        SysFreeString(qName);
        qName = NULL;
    }

    if (SUCCEEDED(hr) && ppFeatureNode)
    {
        *ppFeatureNode = pNewElement;
    }
    else if (pNewElement)
    {
        pNewElement->Release();
    }

    return hr;

}

/*++
Routine Name:
    CreateOptionNode

Routine Description:

    Creates a new Option Node

Arguments:
    pParent - parent node of the new Option node
    pszNamespaceURI - namesapce URI to which new node belongs
    pszFeatureName - local name of the new Option node
    ppOptionElement - out pointer to newly created node

Return Value:
    HRESULT Completion status code
    S_OK on success
    E_* on failure

--*/

HRESULT OEMPTXMLHandler::CreateOptionNode(
    _In_ IXMLDOMElement *pParent,
    _In_ PCWSTR pszNamespaceURI, //print schema URI that corresponds to prefix "prn:"
    _In_ PCWSTR pszOptionName, //"TopLeft" etc
    _Out_opt_ IXMLDOMElement **ppOptionElement
    )
{
    HRESULT hr = S_OK;
    IXMLDOMElement *pNewElement = NULL;
    BSTR qName = NULL;

    if (!pParent)
    {
        return E_INVALIDARG;
    }

    hr = CreateXMLElement(pParent, printschema::OPTION_ELEMENT_NAME, printschema::FRAMEWORK_URI, &pNewElement);

    if (SUCCEEDED(hr))
    {
        hr = CreateQName(pNewElement, pszNamespaceURI, pszOptionName, &qName);
    }

    if (SUCCEEDED(hr))
    {
        // The 'name' attibute node is not namespace qualified; it
        // belongs to the namespace of its parent (feature/option)
        // node.

        hr = CreateXMLAttribute(pNewElement, printschema::NAME_ATTRIBUTE_NAME, L"", qName);
    }

    if (qName)
    {
        SysFreeString(qName);
        qName = NULL;
    }

    if (SUCCEEDED(hr) && ppOptionElement)
    {
        *ppOptionElement = pNewElement;
    }
    else if (pNewElement)
    {
        pNewElement->Release();
    }

    return hr;
}

/*++
Routine Name:
    CreateXMLElement

Routine Description:
    Generic method to create new XML element node

Arguments:

    pParent - pointer to the parent node of the new nod eto be created, if NULL root of DOM tree is considered as parent
    pszElementName - local name of the newly created element
    pszNamespaceURI - namespace URI that the new element belongs to, the caller can only specify the namespace URI
                      and not the prefix
    ppCreatedElement - double pointer to the newly created element returned by the procedure

Return Value:
    HRESULT Completion status code
    S_OK - If the new element node is created successfully
    E_* -  on failure

--*/

HRESULT OEMPTXMLHandler::CreateXMLElement(
    _In_ IXMLDOMElement *pParent,
    _In_ PCWSTR pszElementName,
    _In_ PCWSTR pszNamespaceURI,
    _Out_ IXMLDOMElement **ppCreatedElement
    )
{
    HRESULT hr = S_OK;
    IXMLDOMNode *pNewNode = NULL;
    BSTR bstrQName = NULL;

    if (!pParent || !pszElementName || !pszNamespaceURI || !ppCreatedElement)
    {
        return E_INVALIDARG;
    }

    //
    // create XML Qname
    //
    hr = CreateQName(pParent, pszNamespaceURI, pszElementName, &bstrQName);

    if (SUCCEEDED(hr))
    {
        VARIANT nodeType;
        VariantInit(&nodeType);
        V_VT(&nodeType) = VT_I4;
        V_I4(&nodeType) = NODE_ELEMENT;
        hr = m_pRootDocument->createNode(nodeType, bstrQName, MSXMLSTR(pszNamespaceURI), &pNewNode);
        if (SUCCEEDED(hr))
            VariantClear(&nodeType);
    }

    if (SUCCEEDED(hr))
        hr = pParent->appendChild(pNewNode, NULL);


    if (SUCCEEDED(hr))
    {
        //
        // we need to return Interface ptr to IXMLDOMElement.
        //
        hr = pNewNode->QueryInterface(IID_IXMLDOMElement, (void **)ppCreatedElement);

        //
        // if interface is not supported, E_* will be returned in hr,
        // we simply return that to the caller.
        //
    }

    if (pNewNode)
    {
        //
        // release reference to local node Created since it is no longer being used
        //
        pNewNode->Release();
    }

    if (bstrQName)
    {
        SysFreeString(bstrQName);
        bstrQName = NULL;
    }

    return hr;

}

/*++
Routine Name:
    CreateQName

Routine Description:

    Creates XML qname for given local name and namespace URI
    Note: It is assumed that a prefix for given URI is already defined in root of DOM document
    either by Unidrv or by plug-in itself.
    Routine fails if it doesnot find a predefined prefix for given URI.

Arguments:
    pElement -  context node
    pszUri - Uri
    pszLocalName - local name
    pQName - a pointer to resultant qname string defined by the routine

Return Value:
    HRESULT Completion status code

    S_OK - On success
    E_FAIL - on failure to create Qname

--*/
HRESULT OEMPTXMLHandler::CreateQName(
    _In_ IXMLDOMElement *pElement,
    _In_ PCWSTR pszUri,
    _In_ PCWSTR pszLocalName,
    _Out_ BSTR *pQName
    )
{
    HRESULT hr = S_OK;
    BSTR bstrPrefixString = NULL;
    size_t prefixLen = 0;
    // Is it the default namespace?  If so, don't stick a semicolon in the string
    size_t localNameLen = 0;

    if (!pszUri || !pszLocalName || !pQName)
    {
        return E_INVALIDARG;
    }

    *pQName = NULL;

    //
    // See if a prefix is already defined for the given URI
    //

    hr = getPrefix(pElement, pszUri, &bstrPrefixString);

    //
    // It is possible that during validation the prefix might not
    // already be defined if we're converting public features to GPD
    // features.  In that case, we need to add a definition for the
    // feature namespace.
    //

    if (S_FALSE == hr)
    {
        hr = declarePrefix(pElement, pszUri, NULL, &bstrPrefixString);
    }

    if (SUCCEEDED(hr))
    {
        //
        // StrSafe function StringCchLength checks if the length of string is less than
        // maximum length specified, and returns S_OK if the input string is non NULL and
        // length is less that maximum length specified.
        // It returns length of string EXCLUDING null terminator
        //
        hr = StringCchLength(pszLocalName, STR_MAX_CCH, &localNameLen);
    }

    if (SUCCEEDED(hr))
    {
        if (bstrPrefixString)
        {
            hr = StringCchLength(bstrPrefixString, STR_MAX_CCH, &prefixLen);
        }
    }

    if (SUCCEEDED(hr))
    {
        if (prefixLen > 0)
        {
            // non-default namespace

            UINT cchLength = 0;

            if (SUCCEEDED(hr = SizeTAdd(prefixLen, localNameLen, &localNameLen)) &&
                SUCCEEDED(hr = SizeTAdd(localNameLen, 2, &localNameLen)) &&
                SUCCEEDED(hr = SizeTToUInt(localNameLen, &cchLength)))
            {

                *pQName = SysAllocStringLen(NULL, cchLength);

                if (*pQName)
                {
                    // we got a terminator character as part of SysAllocString.
                    hr = StringCchPrintf(*pQName, cchLength, L"%s:%s", bstrPrefixString, pszLocalName);
                }
                else
                {
                    hr = E_OUTOFMEMORY;
                }
            }
        }
        else
        {
            // Default namespace ...

            UINT cchLength = 0;

            if (SUCCEEDED(hr = SizeTAdd(localNameLen, 1, &localNameLen)) &&
                SUCCEEDED(hr = SizeTToUInt(localNameLen, &cchLength)))
            {
                *pQName = SysAllocStringLen(NULL, cchLength);

                if (*pQName)
                {
                    // we got a terminator character as part of SysAllocString.
                    hr = StringCchPrintf(*pQName, cchLength, L"%s", pszLocalName);
                }
                else
                {
                    hr = E_OUTOFMEMORY;
                }
            }
        }
    }

    if (bstrPrefixString)
    {
        SysFreeString(bstrPrefixString);
        bstrPrefixString = NULL;
    }

    if (FAILED(hr))
    {
        if (*pQName)
        {
            SysFreeString(*pQName);
            *pQName = NULL;
        }
    }

    return hr;
}

/*++
Routine Name:
    CreateXMLAttribute

Routine Description:
    Creates an attribute for the given XML element.

Arguments:

    pElement - pointer to the element node to which an attribute is to be added
    pszAttributeName - local name of the attribute
    pszNamespaceURI - namespace URI to which the attribute belongs
    pszAttributeValue - value of the attribute

Return Value:
    HRESULT Completion status code
    S_OK - on success
    E_* - on failure

--*/

HRESULT OEMPTXMLHandler::CreateXMLAttribute(
    _In_ IXMLDOMElement *pElement,
    _In_ PCWSTR pszAttributeName, //"name="
    _In_ PCWSTR pszNamespaceURI,  //"pt:"
    _In_ PCWSTR pszAttributeValue //"prn:"
    )
{
    HRESULT hr = S_OK;
    IXMLDOMAttribute *pNewAttribute = NULL ;
    IXMLDOMNode *pNewNode = NULL ;

    if (!pElement || !pszAttributeName || ! pszNamespaceURI || !pszAttributeValue)
    {
        return E_INVALIDARG;
    }

    VARIANT nodeType;
    VariantInit(&nodeType);
    V_VT(&nodeType) = VT_I4;
    V_I4(&nodeType) = NODE_ATTRIBUTE;
    hr = m_pRootDocument->createNode(nodeType, MSXMLSTR(pszAttributeName), MSXMLSTR(pszNamespaceURI), &pNewNode);
    if (SUCCEEDED(hr))
        VariantClear(&nodeType);

    if (SUCCEEDED(hr))
    {
        hr = pNewNode->QueryInterface(IID_IXMLDOMAttribute, (void **)&pNewAttribute);
    }

    if (SUCCEEDED(hr))
    {
        VARIANT attrType;
        VariantInit(&attrType);
        V_VT(&attrType) = VT_BSTR;
        V_BSTR(&attrType) = SysAllocString(pszAttributeValue);
        hr = pNewAttribute->put_value(attrType);
        if (SUCCEEDED(hr))
            VariantClear(&attrType);
    }

    if (SUCCEEDED(hr))
    {
        hr = pElement->setAttributeNode(pNewAttribute, NULL);
    }

    if (SUCCEEDED(hr))
    {
        if (pNewAttribute)
        {
            pNewAttribute->Release();
        }

    }
    else if (pNewAttribute)
        pNewAttribute->Release();

    if (pNewNode)
        pNewNode->Release();

    return hr;
}

/*++
Routine Name:
    GetXMLElement
Routine Description:
    Returns an XML element with given namespace URI and given attribute

Arguments:

    pParent - Parent of node to be found
    pszElementNamespaceURI -  Namespace URI to which the element belongs
    pszElementName - Local Name of the element
    pszAttrNamespaceURI - Namespace URI to which the attribute of the element belongs
    pszAttrName - local name of the element attribute
    ppElement - out pointer to xml element so retrieved

Return Value:
    HRESULT Completion status code
    S_OK - On Successfully locating XML node specified
    S_FALSE - If the specified XML node is not found
    E_* - On Failure

    Note: Since the module returns S_FALSE if the specified node is not found, the caller must be
    careful to check hr status to be S_OK before proceeding, just checking for SUCCEEDED(hr) might
    give wrong results

--*/
HRESULT OEMPTXMLHandler::GetXMLElement(
    _In_ IXMLDOMElement *pParent,
    _In_ PCWSTR pszElementNamespaceURI,
    _In_ PCWSTR pszElementName,
    _In_ PCWSTR pszAttrNamespaceURI,
    _In_ PCWSTR pszAttrName,
    _Outptr_result_maybenull_ IXMLDOMElement **ppElement
    ) const
{
    HRESULT hr = S_OK;
    LONG cChildren = 0;
    IXMLDOMNodeList *pChildren = NULL;


    if (!pParent || !pszElementNamespaceURI || !pszElementName || !pszAttrNamespaceURI || !pszAttrName)
    {
        return E_INVALIDARG;
    }

    *ppElement = NULL;

    //
    // Get a list of child nodes for the current DOM node
    //
    hr = pParent->get_childNodes(&pChildren);

    //
    // Get number of child nodes
    //
    if (SUCCEEDED(hr))
    {
        hr = pChildren->get_length(&cChildren);
    }

    if (SUCCEEDED(hr))
    {
        LONG i = 0;
        BOOL bFound = FALSE;

        for(i = 0;i < cChildren && !bFound;i++)
        {
            IXMLDOMNode *pCurNode;
            IXMLDOMElement *pCurElement = NULL;

            hr = pChildren->get_item(i, &pCurNode);

            if (SUCCEEDED(hr))
            {
                hr = pCurNode->QueryInterface(IID_IXMLDOMElement, (void **)&pCurElement);
            }
            if (S_OK == hr)
            {
                BSTR bstrElementName = NULL;
                BSTR bstrElementNamespaceURI = NULL;

                //
                // retrieve element name and namespace URI
                //
                hr = pCurElement->get_baseName(&bstrElementName);

                if (SUCCEEDED(hr))
                {
                    hr = pCurElement->get_namespaceURI(&bstrElementNamespaceURI);
                }

                if (SUCCEEDED(hr) && bstrElementNamespaceURI && bstrElementName)
                {

                    if (0 == wcscmp(bstrElementName, pszElementName) && 0 == wcscmp(bstrElementNamespaceURI, pszElementNamespaceURI))
                    {
                        //
                        //check if element name matches
                        //
                        BSTR bstrAttrName = NULL;
                        BSTR bstrAttrNamespaceURI = NULL;
                        hr = GetXMLAttribute(pCurElement,&bstrAttrNamespaceURI,&bstrAttrName);
                        if (SUCCEEDED(hr) && bstrAttrName && bstrAttrNamespaceURI)
                        {
                            if (0 == wcscmp(bstrAttrName, pszAttrName) && 0 == wcscmp(pszAttrNamespaceURI, bstrAttrNamespaceURI))
                            {
                                bFound = TRUE;
                                *ppElement = pCurElement;
                                (*ppElement)->AddRef();
                            }
                            else
                            {
                                hr = S_FALSE;
                            }
                        }

                        SysFreeString(bstrAttrName);
                        bstrAttrName = NULL;

                        SysFreeString(bstrAttrNamespaceURI);
                        bstrAttrNamespaceURI = NULL;
                    }
                }

                SysFreeString(bstrElementName);
                bstrElementName = NULL;

                SysFreeString(bstrElementNamespaceURI);
                bstrElementNamespaceURI = NULL;

                if (pCurElement)
                {
                    pCurElement->Release();
                }
            }

            if (pCurNode)
            {
                pCurNode->Release();
            }
        }
    }

    if (pChildren)
        pChildren->Release();

    if (SUCCEEDED(hr) && (*ppElement))
    {
        hr = S_OK;
    }
    else
    {
        hr = S_FALSE;
    }

    return hr;

}

/*++
Routine Name:
    GetXMLElementWithoutAttribute

Routine Description:
    Returns an XML element with given namespace URI.

Arguments:

    pParent - Parent of node to be found
    pszElementNamespaceURI -  Namespace URI to which the element belongs
    pszElementName - Local Name of the element
    ppChildElement - out pointer to xml element so retrieved

Return Value:
    HRESULT Completion status code
    S_OK - On Successfully locating XML node specified
    S_FALSE - If the specified XML node is not found
    E_* - On Failure

    Note: Since the module returns S_FALSE if the specified node is not found, the caller must be
    careful to check hr status before proceeding, just checking for SUCCEEDED(hr) might
    give wrong results

--*/
HRESULT OEMPTXMLHandler::GetXMLElementWithoutAttribute(
    _In_ IXMLDOMElement *pContext,
    _In_ PCWSTR pszElementNamespace,
    _In_ PCWSTR pszElementName,
    _Outptr_result_maybenull_ IXMLDOMElement **ppChildElement
    ) const
{
    if (!pContext || !pszElementName || !pszElementNamespace || !ppChildElement)
    {
        return E_INVALIDARG;
    }

    HRESULT hr = S_OK;
    LONG cChildren = 0;
    IXMLDOMNodeList *pContextChildren;
    *ppChildElement = NULL;

    //
    // Get the list of child nodes
    //
    hr = pContext->get_childNodes(&pContextChildren);

    if (SUCCEEDED(hr))
        hr = pContextChildren->get_length(&cChildren);

    if (SUCCEEDED(hr))
    {
        for(LONG i = 0;i < cChildren && !(*ppChildElement);i++)
        {

            IXMLDOMNode *pCurrentNode;
            IXMLDOMElement *pCurrentElement;
            hr = pContextChildren->get_item(i, &pCurrentNode);

            //
            // See if its a DOM Element.  Don't set hr here because we
            // fully expect that not everything in the context is an element.
            //
            if (SUCCEEDED(hr) && S_OK == pCurrentNode->QueryInterface(IID_IXMLDOMElement, (void**)&pCurrentElement))
            {
                BSTR pbstrBaseName = NULL;
                BSTR pbstrNamespaceURI = NULL;

                hr = pCurrentElement->get_baseName(&pbstrBaseName);

                if (SUCCEEDED(hr))
                {
                    hr = pCurrentElement->get_namespaceURI(&pbstrNamespaceURI);
                }
                if (SUCCEEDED(hr) &&
                    pbstrNamespaceURI &&
                    pbstrBaseName &&
                    0 == wcscmp(pbstrNamespaceURI, pszElementNamespace) &&
                    0 == wcscmp(pbstrBaseName, pszElementName))
                {
                    *ppChildElement = pCurrentElement;
                    (*ppChildElement)->AddRef();
                }

                pCurrentElement->Release();

                SysFreeString(pbstrBaseName);
                pbstrBaseName = NULL;

                SysFreeString(pbstrNamespaceURI);
                pbstrNamespaceURI = NULL;
            }

            if (pCurrentNode)
            {
                pCurrentNode->Release();
            }
        }
    }

    if (pContextChildren)
    {
        pContextChildren->Release();
    }

    if (SUCCEEDED(hr))
    {
        if (*ppChildElement)
        {
            hr = S_OK;
        }
        else
        {
            hr = S_FALSE;
        }
    }

    return hr;
}

/*++
Routine Name:
    GetXMLAttribute

Routine Description:
    Returns an XML Attribute node with given namespace URI.

Arguments:

    pParent - Parent of node to be found
    pszAttrNamespaceURI -  Namespace URI to which the attribute belongs
    pszAttrName - Local Name of the attribute
    ppChildElement - out pointer to xml node so retrieved

Return Value:
    HRESULT Completion status code
    S_OK - On Success
    E_* - On Failure

--*/
HRESULT OEMPTXMLHandler::GetXMLAttribute(
    _In_ IXMLDOMElement *pElement,
    _Outptr_result_maybenull_ BSTR *ppAttrNamespaceURI,
    _Outptr_result_maybenull_ BSTR *ppAttrName
    ) const
{
    HRESULT hr = S_OK;
    IXMLDOMNamedNodeMap *pAttrMap = NULL;
    IXMLDOMNode *pAttrNode = NULL;

    if (!pElement || !ppAttrNamespaceURI || !ppAttrName)
    {
        return E_INVALIDARG;
    }

    *ppAttrNamespaceURI = NULL;
    *ppAttrName = NULL;

    hr = pElement->get_attributes(&pAttrMap);

    if (SUCCEEDED(hr))
    {
        hr = pAttrMap->getNamedItem(MSXMLSTR(printschema::NAME_ATTRIBUTE_NAME),&pAttrNode);
    }

    if (S_OK == hr)
    {
        BSTR bstrAttrQName = NULL;
        IXMLDOMAttribute *pAttribute = NULL;

        hr = pAttrNode->QueryInterface(IID_IXMLDOMAttribute, (void **)&pAttribute);

        if (SUCCEEDED(hr))
            hr = pAttribute->get_text(&bstrAttrQName);

        if (S_OK == hr && bstrAttrQName)
            hr = getUri(pElement, bstrAttrQName, ppAttrNamespaceURI);

        if (S_OK == hr && bstrAttrQName)
            hr = getLocalName(bstrAttrQName, ppAttrName);

        if (pAttribute)
            pAttribute->Release();

        if (bstrAttrQName)
        {
            SysFreeString(bstrAttrQName);
            bstrAttrQName = NULL;
        }
    }

    if (pAttrMap)
        pAttrMap->Release();
    if (pAttrNode)
        pAttrNode->Release();

    if (FAILED(hr))
    {
        if (*ppAttrNamespaceURI)
        {
            SysFreeString(*ppAttrNamespaceURI);
            *ppAttrNamespaceURI = NULL;
        }
        if (*ppAttrName)
        {
            SysFreeString(*ppAttrName);
            *ppAttrName = NULL;
        }
    }
    return hr;
}

/*++
Routine Name:
    GetFeatureNode

Routine Description:

    Returns the feature node with specified attribute under printschema namespace

Arguments:
    pParent - parent node of the feature node to be located
    pszAttrNamespaceURI - namespace URI for the attribute node of given feature node
    pszAttrName - attribute name for given feature node
    ppElement - OUT pointer to feature node to be returned

Return Value:
    HRESULT Completion status code
    S_OK - On Successfully locating Feature node
    S_FALSE - If Feature node is not found
    E_* - On Failure


--*/
HRESULT OEMPTXMLHandler::GetFeatureNode(
    _In_opt_ IXMLDOMElement *pParent,
    _In_ PCWSTR pszAttrNamespaceURI,
    _In_ PCWSTR pszAttrName,
    _Out_ _When_(return == S_FALSE, _At_(*ppElement, _Post_maybenull_))
          _When_(return != S_FALSE, _At_(*ppElement, _Post_valid_))
         IXMLDOMElement **ppElement
    ) const
{
    HRESULT hr = S_OK;

    //
    // If no parent is specified, set root of DOM tree as parent
    //
    if (!pParent)
    {
        pParent = m_pRootElement;
    }

    hr = GetXMLElement(pParent, printschema::FRAMEWORK_URI, printschema::FEATURE_ELEMENT_NAME, pszAttrNamespaceURI, pszAttrName, ppElement);

    return hr;
}

/*++
Routine Name:
    GetOptionNode

Routine Description:

    Returns the option node under printschema namespace

Arguments:
    pParent - parent node of the option node to be located
    ppElement - OUT pointer to option node to be returned

Return Value:
    HRESULT Completion status code
    S_OK - On Successfully locating Option node
    S_FALSE - If Option node is not found
    E_* - On Failure

--*/
HRESULT
OEMPTXMLHandler::GetOptionNode(
    _In_ IXMLDOMElement *pParent,
    _Outptr_result_maybenull_ IXMLDOMElement **ppElement
    ) const
{
    return GetXMLElementWithoutAttribute(pParent, printschema::FRAMEWORK_URI, printschema::OPTION_ELEMENT_NAME, ppElement);
}

/*++

Routine Name:
    getLocalName
Routine Description:
    Returns Local name for input XML Qname.

Arguments:
    pszQName - Qname for which local name is to be found out
    ppbstrLocalName - OUT pointer to local name

Return Value:
    HRESULT Completion status code
    S_OK - On Success
    E_* - On Failure

--*/
HRESULT
OEMPTXMLHandler::getLocalName(
    _In_ PCWSTR pszQName,
    _Out_ BSTR *ppbstrLocalName
    ) const
{
    HRESULT hr = S_OK;

    if (!pszQName || !ppbstrLocalName)
    {
        return E_INVALIDARG;
    }

    *ppbstrLocalName = NULL;

    PCWSTR pszStartPos = wcschr(pszQName,L':');

    if (pszStartPos)
    {
        pszStartPos++;
    }
    else
    {
        pszStartPos = pszQName;
    }

    *ppbstrLocalName = SysAllocString(pszStartPos);

    if (!(*ppbstrLocalName))
    {
        hr = E_OUTOFMEMORY;
    }

    return hr;
}


/*++
Routine Name:
    getUri
Routine Description:
    Returns namespace URI for given input Qname and in context of given XML DOM node.
Arguments:
    pContext - Input XML DOM node for current context
    pszQName - input qname
    pbstrURI - OUT pointer to URI to be returned
Return Value:

    S_OK if found
    S_FALSE if not found
    E_OUTOFMEMORY if the string could not be allocated
    E_INVALIDARG if a non-optional param is null.

Notes:

    This routine assumes that the string has already been
    validated, which should have happened in the managed code base.
    The string should either be of the form "prefix:localname",
    or "localname"

--*/
HRESULT
OEMPTXMLHandler::getUri(
    IXMLDOMElement *pContext,
    _In_ PCWSTR pszQName,
    _Out_ BSTR *pbstrURI
    ) const

{
    HRESULT hr = S_OK;
    BOOL bNodePushed = FALSE;

    if (!(pContext && pbstrURI && pszQName))
    {
        return E_INVALIDARG;
    }

    PWSTR pszSplitPos = (_TCHAR*) wcschr(pszQName, L':');
    INT cchUri = 0;
    *pbstrURI = NULL;

    //
    // if splitpos is null, then there is no namespace
    // prefix, which means return the default namespace.
    //
    wchar_t wchSwapChar = L'\0';
    if (pszSplitPos)
    {
        wchSwapChar = *pszSplitPos;
        *pszSplitPos = (wchar_t)0;
    }
    else
    {
        pszQName = L"";
    }

    hr = m_pNSManager->pushNodeContext(pContext, TRUE);

    if (SUCCEEDED(hr))
    {
        bNodePushed = TRUE;
        // get the length first, then alloc the string
#pragma prefast(suppress:__WARNING_INVALID_PARAM_VALUE_1, "According to MSDN, it is acceptable to pass a NULL buffer to getURI.")
        hr = m_pNSManager->getURI(pszQName, NULL, NULL, &cchUri);
    }

    if (S_OK == hr)
    {
        if (SUCCEEDED(hr))
        {
            // account for null terminator
            cchUri += 1;

            *pbstrURI = SysAllocStringLen(NULL, cchUri);
            if (!(*pbstrURI))
            {
                hr = E_OUTOFMEMORY;
            }
        }

        if (SUCCEEDED(hr))
        {
            hr = m_pNSManager->getURI(pszQName, NULL, *pbstrURI, &cchUri);
        }

        if (pszSplitPos)
        {
            *pszSplitPos = wchSwapChar;
        }

        if (FAILED(hr) && (*pbstrURI))
        {
            SysFreeString(*pbstrURI);
            *pbstrURI = NULL;
        }
    }

    if (bNodePushed)
    {
        hr = m_pNSManager->popContext();
    }

    return hr;
}

/*++

Routine Name:
    getPrefix
Routine Description:

    Returns predefined Prefix for the input namespace URI if one already exists

Arguments:
    pContext - Current context node
    pszUri - namespace URI for which prefix is to be obtained
    pbstrPrefix - prefix string to be returned, if NULL routine just checks for
                    existence of prefix

Return Value:
    HRESULT Completion status code
    S_OK - on success
    S_FALSE - on failure

--*/
HRESULT
OEMPTXMLHandler::getPrefix(
    _In_ IXMLDOMElement *pContext,
    _In_ PCWSTR pszUri,
    _Outptr_opt_result_maybenull_ BSTR *pbstrPrefix
    ) const
{
    HRESULT hr = S_OK;
    BOOL bNodePushed = FALSE;
    INT cchPrefix = 0;

    if (!pContext || !pszUri)
            return E_INVALIDARG;

    if (pbstrPrefix)
    {
        *pbstrPrefix = NULL;
    }

    //Push context "Deep" to get info abt all URI prefix mappings defined so far in the current DOM document
    hr = m_pNSManager->pushNodeContext(pContext, TRUE);

    if (SUCCEEDED(hr))
    {
        bNodePushed = TRUE;

        // get the length first, then alloc the string

        hr = m_pNSManager->getPrefix(pszUri, 0, NULL, &cchPrefix);
    }


    if (S_OK == hr && pbstrPrefix)
    {

        *pbstrPrefix = NULL;
        cchPrefix++;

        if (SUCCEEDED(hr))
        {
            *pbstrPrefix = SysAllocStringLen(NULL, cchPrefix);

            if (!(*pbstrPrefix))
                hr = E_OUTOFMEMORY;
        }

        if (SUCCEEDED(hr))
        {
            hr = m_pNSManager->getPrefix(pszUri, 0, *pbstrPrefix, &cchPrefix);

        }

        if (FAILED(hr) && (*pbstrPrefix))
        {
            SysFreeString(*pbstrPrefix);
            *pbstrPrefix = NULL;
        }
    }

    // Note: MSXML NSManager returns S_FALSE for an undeclared URI, and E_FAIL for an undeclared
    // prefix, hence it is safe to check for both here.

    if (E_FAIL == hr || S_FALSE == hr)
    {
        // NS manager didn't find the prefix. Tweak the result to S_FALSE
        hr = S_FALSE;
    }

    if (bNodePushed)
    {
        m_pNSManager->popContext();
    }

    return hr;
}

/*++

Routine Name:
    declarePrefix

Routine Description:

    This declares a new prefix for a given URI.  This routine will always generate a new
    prefix definition, regardless of whether the URI is already defined.  Use getPrefix
    to prevent duplicate definitions of namespace URI prefixes.  If the preferred prefix is
    already in use or no preferred prefix is supplied the namespace will be declared using
    a generated namespace name.

Arguments:
    pContext - The context in which you want to ensure that the prefix is properly declared
        in.  This is where we check to see if the prefix is already in use.  However, if not
        in use, the prefix will always be declared in the root of the document.  This gaurantees
        2 things: The prefix is declared in the entire document (though it may be overridden
        locally in other places), and the prefix has the expected meaning at the passed in pContext.
    pszUri - The URI to associate with the prefix.
    pszPreferredPrefix - prefix to use if not already defined, can be a BSTR or PCWSTR, either
        is acceptable
    pbstrNewPrefix - The actual prefix that was declared, which may be different from the
        preferred prefix

Return Value:
    HRESULT Completion status code
    S_OK - on success
    S_FALSE - on failure

--*/
HRESULT
OEMPTXMLHandler::declarePrefix(
    _In_ IXMLDOMElement *pContext,
    _In_ PCWSTR pszUri,
    _In_opt_ PCWSTR pszPreferredPrefix,
    _Out_ BSTR *pbstrNewPrefix
    )
{
    HRESULT hr = S_OK;

    // These two strings are tied ... the second string is used to print the number over top of a
    // copy of the first string, so chances are, if you change one, you need to change the other.
    PCWSTR szPrefixChars = L"ns0000";
    PCWSTR szPrefixPrintfPattern = L"ns%.4X";

    if (!(pContext && pszUri && pbstrNewPrefix))
    {
        return E_INVALIDARG;
    }

    *pbstrNewPrefix = NULL;

    // Check if the preferred prefix exists...
    //
    // If we got S_OK, the prefix exists, if we got E_*, bail out
    // anyway.  Only declare the prefix if we successfully decided
    // it doesn't exist.

    if (pszPreferredPrefix)
    {
        INT unused = 0;

        if (SUCCEEDED(hr))
        {
            hr = m_pNSManager->pushNodeContext(pContext, TRUE);
        }

        if (SUCCEEDED(hr))
        {
#pragma prefast(suppress:__WARNING_INVALID_PARAM_VALUE_1, "According to MSDN, it is acceptable to pass a NULL buffer to getURI.")
            hr = m_pNSManager->getURI(pszPreferredPrefix, NULL, NULL, &unused);

            // If the prefix is already defined, MSXML will return S_FALSE.  In that
            // case, we don't want to declare another namespace with the same prefix
            if (S_FALSE != hr)
            {
                pszPreferredPrefix = NULL;
            }

            hr = m_pNSManager->popContext();
        }

        if (SUCCEEDED(hr) && pszPreferredPrefix)
        {
            *pbstrNewPrefix = SysAllocStringLen(pszPreferredPrefix, (UINT) wcslen(pszPreferredPrefix));
        }
    }

    // If we don't have a workable prefix, try to generate a namespace
    // Namespaces are in the form of NSxxxx where the x's are hex digits,
    // and there are sizeof(m_nextPrefix)*2 of them
    if (SUCCEEDED(hr) && !(*pbstrNewPrefix))
    {
        BOOL bFound = TRUE;
        UINT cchLength = (UINT) wcslen(szPrefixChars);
        *pbstrNewPrefix = SysAllocStringLen(NULL, cchLength);
        if (!(*pbstrNewPrefix))
        {
            hr = E_OUTOFMEMORY;
        }
        if (SUCCEEDED(hr))
        {
            do
            {
                INT unused = 0;

                // We're really unlikely to hit this.   If we do we probably
                // have bigger problems.  but put a reasonable cap on the
                // generated namespaces anyway.
                if (((UINT)m_dwNextIndex) >= (UINT)0xFFFF)
                {
                    // We could reset the counter here, but it's very unlikely to
                    // help matters, and could end up costing tons of CPU time if
                    // caller ignored the error or retried.
                    hr = E_FAIL;
                }

                if (SUCCEEDED(hr))
                {
                    // now fill in the real value.
                    hr = StringCchPrintf(*pbstrNewPrefix, cchLength+1, szPrefixPrintfPattern, (INT)m_dwNextIndex);
                }

                if (SUCCEEDED(hr))
                {
                    // look up the URI associated with the prefix.
#pragma prefast(suppress:__WARNING_INVALID_PARAM_VALUE_1, "According to MSDN, it is acceptable to pass a NULL buffer to getURI.")
                    bFound = (S_OK == m_pNSManager->getURI(*pbstrNewPrefix, pContext, NULL, &unused));
                }

                m_dwNextIndex++;

            } while(SUCCEEDED(hr) && bFound);

            if (bFound)
            {
                SysFreeString(*pbstrNewPrefix);
                *pbstrNewPrefix = NULL;
            }
        }
    }

    if (SUCCEEDED(hr) && *pbstrNewPrefix)
    {
        // We'll always put declarations at the root
        if (SUCCEEDED(hr))
        {
            // Create the namespace declaration string
            UINT cchDeclLength = (UINT)(wcslen(L"xmlns:") + wcslen(*pbstrNewPrefix));

            BSTR bstrDecl = SysAllocStringLen(NULL, cchDeclLength);
            if (!bstrDecl)
            {
                hr = E_OUTOFMEMORY;
            }

            // Add the new declaration to the root of the document.  This is important because
            // we really don't want to re-declare the namespace at every element.  Just starts
            // to look really messy, and adds a lot of bloat.
            if (SUCCEEDED(hr))
            {
                hr = StringCchPrintf(bstrDecl, cchDeclLength+1, L"xmlns:%s", *pbstrNewPrefix);
            }

            if (SUCCEEDED(hr))
            {
                hr = CreateXMLAttribute(m_pRootElement, bstrDecl, L"", pszUri);
            }

            SysFreeString(bstrDecl);
            bstrDecl = NULL;

            // Explicitly let the namespace manager know about our prefix

            if (SUCCEEDED(hr))
            {
                hr = m_pNSManager->declarePrefix(*pbstrNewPrefix, pszUri);
            }
        }
    }

    if (FAILED(hr))
    {
        SysFreeString(*pbstrNewPrefix);
        *pbstrNewPrefix = NULL;
    }

    return hr;
}

/*++
Routine Name:
    DeleteFeatureNode
Routine Description:

    Deletes given input Feature node and all its children from DOM tree

Arguments:

    pParent - Parent node of the XML DOM node to be deleted
    pElement - XML DOM node to be deleted

Return Value:
    HRESULT Completion status code
    S_OK - On Success
    E_* - On failure
--*/
HRESULT
OEMPTXMLHandler::DeleteFeatureNode(
    _In_opt_ IXMLDOMNode *pParent,
    _In_ IXMLDOMNode *pElement
    )
{
    HRESULT hr = S_OK;

    IXMLDOMNode *pRemovedElement = NULL;

    if (!pElement)
    {
        return E_INVALIDARG;
    }

    //
    // if no parent node specified assume root of DOM tree as parent
    //

    if (!pParent)
    {
        pParent = m_pRootElement;
    }

    //
    // MSXML function removeChild removes the given child of the XML
    // element and all its children, even the Attribute nodes defined
    // for given element node if any are removed. Hence we do not need
    // to worry about recursively removing all the children of the
    // given node before removing it
    //

    hr = pParent->removeChild(pElement, &pRemovedElement);

    if (pRemovedElement)
    {
        pRemovedElement->Release();
    }

    return hr ;
}