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
11SkPdfArray* 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
19bool SkPdfSeparationDictionary::has_Pages() const {
20  return get("Pages", "") != NULL;
21}
22
23bool SkPdfSeparationDictionary::isDeviceColorantAName(SkPdfNativeDoc* doc) {
24  SkPdfNativeObject* ret = get("DeviceColorant", "");
25  if (doc) {ret = doc->resolveReference(ret);}
26  return ret != NULL && ret->isName();
27}
28
29SkString 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
37bool SkPdfSeparationDictionary::isDeviceColorantAString(SkPdfNativeDoc* doc) {
38  SkPdfNativeObject* ret = get("DeviceColorant", "");
39  if (doc) {ret = doc->resolveReference(ret);}
40  return ret != NULL && ret->isAnyString();
41}
42
43SkString 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
51bool SkPdfSeparationDictionary::has_DeviceColorant() const {
52  return get("DeviceColorant", "") != NULL;
53}
54
55SkPdfArray* 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
63bool SkPdfSeparationDictionary::has_ColorSpace() const {
64  return get("ColorSpace", "") != NULL;
65}
66