19 #include "rubywrapper.h"
20 #include "xrubythread.h"
22 #include "xlistnode.h"
31 XRuby(
const char *name,
bool runtime,
const shared_ptr<XMeasure> &measure);
34 void resume() {m_thread.
resume();}
36 void join() {m_thread.
waitFor();}
42 shared_ptr<XListNodeBase> lnode;
44 shared_ptr<XNode> child;
46 using Talker = Talker<shared_ptr<tCreateChild>>;
47 Talker &onChildCreated() {
return m_tlkOnChildCreated;}
48 const Talker &onChildCreated()
const {
return m_tlkOnChildCreated;}
50 Talker m_tlkOnChildCreated;
56 shared_ptr<XRubyThread>
findRubyThread(
const shared_ptr<XNode> &
self, Ruby::Value threadid);
58 Ruby::Value
my_rbdefout(
const shared_ptr<XNode> &, Ruby::Value str, Ruby::Value threadid);
60 Ruby::Value
my_rbdefin(
const shared_ptr<XNode> &, Ruby::Value threadid);
62 Ruby::Value is_main_terminated(
const shared_ptr<XNode> &node);
64 static void strOnNode(
const shared_ptr<XValueNodeBase> &node, Ruby::Value value);
65 static Ruby::Value getValueOfNode(
const shared_ptr<XValueNodeBase> &node);
66 Ruby::Value rnode_create(
const shared_ptr<XNode> &);
67 Ruby::Value rnode_name(
const shared_ptr<XNode> &);
68 Ruby::Value rnode_touch(
const shared_ptr<XNode> &);
69 Ruby::Value rnode_count(
const shared_ptr<XNode> &);
70 Ruby::Value rnode_child(
const shared_ptr<XNode> &, Ruby::Value);
71 Ruby::Value rvaluenode_set(
const shared_ptr<XNode> &node, Ruby::Value);
72 Ruby::Value rvaluenode_load(
const shared_ptr<XNode> &node, Ruby::Value);
73 Ruby::Value rvaluenode_get(
const shared_ptr<XNode> &node);
74 Ruby::Value rvaluenode_to_str(
const shared_ptr<XNode> &node);
75 Ruby::Value rlistnode_create_child(
const shared_ptr<XNode> &, Ruby::Value, Ruby::Value);
76 Ruby::Value rlistnode_release_child(
const shared_ptr<XNode> &, Ruby::Value);
78 shared_ptr<XListener> m_lsnChildCreated;
79 void onChildCreated(
const Snapshot &shot,
const shared_ptr<Payload::tCreateChild> &x);
81 const weak_ptr<XMeasure> m_measure;
84 unique_ptr<Ruby> m_ruby;
85 unique_ptr<Ruby::Class<XRuby,XNode>> m_rubyClassNode;
86 unique_ptr<Ruby::Class<XRuby,XNode>> m_rubyClassValueNode;
87 unique_ptr<Ruby::Class<XRuby,XNode>> m_rubyClassListNode;