blob: fefc482f6166b015007b03463bb383e9dd502314 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#ifndef SkScriptCallBack_DEFINED
9#define SkScriptCallBack_DEFINED
10
11#include "SkOperand2.h"
12#include "SkTDArray_Experimental.h"
13
14class SkScriptCallBack {
15public:
mtklein@google.comf1077f92013-11-20 15:13:49 +000016 virtual ~SkScriptCallBack() { }
17
rmistry@google.comd6176b02012-08-23 18:14:13 +000018 enum Type {
19 kBox,
20 kFunction,
21 kMember,
22 kMemberFunction,
23 kProperty,
24 kUnbox
25 };
reed@android.com8a1c16f2008-12-17 15:59:43 +000026
rmistry@google.comd6176b02012-08-23 18:14:13 +000027 virtual bool getReference(const char* , size_t len, SkScriptValue2* result) { return false; }
28 virtual SkOperand2::OpType getReturnType(size_t ref, SkOperand2*) {
29 return SkOperand2::kS32; }
30 virtual Type getType() const = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +000031};
32
33class SkScriptCallBackConvert : public SkScriptCallBack {
34public:
rmistry@google.comd6176b02012-08-23 18:14:13 +000035 virtual bool convert(SkOperand2::OpType type, SkOperand2* operand) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +000036};
37
38class SkScriptCallBackFunction : public SkScriptCallBack {
39public:
rmistry@google.comd6176b02012-08-23 18:14:13 +000040 virtual void getParamTypes(SkIntArray(SkOperand2::OpType)* types) = 0;
41 virtual Type getType() const { return kFunction; }
42 virtual bool invoke(size_t ref, SkOpArray* params, SkOperand2* value) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +000043};
44
45class SkScriptCallBackMember: public SkScriptCallBack {
46public:
rmistry@google.comd6176b02012-08-23 18:14:13 +000047 bool getMemberReference(const char* , size_t len, void* object, SkScriptValue2* ref);
48 virtual Type getType() const { return kMember; }
49 virtual bool invoke(size_t ref, void* object, SkOperand2* value) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +000050};
51
52class SkScriptCallBackMemberFunction : public SkScriptCallBack {
53public:
rmistry@google.comd6176b02012-08-23 18:14:13 +000054 bool getMemberReference(const char* , size_t len, void* object, SkScriptValue2* ref);
55 virtual void getParamTypes(SkIntArray(SkOperand2::OpType)* types) = 0;
56 virtual Type getType() const { return kMemberFunction; }
57 virtual bool invoke(size_t ref, void* object, SkOpArray* params, SkOperand2* value) = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +000058};
59
60class SkScriptCallBackProperty : public SkScriptCallBack {
61public:
rmistry@google.comd6176b02012-08-23 18:14:13 +000062 virtual bool getConstValue(const char* name, size_t len, SkOperand2* value) { return false; }
63 virtual bool getResult(size_t ref, SkOperand2* answer) { return false; }
64 virtual Type getType() const { return kProperty; }
reed@android.com8a1c16f2008-12-17 15:59:43 +000065};
66
67#endif // SkScriptCallBack_DEFINED