b74bdf0249
git-svn-id: http://skia.googlecode.com/svn/trunk@10842 2bbb7eff-a529-9590-31e7-b0007b416f81
52 lines
2.0 KiB
C++
52 lines
2.0 KiB
C++
#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;
|
|
}
|