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 "SkPdfCIDSystemInfoDictionary_autogen.h" 9 #include "SkPdfNativeDoc.h" 10 Registry(SkPdfNativeDoc * doc)11SkString SkPdfCIDSystemInfoDictionary::Registry(SkPdfNativeDoc* doc) { 12 SkPdfNativeObject* ret = get("Registry", ""); 13 if (doc) {ret = doc->resolveReference(ret);} 14 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2(); 15 // TODO(edisonn): warn about missing required field, assert for known good pdfs 16 return SkString(); 17 } 18 has_Registry() const19bool SkPdfCIDSystemInfoDictionary::has_Registry() const { 20 return get("Registry", "") != NULL; 21 } 22 Ordering(SkPdfNativeDoc * doc)23SkString SkPdfCIDSystemInfoDictionary::Ordering(SkPdfNativeDoc* doc) { 24 SkPdfNativeObject* ret = get("Ordering", ""); 25 if (doc) {ret = doc->resolveReference(ret);} 26 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2(); 27 // TODO(edisonn): warn about missing required field, assert for known good pdfs 28 return SkString(); 29 } 30 has_Ordering() const31bool SkPdfCIDSystemInfoDictionary::has_Ordering() const { 32 return get("Ordering", "") != NULL; 33 } 34 Supplement(SkPdfNativeDoc * doc)35int64_t SkPdfCIDSystemInfoDictionary::Supplement(SkPdfNativeDoc* doc) { 36 SkPdfNativeObject* ret = get("Supplement", ""); 37 if (doc) {ret = doc->resolveReference(ret);} 38 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue(); 39 // TODO(edisonn): warn about missing required field, assert for known good pdfs 40 return 0; 41 } 42 has_Supplement() const43bool SkPdfCIDSystemInfoDictionary::has_Supplement() const { 44 return get("Supplement", "") != NULL; 45 } 46