#include "Pooling.hpp"
#include "Utility.hpp"
+struct CYPropertyName;
+
JSGlobalContextRef CYGetJSContext(JSContextRef context);
sig::Type *Structor_(CYPool &pool, sig::Aggregate *aggregate);
-extern JSClassRef Functor_;
-
struct CYRoot :
CYData
{
+ // XXX: without this, CYData is zero-initialized?!
+ CYRoot() :
+ CYData()
+ {
+ }
+
_finline JSValueRef GetPrototype(JSContextRef context) const {
return NULL;
}
}
};
+class CYBuffer {
+ private:
+ JSObjectRef owner_;
+ CYPool *pool_;
+
+ public:
+ CYBuffer(JSContextRef context) :
+ owner_(CYPrivate<CYRoot>::Make(context)),
+ pool_(CYPrivate<CYRoot>::Get(context, owner_)->pool_)
+ {
+ auto internal(CYPrivate<CYRoot>::Get(context, owner_));
+ internal->pool_->malloc<int>(10);
+ }
+
+ operator JSObjectRef() const {
+ return owner_;
+ }
+
+ operator CYPool *() const {
+ return pool_;
+ }
+
+ CYPool *operator ->() const {
+ return pool_;
+ }
+};
+
namespace cy {
struct Functor :
CYRoot
{
+ public:
+ static JSClassRef Class_;
+
private:
void set() {
sig::sig_ffi_cif(*pool_, variadic_ ? signature_.count : 0, signature_, &cif_);
set();
}
- static JSStaticFunction const * const StaticFunctions;
- static JSStaticValue const * const StaticValues;
+ virtual CYPropertyName *GetName(CYPool &pool) const;
}; }
struct Closure_privateData :