blob: b24f8a5877b23f78faf86df791d2c4ef44aec4a9 [file] [log] [blame]
commit-bot@chromium.org47401352013-07-23 21:49:29 +00001/*
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 "SkPDFResourceDict.h"
martina.kollarovab8d6af12016-06-29 05:12:31 -07009#include "SkPDFTypes.h"
commit-bot@chromium.org47401352013-07-23 21:49:29 +000010#include "SkPostConfig.h"
11
commit-bot@chromium.org47401352013-07-23 21:49:29 +000012// Sanity check that the values of enum SkPDFResourceType correspond to the
13// expected values as defined in the arrays below.
14// If these are failing, you may need to update the resource_type_prefixes
15// and resource_type_names arrays below.
bungeman99fe8222015-08-20 07:57:51 -070016static_assert(SkPDFResourceDict::kExtGState_ResourceType == 0, "resource_type_mismatch");
17static_assert(SkPDFResourceDict::kPattern_ResourceType == 1, "resource_type_mismatch");
18static_assert(SkPDFResourceDict::kXObject_ResourceType == 2, "resource_type_mismatch");
19static_assert(SkPDFResourceDict::kFont_ResourceType == 3, "resource_type_mismatch");
commit-bot@chromium.org47401352013-07-23 21:49:29 +000020
21static const char resource_type_prefixes[] = {
22 'G',
23 'P',
24 'X',
25 'F'
26};
27
28static const char* resource_type_names[] = {
29 "ExtGState",
30 "Pattern",
31 "XObject",
32 "Font"
33};
34
35static char get_resource_type_prefix(
36 SkPDFResourceDict::SkPDFResourceType type) {
37 SkASSERT(type >= 0);
38 SkASSERT(type < SkPDFResourceDict::kResourceTypeCount);
39
40 return resource_type_prefixes[type];
41}
42
43static const char* get_resource_type_name(
44 SkPDFResourceDict::SkPDFResourceType type) {
45 SkASSERT(type >= 0);
halcanary130444f2015-04-25 06:45:07 -070046 SkASSERT(type < SK_ARRAY_COUNT(resource_type_names));
commit-bot@chromium.org47401352013-07-23 21:49:29 +000047
48 return resource_type_names[type];
49}
50
commit-bot@chromium.org47401352013-07-23 21:49:29 +000051SkString SkPDFResourceDict::getResourceName(
halcanary2b861552015-04-09 13:27:40 -070052 SkPDFResourceDict::SkPDFResourceType type, int key) {
commit-bot@chromium.org47401352013-07-23 21:49:29 +000053 SkString keyString;
54 keyString.printf("%c%d", get_resource_type_prefix(type), key);
55 return keyString;
56}
57
halcanary2b861552015-04-09 13:27:40 -070058static void add_subdict(
59 const SkTDArray<SkPDFObject*>& resourceList,
60 SkPDFResourceDict::SkPDFResourceType type,
61 SkPDFDict* dst) {
62 if (0 == resourceList.count()) {
63 return;
commit-bot@chromium.org47401352013-07-23 21:49:29 +000064 }
halcanaryece83922016-03-08 08:32:12 -080065 auto resources = sk_make_sp<SkPDFDict>();
halcanary2b861552015-04-09 13:27:40 -070066 for (int i = 0; i < resourceList.count(); i++) {
halcanary130444f2015-04-25 06:45:07 -070067 resources->insertObjRef(SkPDFResourceDict::getResourceName(type, i),
halcanarye94ea622016-03-09 07:52:09 -080068 sk_ref_sp(resourceList[i]));
halcanary2b861552015-04-09 13:27:40 -070069 }
halcanary8103a342016-03-08 15:10:16 -080070 dst->insertObject(get_resource_type_name(type), std::move(resources));
halcanary2b861552015-04-09 13:27:40 -070071}
commit-bot@chromium.org47401352013-07-23 21:49:29 +000072
halcanary8103a342016-03-08 15:10:16 -080073sk_sp<SkPDFDict> SkPDFResourceDict::Make(
halcanary2b861552015-04-09 13:27:40 -070074 const SkTDArray<SkPDFObject*>* gStateResources,
75 const SkTDArray<SkPDFObject*>* patternResources,
76 const SkTDArray<SkPDFObject*>* xObjectResources,
77 const SkTDArray<SkPDFObject*>* fontResources) {
halcanaryece83922016-03-08 08:32:12 -080078 auto dict = sk_make_sp<SkPDFDict>();
halcanary2b861552015-04-09 13:27:40 -070079 static const char kProcs[][7] = {
80 "PDF", "Text", "ImageB", "ImageC", "ImageI"};
halcanaryece83922016-03-08 08:32:12 -080081 auto procSets = sk_make_sp<SkPDFArray>();
halcanary2b861552015-04-09 13:27:40 -070082
83 procSets->reserve(SK_ARRAY_COUNT(kProcs));
84 for (size_t i = 0; i < SK_ARRAY_COUNT(kProcs); i++) {
85 procSets->appendName(kProcs[i]);
86 }
halcanary8103a342016-03-08 15:10:16 -080087 dict->insertObject("ProcSets", std::move(procSets));
halcanary2b861552015-04-09 13:27:40 -070088
89 if (gStateResources) {
halcanaryfcad44b2016-03-06 14:47:10 -080090 add_subdict(*gStateResources, kExtGState_ResourceType, dict.get());
halcanary2b861552015-04-09 13:27:40 -070091 }
92 if (patternResources) {
halcanaryfcad44b2016-03-06 14:47:10 -080093 add_subdict(*patternResources, kPattern_ResourceType, dict.get());
halcanary2b861552015-04-09 13:27:40 -070094 }
95 if (xObjectResources) {
halcanaryfcad44b2016-03-06 14:47:10 -080096 add_subdict(*xObjectResources, kXObject_ResourceType, dict.get());
halcanary2b861552015-04-09 13:27:40 -070097 }
98 if (fontResources) {
halcanaryfcad44b2016-03-06 14:47:10 -080099 add_subdict(*fontResources, kFont_ResourceType, dict.get());
halcanary2b861552015-04-09 13:27:40 -0700100 }
halcanary8103a342016-03-08 15:10:16 -0800101 return dict;
commit-bot@chromium.org47401352013-07-23 21:49:29 +0000102}