aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfDocumentInformationDictionary_autogen.cpp
blob: 99e27969edcb123ec59258d6141adb06fb8041ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
 * Copyright 2013 Google Inc.

 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkPdfDocumentInformationDictionary_autogen.h"
#include "SkPdfNativeDoc.h"

SkString SkPdfDocumentInformationDictionary::Title(SkPdfNativeDoc* doc) {
  SkPdfNativeObject* ret = get("Title", "");
  if (doc) {ret = doc->resolveReference(ret);}
  if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
  // TODO(edisonn): warn about missing default value for optional fields
  return SkString();
}

bool SkPdfDocumentInformationDictionary::has_Title() const {
  return get("Title", "") != NULL;
}

SkString SkPdfDocumentInformationDictionary::Author(SkPdfNativeDoc* doc) {
  SkPdfNativeObject* ret = get("Author", "");
  if (doc) {ret = doc->resolveReference(ret);}
  if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
  // TODO(edisonn): warn about missing default value for optional fields
  return SkString();
}

bool SkPdfDocumentInformationDictionary::has_Author() const {
  return get("Author", "") != NULL;
}

SkString SkPdfDocumentInformationDictionary::Subject(SkPdfNativeDoc* doc) {
  SkPdfNativeObject* ret = get("Subject", "");
  if (doc) {ret = doc->resolveReference(ret);}
  if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
  // TODO(edisonn): warn about missing default value for optional fields
  return SkString();
}

bool SkPdfDocumentInformationDictionary::has_Subject() const {
  return get("Subject", "") != NULL;
}

SkString SkPdfDocumentInformationDictionary::Keywords(SkPdfNativeDoc* doc) {
  SkPdfNativeObject* ret = get("Keywords", "");
  if (doc) {ret = doc->resolveReference(ret);}
  if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
  // TODO(edisonn): warn about missing default value for optional fields
  return SkString();
}

bool SkPdfDocumentInformationDictionary::has_Keywords() const {
  return get("Keywords", "") != NULL;
}

SkString SkPdfDocumentInformationDictionary::Creator(SkPdfNativeDoc* doc) {
  SkPdfNativeObject* ret = get("Creator", "");
  if (doc) {ret = doc->resolveReference(ret);}
  if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
  // TODO(edisonn): warn about missing default value for optional fields
  return SkString();
}

bool SkPdfDocumentInformationDictionary::has_Creator() const {
  return get("Creator", "") != NULL;
}

SkString SkPdfDocumentInformationDictionary::Producer(SkPdfNativeDoc* doc) {
  SkPdfNativeObject* ret = get("Producer", "");
  if (doc) {ret = doc->resolveReference(ret);}
  if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
  // TODO(edisonn): warn about missing default value for optional fields
  return SkString();
}

bool SkPdfDocumentInformationDictionary::has_Producer() const {
  return get("Producer", "") != NULL;
}

SkPdfDate SkPdfDocumentInformationDictionary::CreationDate(SkPdfNativeDoc* doc) {
  SkPdfNativeObject* ret = get("CreationDate", "");
  if (doc) {ret = doc->resolveReference(ret);}
  if ((ret != NULL && ret->isDate()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->dateValue();
  // TODO(edisonn): warn about missing default value for optional fields
  return SkPdfDate();
}

bool SkPdfDocumentInformationDictionary::has_CreationDate() const {
  return get("CreationDate", "") != NULL;
}

SkPdfDate SkPdfDocumentInformationDictionary::ModDate(SkPdfNativeDoc* doc) {
  SkPdfNativeObject* ret = get("ModDate", "");
  if (doc) {ret = doc->resolveReference(ret);}
  if ((ret != NULL && ret->isDate()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->dateValue();
  // TODO(edisonn): warn about missing default value for optional fields
  return SkPdfDate();
}

bool SkPdfDocumentInformationDictionary::has_ModDate() const {
  return get("ModDate", "") != NULL;
}

SkString SkPdfDocumentInformationDictionary::Trapped(SkPdfNativeDoc* doc) {
  SkPdfNativeObject* ret = get("Trapped", "");
  if (doc) {ret = doc->resolveReference(ret);}
  if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
  // TODO(edisonn): warn about missing default value for optional fields
  return SkString();
}

bool SkPdfDocumentInformationDictionary::has_Trapped() const {
  return get("Trapped", "") != NULL;
}