summaryrefslogtreecommitdiff
path: root/print/XPSDrvSmpl/src/common/bkpthndlr.cpp
blob: 46fb54b6a4fdbdcaa6d48636a031ed1d8dedef2f (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
/*++

Copyright (c) 2005 Microsoft Corporation

All rights reserved.

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.

File Name:

   bkpthndlr.cpp

Abstract:

   Booklet PrintTicket handling implementation. The booklet PT handler
   is used to extract booklet settings from a PrintTicket and populate
   the booklet data structure with the retrieved settings. The class also
   defines a method for setting the feature in the PrintTicket given the
   data structure.

--*/

#include "precomp.h"
#include "debug.h"
#include "globals.h"
#include "bkpthndlr.h"

using XDPrintSchema::PRINTTICKET_NAME;

using XDPrintSchema::Binding::BindingData;
using XDPrintSchema::Binding::EBinding;
using XDPrintSchema::Binding::EBindingMin;
using XDPrintSchema::Binding::EBindingMax;
using XDPrintSchema::Binding::EBindingOption;
using XDPrintSchema::Binding::EBindingOptionMin;
using XDPrintSchema::Binding::EBindingOptionMax;
using XDPrintSchema::Binding::BIND_FEATURES;
using XDPrintSchema::Binding::BIND_OPTIONS;
using XDPrintSchema::Binding::BIND_PROP;
using XDPrintSchema::Binding::BIND_PROP_REF_SUFFIX;

/*++

Routine Name:

    CBookPTHandler::CBookPTHandler

Routine Description:

    CBookPTHandler class constructor

Arguments:

    pPrintTicket - Pointer to the DOM document representation of the PrintTicket

Return Value:

    None

--*/
CBookPTHandler::CBookPTHandler(
    _In_ IXMLDOMDocument2* pPrintTicket
    ) :
    CPTHandler(pPrintTicket)
{
}

/*++

Routine Name:

    CBookPTHandler::~CBookPTHandler

Routine Description:

    CBookPTHandler class destructor

Arguments:

    None

Return Value:

    None

--*/
CBookPTHandler::~CBookPTHandler()
{
}

/*++

Routine Name:

    CBookPTHandler::GetData

Routine Description:

    The routine fills the data structure passed in with binding data retrieved from
    the PrintTicket passed to the class constructor.

Arguments:

    pBindData - Pointer to the binding data structure to be filled in

Return Value:

    HRESULT
    S_OK                - On success
    E_ELEMENT_NOT_FOUND - Feature not present in PrintTicket
    E_*                 - On error

--*/
HRESULT
CBookPTHandler::GetData(
    _Out_ BindingData* pBindData
    )
{
    HRESULT hr = S_OK;

    if (SUCCEEDED(hr = CHECK_POINTER(pBindData, E_POINTER)))
    {
        for (EBinding bindFeature = EBindingMin;
             bindFeature < EBindingMax;
             bindFeature = static_cast<EBinding>(bindFeature + 1))
        {
            CComBSTR bstrBindOption;
            CComBSTR bstrFeature(BIND_FEATURES[bindFeature]);

            if (SUCCEEDED(hr = GetFeatureOption(bstrFeature, &bstrBindOption)))
            {
                pBindData->bindFeature = bindFeature;

                //
                // Identify the option
                //
                for (EBindingOption bindOption = EBindingOptionMin;
                     bindOption < EBindingOptionMax;
                     bindOption = static_cast<EBindingOption>(bindOption + 1))
                {
                    if (bstrBindOption == BIND_OPTIONS[bindOption])
                    {
                        pBindData->bindOption = bindOption;
                        break;
                    }
                }

                //
                // Get the gutter value if one exists otherwise use a default
                //
                if (FAILED(GetScoredPropertyValue(bstrFeature, CComBSTR(BIND_PROP), &pBindData->bindGutter)))
                {
                    pBindData->bindGutter = 0;
                }

                break;
            }
            else if (hr != E_ELEMENT_NOT_FOUND)
            {
                //
                // We have an error other than the element is not present
                // so we break and let the result return
                //
                break;
            }
        }
    }

    //
    // Validate the data
    //
    if (SUCCEEDED(hr))
    {
        if (pBindData->bindFeature < EBindingMin ||
            pBindData->bindFeature >= EBindingMax ||
            pBindData->bindOption < EBindingOptionMin ||
            pBindData->bindOption >= EBindingOptionMax)
        {
            hr = E_FAIL;
        }
    }

    ERR_ON_HR_EXC(hr, E_ELEMENT_NOT_FOUND);
    return hr;
}

/*++

Routine Name:

    CBookPTHandler::SetData

Routine Description:

    This routine sets the binding data in the PrintTicket passed to the
    class constructor.

Arguments:

    pBindData - Pointer to the binding data to be set in the PrintTicket

Return Value:

    HRESULT
    S_OK - On success
    E_*  - On error

--*/
HRESULT
CBookPTHandler::SetData(
    _In_ CONST BindingData* pBindData
    )
{
    HRESULT hr = S_OK;

    if (SUCCEEDED(hr = CHECK_POINTER(pBindData, E_POINTER)))
    {
        if (pBindData->bindFeature <  EBindingMin ||
            pBindData->bindFeature >= EBindingMax ||
            pBindData->bindOption  <  EBindingOptionMin ||
            pBindData->bindOption  >= EBindingOptionMax)
        {
            hr = E_INVALIDARG;
        }
    }

    //
    // Delete any exsting NUp settings as JobNUpAllDocumentsContiguously and DocumentNUp are mutually exclusive
    //
    if (SUCCEEDED(hr) &&
        pBindData->bindOption != XDPrintSchema::Binding::None)
    {
        //
        // Create the following elements
        //    Feature and Option
        //    Parameter Ref and Parameter Init
        //    ScoredProperty
        //
        // Then append the scored property to the option node and the feature
        // and parameter init nodes to the root PrintTicket node. Note: the
        // scored poperty is created passing the parameter ref so it is already
        // appended
        //
        CComPtr<IXMLDOMElement> pFeature(NULL);
        CComPtr<IXMLDOMElement> pOption(NULL);
        CComPtr<IXMLDOMElement> pParamRef(NULL);
        CComPtr<IXMLDOMElement> pParamInit(NULL);
        CComPtr<IXMLDOMElement> pScoredProp(NULL);

        CComBSTR bstrFeature(BIND_FEATURES[pBindData->bindFeature]);

        if (SUCCEEDED(DeleteFeature(bstrFeature)))
        {
            CComBSTR bstrPropName(BIND_PROP_REF_SUFFIX);
            CComBSTR bstrParamRefName(bstrFeature);
            bstrParamRefName += bstrPropName;

            if (SUCCEEDED(hr = CreateFeatureOptionPair(bstrFeature,
                                                       CComBSTR(BIND_OPTIONS[pBindData->bindOption]),
                                                       &pFeature,
                                                       &pOption)) &&
                SUCCEEDED(hr = CreateParamRefInitPair(bstrParamRefName, pBindData->bindGutter, &pParamRef, &pParamInit)) &&
                SUCCEEDED(hr = CreateScoredProperty(CComBSTR(BIND_PROP), pParamRef, &pScoredProp)) &&
                SUCCEEDED(hr = pOption->appendChild(pScoredProp, NULL)) &&
                SUCCEEDED(hr = AppendToElement(CComBSTR(PRINTTICKET_NAME), pFeature)))
            {
                hr = AppendToElement(CComBSTR(PRINTTICKET_NAME), pParamInit);
            }
        }
    }

    ERR_ON_HR(hr);
    return hr;
}

/*++

Routine Name:

    CBookPTHandler::Delete

Routine Description:

    This routine deletes the binding feature from the PrintTicket passed to the
    class constructor

Arguments:

    None

Return Value:

    HRESULT
    S_OK - On success
    E_*  - On error

--*/
HRESULT
CBookPTHandler::Delete(
    VOID
    )
{
    HRESULT hr = S_OK;

    for (EBinding bindFeature = EBindingMin;
         bindFeature < EBindingMax && SUCCEEDED(hr);
         bindFeature = static_cast<EBinding>(bindFeature + 1))
    {
        hr = DeleteFeature(CComBSTR(BIND_FEATURES[bindFeature]));
    }

    ERR_ON_HR(hr);
    return hr;
}