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
|
// 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 (c) Microsoft Corporation. All rights reserved
//
// File Name:
//
// xpsrasfilter.cpp
//
// Abstract:
//
// Xps Rasterization Service filter implementation.
//
#include "precomp.h"
#include "WppTrace.h"
#include "Exception.h"
#include "filtertypes.h"
#include "UnknownBase.h"
#include "OMConvertor.h"
#include "rasinterface.h"
#include "BitmapHandler.h"
#include "PThandler.h"
#include "xpsrasfilter.h"
#include "xpsrasfilter.tmh"
namespace xpsrasfilter
{
long XPSRasFilter::ms_numObjects = 0; // Initialize static object count
//
//Routine Name:
//
// XPSRasFilter::XPSRasFilter
//
//Routine Description:
//
// Xps Rasterization Service sample filter default constructor.
//
//Arguments:
//
// None
//
//Return Value:
//
// None
//
XPSRasFilter::XPSRasFilter()
{
//
// Take ownership with no AddRef
//
m_pLiveness.Attach(new FilterLiveness());
::InterlockedIncrement(&ms_numObjects);
}
//
//Routine Name:
//
// XPSRasFilter::~XPSRasFilter
//
//Routine Description:
//
// Xps Rasterization Service sample filter destructor.
//
//Arguments:
//
// None
//
//Return Value:
//
// None
//
XPSRasFilter::~XPSRasFilter()
{
::InterlockedDecrement(&ms_numObjects);
}
//
//Routine Name:
//
// XPSRasFilter::InitializeFilter
//
//Routine Description:
//
// Exception boundary wrapper for IPrintPipelineFilter initialization.
//
//Arguments:
//
// pICommunicator - interface to interfilter communicator
// pIPropertyBag - interface to pipeline property bag
// pIPipelineControl - interface to pipeline control methods
//
//Return Value:
//
// ULONG
// New reference count
//
_Must_inspect_result_
HRESULT STDMETHODCALLTYPE
XPSRasFilter::InitializeFilter(
_In_ IInterFilterCommunicator *pICommunicator,
_In_ IPrintPipelinePropertyBag *pIPropertyBag,
_In_ IPrintPipelineManagerControl *pIPipelineControl
)
{
DoTraceMessage(XPSRASFILTER_TRACE_INFO, L"Initializing Filter");
if (pICommunicator == NULL ||
pIPropertyBag == NULL ||
pIPipelineControl == NULL)
{
WPP_LOG_ON_FAILED_HRESULT(E_POINTER);
return E_POINTER;
}
HRESULT hr = S_OK;
try
{
InitializeFilter_throws(
pICommunicator,
pIPropertyBag
);
}
CATCH_VARIOUS(hr);
return hr;
}
//
//Routine Name:
//
// XPSRasFilter::InitializeFilter_throws
//
//Routine Description:
//
// Implements IPrintPipelineFilter initialization. Gets
// all necessary communication interfaces.
//
//Arguments:
//
// pICommunicator - interface to interfilter communicator
// pIPropertyBag - interface to pipeline property bag
//
VOID
XPSRasFilter::InitializeFilter_throws(
const IInterFilterCommunicator_t &pICommunicator,
const IPrintPipelinePropertyBag_t &pIPropertyBag
)
{
//
// Get the pipeline communication interfaces
//
THROW_ON_FAILED_HRESULT(
pICommunicator->RequestReader(reinterpret_cast<void**>(&m_pReader))
);
THROW_ON_FAILED_HRESULT(
pICommunicator->RequestWriter(reinterpret_cast<void**>(&m_pWriter))
);
{
//
// Check to ensure that the provided interfaces are as expected.
// That is, that the GUIDs were correctly listed in the
// pipeline configuration file
//
IXpsDocumentProvider_t pReaderCheck;
IPrintWriteStream_t pWriterCheck;
THROW_ON_FAILED_HRESULT(
m_pReader.QueryInterface(&pReaderCheck)
);
THROW_ON_FAILED_HRESULT(
m_pWriter.QueryInterface(&pWriterCheck)
);
}
//
// Save a pointer to the Property Bag for further
// initialization, later.
//
m_pIPropertyBag = pIPropertyBag;
}
//
//Routine Name:
//
// XPSRasFilter::ShutdownOperation
//
//Routine Description:
//
// Called asynchronously by the pipeline manager
// to shutdown filter operation.
//
//Arguments:
//
// None
//
//Return Value:
//
// HRESULT
// S_OK - On success
//
_Must_inspect_result_
HRESULT
XPSRasFilter::ShutdownOperation()
{
DoTraceMessage(XPSRASFILTER_TRACE_INFO, L"Shutting Down Operation");
m_pLiveness->Cancel();
return S_OK;
}
//
//Routine Name:
//
// XPSRasFilter::StartOperation
//
//Routine Description:
//
// Called by the pipeline manager to start processing
// a document. Exception boundary for page processing.
//
//Arguments:
//
// None
//
//Return Value:
//
// HRESULT
// S_OK - On success
// Otherwise - Failure
//
_Must_inspect_result_
HRESULT
XPSRasFilter::StartOperation()
{
HRESULT hr = S_OK;
DoTraceMessage(XPSRASFILTER_TRACE_INFO, L"Starting Operation");
//
// Process the Xps Package
//
try {
StartOperation_throws();
}
CATCH_VARIOUS(hr);
m_pWriter->Close();
return hr;
}
//
//Routine Name:
//
// XPSRasFilter::StartOperation_throws
//
//Routine Description:
//
// Iterates over the 'trunk' parts of the document
// and calls appropriate processing methods.
//
//Arguments:
//
// None
//
void
XPSRasFilter::StartOperation_throws()
{
//
// CoInitialize/CoUninitialize RAII object.
// COM is inititalized for the lifetime of this method.
//
SafeCoInit coInit;
IXpsOMObjectFactory_t pOMFactory;
//
// Create Xps Object Model Object Factory instance
//
THROW_ON_FAILED_HRESULT(
::CoCreateInstance(
__uuidof(XpsOMObjectFactory),
NULL,
CLSCTX_INPROC_SERVER,
__uuidof(IXpsOMObjectFactory),
reinterpret_cast<LPVOID*>(&pOMFactory)
)
);
IOpcFactory_t pOpcFactory;
//
// Create Opc Object Factory instance
//
THROW_ON_FAILED_HRESULT(
::CoCreateInstance(
__uuidof(OpcFactory),
NULL,
CLSCTX_INPROC_SERVER,
__uuidof(IOpcFactory),
reinterpret_cast<LPVOID*>(&pOpcFactory)
)
);
//
// Create the rasterization interface
//
RasterizationInterface_t pRasInterface =
RasterizationInterface::CreateRasterizationInterface(
m_pIPropertyBag,
m_pWriter
);
//
// Create the Print Ticket Handler
//
PrintTicketHandler_t pPrintTicketHandler =
PrintTicketHandler::CreatePrintTicketHandler(
m_pIPropertyBag
);
IUnknown_t pUnk;
//
// Get first part
//
THROW_ON_FAILED_HRESULT(m_pReader->GetXpsPart(&pUnk));
while (m_pLiveness->IsAlive() &&
pUnk != NULL)
{
IXpsDocument_t pDoc;
IFixedDocumentSequence_t pFDS;
IFixedDocument_t pFD;
IFixedPage_t pFP;
if (SUCCEEDED(pUnk.QueryInterface(&pFP)))
{
DoTraceMessage(XPSRASFILTER_TRACE_VERBOSE, L"Handling a Page");
pPrintTicketHandler->ProcessPart(pFP);
ParametersFromPrintTicket printTicketParams =
pPrintTicketHandler->GetMergedPrintTicketParams();
pRasInterface->RasterizePage(
CreateXpsOMPageFromIFixedPage(pFP, pOMFactory, pOpcFactory),
printTicketParams,
m_pLiveness
);
}
else if (SUCCEEDED(pUnk.QueryInterface(&pFD)))
{
pPrintTicketHandler->ProcessPart(pFD);
}
else if (SUCCEEDED(pUnk.QueryInterface(&pFDS)))
{
pPrintTicketHandler->ProcessPart(pFDS);
}
else if (SUCCEEDED(pUnk.QueryInterface(&pDoc)))
{
//
// Do nothing with the XML Document part
//
}
else
{
//
// Any other document 'trunk' parts are ignored.
//
}
pUnk.Release();
//
// Get Next Part
//
THROW_ON_FAILED_HRESULT(m_pReader->GetXpsPart(&pUnk));
}
pRasInterface->FinishRasterization();
}
} // namespace xpsrasfilter
|