xrubysupport.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 //---------------------------------------------------------------------------
15 
16 #ifndef xrubysupportH
17 #define xrubysupportH
18 
19 #include "rubywrapper.h"
20 #include "xrubythread.h"
21 #include "xnode.h"
22 #include "xlistnode.h"
23 
24 class XMeasure;
25 
26 //! Ruby scripting support, containing a thread running Ruby monitor program.
27 //! The monitor program synchronize Ruby threads and XRubyThread objects.
28 //! \sa XRubyThread
29 class XRuby : public XAliasListNode<XRubyThread> {
30 public:
31  XRuby(const char *name, bool runtime, const shared_ptr<XMeasure> &measure);
32  virtual ~XRuby();
33 
34  void resume() {m_thread.resume();}
35  void terminate() {m_thread.terminate();}
36  void join() {m_thread.waitFor();}
37 
38  struct Payload : public XAliasListNode<XRubyThread>::Payload {
39  struct tCreateChild {
40  XString type;
41  XString name;
42  shared_ptr<XListNodeBase> lnode;
43  XCondition cond;
44  shared_ptr<XNode> child;
45  };
46  using Talker = Talker<shared_ptr<tCreateChild>>;
47  Talker &onChildCreated() {return m_tlkOnChildCreated;}
48  const Talker &onChildCreated() const {return m_tlkOnChildCreated;}
49  private:
50  Talker m_tlkOnChildCreated;
51  };
52 protected:
53  virtual void *execute(const atomic<bool> &);
54 private:
55  //! Ruby Objects
56  shared_ptr<XRubyThread> findRubyThread(const shared_ptr<XNode> &self, Ruby::Value threadid);
57  //! def. output write()
58  Ruby::Value my_rbdefout(const shared_ptr<XNode> &, Ruby::Value str, Ruby::Value threadid);
59  //! def. input gets(). Return nil if the buffer is empty.
60  Ruby::Value my_rbdefin(const shared_ptr<XNode> &, Ruby::Value threadid);
61  //!
62  Ruby::Value is_main_terminated(const shared_ptr<XNode> &node);
63  //! XNode wrappers
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);
77 
78  shared_ptr<XListener> m_lsnChildCreated;
79  void onChildCreated(const Snapshot &shot, const shared_ptr<Payload::tCreateChild> &x);
80 
81  const weak_ptr<XMeasure> m_measure;
82  XThread<XRuby> m_thread;
83 
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;
88 };
89 
90 //---------------------------------------------------------------------------
91 #endif

Generated for KAME4 by  doxygen 1.8.3