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 "SkPdfMacOsFileInformationDictionary_autogen.h"
9#include "SkPdfNativeDoc.h"
10
11SkString SkPdfMacOsFileInformationDictionary::Subtype(SkPdfNativeDoc* doc) {
12  SkPdfNativeObject* ret = get("Subtype", "");
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 default value for optional fields
16  return SkString();
17}
18
19bool SkPdfMacOsFileInformationDictionary::has_Subtype() const {
20  return get("Subtype", "") != NULL;
21}
22
23SkString SkPdfMacOsFileInformationDictionary::Creator(SkPdfNativeDoc* doc) {
24  SkPdfNativeObject* ret = get("Creator", "");
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 default value for optional fields
28  return SkString();
29}
30
31bool SkPdfMacOsFileInformationDictionary::has_Creator() const {
32  return get("Creator", "") != NULL;
33}
34
35SkPdfStream* SkPdfMacOsFileInformationDictionary::ResFork(SkPdfNativeDoc* doc) {
36  SkPdfNativeObject* ret = get("ResFork", "");
37  if (doc) {ret = doc->resolveReference(ret);}
38  if ((ret != NULL && ret->hasStream()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->getStream();
39  // TODO(edisonn): warn about missing default value for optional fields
40  return NULL;
41}
42
43bool SkPdfMacOsFileInformationDictionary::has_ResFork() const {
44  return get("ResFork", "") != NULL;
45}
46