blob: dd0c18a1202268bfe0111529dfa154aa8ce4d927 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/**
* @file
* @author 2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
* @copyright Simplified BSD
*
* @cond
* This program is free software: you can redistribute it and/or modify
* it under the terms of the FreeBSD license as published by the FreeBSD
* project.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the FreeBSD license along with this
* program. If not, see <http://www.opensource.org/licenses/bsd-license>.
* @endcond
*/
#ifndef V8DOM_H_LKE1HKJK
#define V8DOM_H_LKE1HKJK
#include "uscxml/Common.h"
#include "uscxml/Interpreter.h"
#include <v8.h>
#include <XPath/XPath.hpp>
#include "../Storage.h"
#define V8_DESTRUCTOR(type) \
static void jsDestructor(v8::Persistent<v8::Value> object, void* data) { \
v8::HandleScope handleScope; \
type* thing = static_cast<type*>(v8::Local<v8::External>::Cast(object->ToObject()->GetInternalField(0))->Value()); \
delete thing->nativeObj; \
delete thing; \
object.Dispose(); \
object.Clear(); \
}
#define V8_DESTRUCTOR_KEEP_WRAPPED(type) \
static void jsDestructor(v8::Persistent<v8::Value> object, void* data) { \
v8::HandleScope handleScope; \
type* thing = static_cast<type*>(v8::Local<v8::External>::Cast(object->ToObject()->GetInternalField(0))->Value()); \
delete thing; \
object.Dispose(); \
object.Clear(); \
}
namespace Arabica {
namespace DOM {
class V8DOM {
public:
V8DOM();
virtual ~V8DOM();
template <typename T>
static T* toClassPtr(v8::Local<v8::Value> data) {
if(data.IsEmpty())
return NULL;
else if(!data->IsExternal())
return NULL;
else
// return v8::External::Cast(*data)->Value();
return static_cast<T *>(v8::External::Unwrap(data));
return NULL;
}
static v8::Local<v8::External> toExternal(void* pointer) {
v8::HandleScope scope;
return scope.Close(v8::External::New(pointer));
// return v8::External::New(pointer);
}
uscxml::NameSpaceInfo* nsInfo;
Arabica::XPath::XPath<std::string>* xpath;
uscxml::Storage* storage;
};
class V8Exception : public std::runtime_error {
public:
V8Exception(const std::string& reason) :
std::runtime_error("DOMException") {
} // V8Exception
V8Exception(const V8Exception& rhs) :
std::runtime_error(rhs),
reason_(rhs.reason_) {
} // DOMException
virtual ~V8Exception() throw() {
} // DOMBadCast
virtual const char* what() const throw() {
return reason_.c_str();
} // what
private:
DOMBadCast& operator=(const DOMBadCast&);
bool operator==(const DOMBadCast&) const;
std::string reason_;
}; // class DOMException
}
}
#endif /* end of include guard: V8DOM_H_LKE1HKJK */
|