1 /*
2 * Copyright 2013 Google Inc.
3
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "SkPdfSeparationDictionary_autogen.h"
9 #include "SkPdfNativeDoc.h"
10
Pages(SkPdfNativeDoc * doc)11 SkPdfArray* SkPdfSeparationDictionary::Pages(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Pages", "");
13 if (doc) {ret = doc->resolveReference(ret);}
14 if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfArray*)ret;
15 // TODO(edisonn): warn about missing required field, assert for known good pdfs
16 return NULL;
17 }
18
has_Pages() const19 bool SkPdfSeparationDictionary::has_Pages() const {
20 return get("Pages", "") != NULL;
21 }
22
isDeviceColorantAName(SkPdfNativeDoc * doc)23 bool SkPdfSeparationDictionary::isDeviceColorantAName(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("DeviceColorant", "");
25 if (doc) {ret = doc->resolveReference(ret);}
26 return ret != NULL && ret->isName();
27 }
28
getDeviceColorantAsName(SkPdfNativeDoc * doc)29 SkString SkPdfSeparationDictionary::getDeviceColorantAsName(SkPdfNativeDoc* doc) {
30 SkPdfNativeObject* ret = get("DeviceColorant", "");
31 if (doc) {ret = doc->resolveReference(ret);}
32 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
33 // TODO(edisonn): warn about missing required field, assert for known good pdfs
34 return SkString();
35 }
36
isDeviceColorantAString(SkPdfNativeDoc * doc)37 bool SkPdfSeparationDictionary::isDeviceColorantAString(SkPdfNativeDoc* doc) {
38 SkPdfNativeObject* ret = get("DeviceColorant", "");
39 if (doc) {ret = doc->resolveReference(ret);}
40 return ret != NULL && ret->isAnyString();
41 }
42
getDeviceColorantAsString(SkPdfNativeDoc * doc)43 SkString SkPdfSeparationDictionary::getDeviceColorantAsString(SkPdfNativeDoc* doc) {
44 SkPdfNativeObject* ret = get("DeviceColorant", "");
45 if (doc) {ret = doc->resolveReference(ret);}
46 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
47 // TODO(edisonn): warn about missing required field, assert for known good pdfs
48 return SkString();
49 }
50
has_DeviceColorant() const51 bool SkPdfSeparationDictionary::has_DeviceColorant() const {
52 return get("DeviceColorant", "") != NULL;
53 }
54
ColorSpace(SkPdfNativeDoc * doc)55 SkPdfArray* SkPdfSeparationDictionary::ColorSpace(SkPdfNativeDoc* doc) {
56 SkPdfNativeObject* ret = get("ColorSpace", "");
57 if (doc) {ret = doc->resolveReference(ret);}
58 if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfArray*)ret;
59 // TODO(edisonn): warn about missing default value for optional fields
60 return NULL;
61 }
62
has_ColorSpace() const63 bool SkPdfSeparationDictionary::has_ColorSpace() const {
64 return get("ColorSpace", "") != NULL;
65 }
66