Home | History | Annotate | Download | only in pdfapi
      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 
     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 
     19 bool SkPdfPDF_XOutputIntentDictionary::has_Type() const {
     20   return get("Type", "") != NULL;
     21 }
     22 
     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 
     31 bool SkPdfPDF_XOutputIntentDictionary::has_S() const {
     32   return get("S", "") != NULL;
     33 }
     34 
     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 
     43 bool SkPdfPDF_XOutputIntentDictionary::has_OutputCondition() const {
     44   return get("OutputCondition", "") != NULL;
     45 }
     46 
     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 
     55 bool SkPdfPDF_XOutputIntentDictionary::has_OutputConditionIdentifier() const {
     56   return get("OutputConditionIdentifier", "") != NULL;
     57 }
     58 
     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 
     67 bool SkPdfPDF_XOutputIntentDictionary::has_RegistryName() const {
     68   return get("RegistryName", "") != NULL;
     69 }
     70 
     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 
     79 bool SkPdfPDF_XOutputIntentDictionary::has_Info() const {
     80   return get("Info", "") != NULL;
     81 }
     82 
     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 
     91 bool SkPdfPDF_XOutputIntentDictionary::has_DestOutputProfile() const {
     92   return get("DestOutputProfile", "") != NULL;
     93 }
     94