blob: 2efe1c6f92d1dd434064e026bd99e48c32789bee (
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
|
#include "SkPdfStandardSecurityHandlerDictionary_autogen.h"
#include "SkPdfNativeDoc.h"
double SkPdfStandardSecurityHandlerDictionary::R(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("R", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isNumber()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->numberValue();
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
bool SkPdfStandardSecurityHandlerDictionary::has_R() const {
return get("R", "") != NULL;
}
SkString SkPdfStandardSecurityHandlerDictionary::O(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("O", "");
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 required field, assert for known good pdfs
return SkString();
}
bool SkPdfStandardSecurityHandlerDictionary::has_O() const {
return get("O", "") != NULL;
}
SkString SkPdfStandardSecurityHandlerDictionary::U(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("U", "");
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 required field, assert for known good pdfs
return SkString();
}
bool SkPdfStandardSecurityHandlerDictionary::has_U() const {
return get("U", "") != NULL;
}
int64_t SkPdfStandardSecurityHandlerDictionary::P(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("P", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
bool SkPdfStandardSecurityHandlerDictionary::has_P() const {
return get("P", "") != NULL;
}
|