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 "SkPdfPDF_XOutputIntentDictionary_autogen.h"
9 #include "SkPdfNativeDoc.h"
10
Type(SkPdfNativeDoc * doc)11 SkString SkPdfPDF_XOutputIntentDictionary::Type(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Type", "");
13 if (doc) {ret = doc->resolveReference(ret);}
14 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
15 // TODO(edisonn): warn about missing default value for optional fields
16 return SkString();
17 }
18
has_Type() const19 bool SkPdfPDF_XOutputIntentDictionary::has_Type() const {
20 return get("Type", "") != NULL;
21 }
22
S(SkPdfNativeDoc * doc)23 SkString SkPdfPDF_XOutputIntentDictionary::S(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("S", "");
25 if (doc) {ret = doc->resolveReference(ret);}
26 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
27 // TODO(edisonn): warn about missing required field, assert for known good pdfs
28 return SkString();
29 }
30
has_S() const31 bool SkPdfPDF_XOutputIntentDictionary::has_S() const {
32 return get("S", "") != NULL;
33 }
34
OutputCondition(SkPdfNativeDoc * doc)35 SkString SkPdfPDF_XOutputIntentDictionary::OutputCondition(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("OutputCondition", "");
37 if (doc) {ret = doc->resolveReference(ret);}
38 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
39 // TODO(edisonn): warn about missing default value for optional fields
40 return SkString();
41 }
42
has_OutputCondition() const43 bool SkPdfPDF_XOutputIntentDictionary::has_OutputCondition() const {
44 return get("OutputCondition", "") != NULL;
45 }
46
OutputConditionIdentifier(SkPdfNativeDoc * doc)47 SkString SkPdfPDF_XOutputIntentDictionary::OutputConditionIdentifier(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("OutputConditionIdentifier", "");
49 if (doc) {ret = doc->resolveReference(ret);}
50 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
51 // TODO(edisonn): warn about missing required field, assert for known good pdfs
52 return SkString();
53 }
54
has_OutputConditionIdentifier() const55 bool SkPdfPDF_XOutputIntentDictionary::has_OutputConditionIdentifier() const {
56 return get("OutputConditionIdentifier", "") != NULL;
57 }
58
RegistryName(SkPdfNativeDoc * doc)59 SkString SkPdfPDF_XOutputIntentDictionary::RegistryName(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("RegistryName", "");
61 if (doc) {ret = doc->resolveReference(ret);}
62 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
63 // TODO(edisonn): warn about missing default value for optional fields
64 return SkString();
65 }
66
has_RegistryName() const67 bool SkPdfPDF_XOutputIntentDictionary::has_RegistryName() const {
68 return get("RegistryName", "") != NULL;
69 }
70
Info(SkPdfNativeDoc * doc)71 SkString SkPdfPDF_XOutputIntentDictionary::Info(SkPdfNativeDoc* doc) {
72 SkPdfNativeObject* ret = get("Info", "");
73 if (doc) {ret = doc->resolveReference(ret);}
74 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
75 // TODO(edisonn): warn about missing default value for optional fields
76 return SkString();
77 }
78
has_Info() const79 bool SkPdfPDF_XOutputIntentDictionary::has_Info() const {
80 return get("Info", "") != NULL;
81 }
82
DestOutputProfile(SkPdfNativeDoc * doc)83 SkPdfStream* SkPdfPDF_XOutputIntentDictionary::DestOutputProfile(SkPdfNativeDoc* doc) {
84 SkPdfNativeObject* ret = get("DestOutputProfile", "");
85 if (doc) {ret = doc->resolveReference(ret);}
86 if ((ret != NULL && ret->hasStream()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->getStream();
87 // TODO(edisonn): warn about missing default value for optional fields
88 return NULL;
89 }
90
has_DestOutputProfile() const91 bool SkPdfPDF_XOutputIntentDictionary::has_DestOutputProfile() const {
92 return get("DestOutputProfile", "") != NULL;
93 }
94