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 11SkString 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 19bool SkPdfPDF_XOutputIntentDictionary::has_Type() const { 20 return get("Type", "") != NULL; 21} 22 23SkString 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 31bool SkPdfPDF_XOutputIntentDictionary::has_S() const { 32 return get("S", "") != NULL; 33} 34 35SkString 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 43bool SkPdfPDF_XOutputIntentDictionary::has_OutputCondition() const { 44 return get("OutputCondition", "") != NULL; 45} 46 47SkString 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 55bool SkPdfPDF_XOutputIntentDictionary::has_OutputConditionIdentifier() const { 56 return get("OutputConditionIdentifier", "") != NULL; 57} 58 59SkString 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 67bool SkPdfPDF_XOutputIntentDictionary::has_RegistryName() const { 68 return get("RegistryName", "") != NULL; 69} 70 71SkString 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 79bool SkPdfPDF_XOutputIntentDictionary::has_Info() const { 80 return get("Info", "") != NULL; 81} 82 83SkPdfStream* 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 91bool SkPdfPDF_XOutputIntentDictionary::has_DestOutputProfile() const { 92 return get("DestOutputProfile", "") != NULL; 93} 94