blob: 246f1db26ea07ba0874ef738dc013a942a67b48b [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 The Android Open Source Project
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000010#ifndef SkPDFGraphicState_DEFINED
11#define SkPDFGraphicState_DEFINED
12
13#include "SkPaint.h"
14#include "SkPDFTypes.h"
15#include "SkTemplates.h"
16#include "SkThread.h"
17
vandebo@chromium.org6112c212011-05-13 03:50:38 +000018class SkPDFFormXObject;
19
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000020/** \class SkPDFGraphicState
21 SkPaint objects roughly correspond to graphic state dictionaries that can
vandebo@chromium.org6112c212011-05-13 03:50:38 +000022 be installed. So that a given dictionary is only output to the pdf file
23 once, we want to canonicalize them. Static methods in this class manage
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000024 a weakly referenced set of SkPDFGraphicState objects: when the last
25 reference to a SkPDFGraphicState is removed, it removes itself from the
26 static set of objects.
27
28*/
29class SkPDFGraphicState : public SkPDFDict {
commit-bot@chromium.orgab1c1382013-12-05 12:08:12 +000030 SK_DECLARE_INST_COUNT(SkPDFGraphicState)
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000031public:
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +000032 enum SkPDFSMaskMode {
33 kAlpha_SMaskMode,
34 kLuminosity_SMaskMode
35 };
36
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000037 virtual ~SkPDFGraphicState();
38
edisonn@google.com6addb192013-04-02 15:33:08 +000039 virtual void getResources(const SkTSet<SkPDFObject*>& knownResourceObjects,
40 SkTSet<SkPDFObject*>* newResourceObjects);
vandebo@chromium.org6112c212011-05-13 03:50:38 +000041
halcanaryf361b712015-01-13 07:12:57 -080042 // Override emitObject so that we can populate the dictionary on
43 // demand.
halcanary4fc48af2015-01-12 10:07:50 -080044 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000045
46 /** Get the graphic state for the passed SkPaint. The reference count of
47 * the object is incremented and it is the caller's responsibility to
vandebo@chromium.org6112c212011-05-13 03:50:38 +000048 * unreference it when done. This is needed to accommodate the weak
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000049 * reference pattern used when the returned object is new and has no
50 * other references.
51 * @param paint The SkPaint to emulate.
52 */
reed@google.comf6c3ebd2011-07-20 17:20:28 +000053 static SkPDFGraphicState* GetGraphicStateForPaint(const SkPaint& paint);
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000054
vandebo@chromium.org6112c212011-05-13 03:50:38 +000055 /** Make a graphic state that only sets the passed soft mask. The
56 * reference count of the object is incremented and it is the caller's
57 * responsibility to unreference it when done.
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +000058 * @param sMask The form xobject to use as a soft mask.
59 * @param invert Indicates if the alpha of the sMask should be inverted.
60 * @param sMaskMode Whether to use alpha or luminosity for the sMask.
vandebo@chromium.org6112c212011-05-13 03:50:38 +000061 */
reed@google.comf6c3ebd2011-07-20 17:20:28 +000062 static SkPDFGraphicState* GetSMaskGraphicState(SkPDFFormXObject* sMask,
commit-bot@chromium.org93a2e212013-07-23 23:16:03 +000063 bool invert,
64 SkPDFSMaskMode sMaskMode);
vandebo@chromium.org6112c212011-05-13 03:50:38 +000065
66 /** Get a graphic state that only unsets the soft mask. The reference
67 * count of the object is incremented and it is the caller's responsibility
68 * to unreference it when done. This is needed to accommodate the weak
69 * reference pattern used when the returned object is new and has no
70 * other references.
71 */
reed@google.comf6c3ebd2011-07-20 17:20:28 +000072 static SkPDFGraphicState* GetNoSMaskGraphicState();
vandebo@chromium.org6112c212011-05-13 03:50:38 +000073
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000074private:
75 const SkPaint fPaint;
vandebo@chromium.org6112c212011-05-13 03:50:38 +000076 SkTDArray<SkPDFObject*> fResources;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000077 bool fPopulated;
vandebo@chromium.org6112c212011-05-13 03:50:38 +000078 bool fSMask;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000079
80 class GSCanonicalEntry {
81 public:
82 SkPDFGraphicState* fGraphicState;
83 const SkPaint* fPaint;
84
85 bool operator==(const GSCanonicalEntry& b) const;
86 explicit GSCanonicalEntry(SkPDFGraphicState* gs)
87 : fGraphicState(gs),
88 fPaint(&gs->fPaint) {}
vandebo@chromium.org73322072011-06-21 21:19:41 +000089 explicit GSCanonicalEntry(const SkPaint* paint)
90 : fGraphicState(NULL),
91 fPaint(paint) {}
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000092 };
93
94 // This should be made a hash table if performance is a problem.
reed@google.comf6c3ebd2011-07-20 17:20:28 +000095 static SkTDArray<GSCanonicalEntry>& CanonicalPaints();
digit@google.com1771cbf2012-01-26 21:26:40 +000096 static SkBaseMutex& CanonicalPaintsMutex();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000097
vandebo@chromium.org6112c212011-05-13 03:50:38 +000098 SkPDFGraphicState();
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +000099 explicit SkPDFGraphicState(const SkPaint& paint);
100
101 void populateDict();
102
vandebo@chromium.org19e3c1e2011-05-25 00:41:30 +0000103 static SkPDFObject* GetInvertFunction();
104
reed@google.comf6c3ebd2011-07-20 17:20:28 +0000105 static int Find(const SkPaint& paint);
commit-bot@chromium.orgab1c1382013-12-05 12:08:12 +0000106 typedef SkPDFDict INHERITED;
vandebo@chromium.org9b49dc02010-10-20 22:23:29 +0000107};
108
109#endif