epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 2 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * Copyright 2010 The Android Open Source Project |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 4 | * |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 9 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 10 | #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.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 18 | class SkPDFFormXObject; |
| 19 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 20 | /** \class SkPDFGraphicState |
| 21 | SkPaint objects roughly correspond to graphic state dictionaries that can |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 22 | 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.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 24 | 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 | */ |
| 29 | class SkPDFGraphicState : public SkPDFDict { |
commit-bot@chromium.org | ab1c138 | 2013-12-05 12:08:12 +0000 | [diff] [blame] | 30 | SK_DECLARE_INST_COUNT(SkPDFGraphicState) |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 31 | public: |
commit-bot@chromium.org | 93a2e21 | 2013-07-23 23:16:03 +0000 | [diff] [blame] | 32 | enum SkPDFSMaskMode { |
| 33 | kAlpha_SMaskMode, |
| 34 | kLuminosity_SMaskMode |
| 35 | }; |
| 36 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 37 | virtual ~SkPDFGraphicState(); |
| 38 | |
edisonn@google.com | 6addb19 | 2013-04-02 15:33:08 +0000 | [diff] [blame] | 39 | virtual void getResources(const SkTSet<SkPDFObject*>& knownResourceObjects, |
| 40 | SkTSet<SkPDFObject*>* newResourceObjects); |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 41 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 42 | // Override emitObject and getOutputSize so that we can populate |
| 43 | // the dictionary on demand. |
| 44 | virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog, |
| 45 | bool indirect); |
| 46 | virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect); |
| 47 | |
| 48 | /** Get the graphic state for the passed SkPaint. The reference count of |
| 49 | * the object is incremented and it is the caller's responsibility to |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 50 | * unreference it when done. This is needed to accommodate the weak |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 51 | * reference pattern used when the returned object is new and has no |
| 52 | * other references. |
| 53 | * @param paint The SkPaint to emulate. |
| 54 | */ |
reed@google.com | f6c3ebd | 2011-07-20 17:20:28 +0000 | [diff] [blame] | 55 | static SkPDFGraphicState* GetGraphicStateForPaint(const SkPaint& paint); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 56 | |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 57 | /** Make a graphic state that only sets the passed soft mask. The |
| 58 | * reference count of the object is incremented and it is the caller's |
| 59 | * responsibility to unreference it when done. |
commit-bot@chromium.org | 93a2e21 | 2013-07-23 23:16:03 +0000 | [diff] [blame] | 60 | * @param sMask The form xobject to use as a soft mask. |
| 61 | * @param invert Indicates if the alpha of the sMask should be inverted. |
| 62 | * @param sMaskMode Whether to use alpha or luminosity for the sMask. |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 63 | */ |
reed@google.com | f6c3ebd | 2011-07-20 17:20:28 +0000 | [diff] [blame] | 64 | static SkPDFGraphicState* GetSMaskGraphicState(SkPDFFormXObject* sMask, |
commit-bot@chromium.org | 93a2e21 | 2013-07-23 23:16:03 +0000 | [diff] [blame] | 65 | bool invert, |
| 66 | SkPDFSMaskMode sMaskMode); |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 67 | |
| 68 | /** Get a graphic state that only unsets the soft mask. The reference |
| 69 | * count of the object is incremented and it is the caller's responsibility |
| 70 | * to unreference it when done. This is needed to accommodate the weak |
| 71 | * reference pattern used when the returned object is new and has no |
| 72 | * other references. |
| 73 | */ |
reed@google.com | f6c3ebd | 2011-07-20 17:20:28 +0000 | [diff] [blame] | 74 | static SkPDFGraphicState* GetNoSMaskGraphicState(); |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 75 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 76 | private: |
| 77 | const SkPaint fPaint; |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 78 | SkTDArray<SkPDFObject*> fResources; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 79 | bool fPopulated; |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 80 | bool fSMask; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 81 | |
| 82 | class GSCanonicalEntry { |
| 83 | public: |
| 84 | SkPDFGraphicState* fGraphicState; |
| 85 | const SkPaint* fPaint; |
| 86 | |
| 87 | bool operator==(const GSCanonicalEntry& b) const; |
| 88 | explicit GSCanonicalEntry(SkPDFGraphicState* gs) |
| 89 | : fGraphicState(gs), |
| 90 | fPaint(&gs->fPaint) {} |
vandebo@chromium.org | 7332207 | 2011-06-21 21:19:41 +0000 | [diff] [blame] | 91 | explicit GSCanonicalEntry(const SkPaint* paint) |
| 92 | : fGraphicState(NULL), |
| 93 | fPaint(paint) {} |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | // This should be made a hash table if performance is a problem. |
reed@google.com | f6c3ebd | 2011-07-20 17:20:28 +0000 | [diff] [blame] | 97 | static SkTDArray<GSCanonicalEntry>& CanonicalPaints(); |
digit@google.com | 1771cbf | 2012-01-26 21:26:40 +0000 | [diff] [blame] | 98 | static SkBaseMutex& CanonicalPaintsMutex(); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 99 | |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 100 | SkPDFGraphicState(); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 101 | explicit SkPDFGraphicState(const SkPaint& paint); |
| 102 | |
| 103 | void populateDict(); |
| 104 | |
vandebo@chromium.org | 19e3c1e | 2011-05-25 00:41:30 +0000 | [diff] [blame] | 105 | static SkPDFObject* GetInvertFunction(); |
| 106 | |
reed@google.com | f6c3ebd | 2011-07-20 17:20:28 +0000 | [diff] [blame] | 107 | static int Find(const SkPaint& paint); |
commit-bot@chromium.org | ab1c138 | 2013-12-05 12:08:12 +0000 | [diff] [blame] | 108 | typedef SkPDFDict INHERITED; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 109 | }; |
| 110 | |
| 111 | #endif |