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 "SkPdfBeadDictionary_autogen.h"
9#include "SkPdfNativeDoc.h"
10
11SkString SkPdfBeadDictionary::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 SkPdfBeadDictionary::has_Type() const {
20  return get("Type", "") != NULL;
21}
22
23SkPdfDictionary* SkPdfBeadDictionary::T(SkPdfNativeDoc* doc) {
24  SkPdfNativeObject* ret = get("T", "");
25  if (doc) {ret = doc->resolveReference(ret);}
26  if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfDictionary*)ret;
27  // TODO(edisonn): warn about missing default value for optional fields
28  return NULL;
29}
30
31bool SkPdfBeadDictionary::has_T() const {
32  return get("T", "") != NULL;
33}
34
35SkPdfDictionary* SkPdfBeadDictionary::N(SkPdfNativeDoc* doc) {
36  SkPdfNativeObject* ret = get("N", "");
37  if (doc) {ret = doc->resolveReference(ret);}
38  if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfDictionary*)ret;
39  // TODO(edisonn): warn about missing default value for optional fields
40  return NULL;
41}
42
43bool SkPdfBeadDictionary::has_N() const {
44  return get("N", "") != NULL;
45}
46
47SkPdfDictionary* SkPdfBeadDictionary::V(SkPdfNativeDoc* doc) {
48  SkPdfNativeObject* ret = get("V", "");
49  if (doc) {ret = doc->resolveReference(ret);}
50  if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfDictionary*)ret;
51  // TODO(edisonn): warn about missing default value for optional fields
52  return NULL;
53}
54
55bool SkPdfBeadDictionary::has_V() const {
56  return get("V", "") != NULL;
57}
58
59SkPdfDictionary* SkPdfBeadDictionary::P(SkPdfNativeDoc* doc) {
60  SkPdfNativeObject* ret = get("P", "");
61  if (doc) {ret = doc->resolveReference(ret);}
62  if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfDictionary*)ret;
63  // TODO(edisonn): warn about missing default value for optional fields
64  return NULL;
65}
66
67bool SkPdfBeadDictionary::has_P() const {
68  return get("P", "") != NULL;
69}
70
71SkRect SkPdfBeadDictionary::R(SkPdfNativeDoc* doc) {
72  SkPdfNativeObject* ret = get("R", "");
73  if (doc) {ret = doc->resolveReference(ret);}
74  if ((ret != NULL && ret->isRectangle()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->rectangleValue();
75  // TODO(edisonn): warn about missing required field, assert for known good pdfs
76  return SkRect::MakeEmpty();
77}
78
79bool SkPdfBeadDictionary::has_R() const {
80  return get("R", "") != NULL;
81}
82