xrubythreadconnector.cpp
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 #include "xrubysupport.h"
15 #include "xrubythreadconnector.h"
16 #include "xrubythread.h"
17 #include <QPushButton>
18 #include <QLabel>
19 #include <QTextBrowser>
20 #include <QLineEdit>
21 #include "ui_rubythreadtool.h"
22 #include "icons/icon.h"
23 
24 XRubyThreadConnector::XRubyThreadConnector(
25  const shared_ptr<XRubyThread> &rbthread, FrmRubyThread *form,
26  const shared_ptr<XRuby> &rbsupport) :
27  XQConnector(rbthread, form),
28  m_resume(XNode::createOrphan<XTouchableNode>("Resume", true)),
29  m_kill(XNode::createOrphan<XTouchableNode>("Kill", true)),
30  m_pForm(form),
31  m_rubyThread(rbthread),
32  m_rubySupport(rbsupport),
33  m_conFilename(xqcon_create<XQLabelConnector>(
34  rbthread->filename(), form->m_plblFilename)),
35  m_conStatus(xqcon_create<XQLabelConnector>(
36  rbthread->status(), form->m_plblStatus)),
37  m_conResume(xqcon_create<XQButtonConnector>(
38  m_resume, (form->m_pbtnResume))),
39  m_conKill(xqcon_create<XQButtonConnector>(
40  m_kill, form->m_pbtnKill)),
41  m_conLineinput(xqcon_create<XQLineEditConnector>(
42  rbthread->lineinput(), form->m_edLineinput)) {
43 
44  form->m_pbtnResume->setIcon(
45  QApplication::style()->standardIcon(QStyle::SP_MediaPlay));
46  form->m_pbtnKill->setIcon(
47  QApplication::style()->standardIcon(QStyle::SP_BrowserStop));
48 
49  m_pForm->m_ptxtDefout->setReadOnly(true);
50  m_pForm->m_ptxtDefout->setOpenLinks(false);
51  m_pForm->m_ptxtDefout->setOpenExternalLinks(false);
52 
53  m_resume->iterate_commit([=](Transaction &tr){
54  m_lsnOnResumeTouched = tr[ *m_resume].onTouch().connectWeakly(
55  shared_from_this(), &XRubyThreadConnector::onResumeTouched);
56  });
57  m_kill->iterate_commit([=](Transaction &tr){
58  m_lsnOnKillTouched = tr[ *m_kill].onTouch().connectWeakly(
59  shared_from_this(), &XRubyThreadConnector::onKillTouched);
60  });
61  Snapshot shot = rbthread->iterate_commit([=](Transaction &tr){
62  m_lsnOnDefout = tr[ *rbthread].onMessageOut().connectWeakly(
63  shared_from_this(), &XRubyThreadConnector::onDefout, XListener::FLAG_MAIN_THREAD_CALL);
64  m_lsnOnStatusChanged = tr[ *rbthread->status()].onValueChanged().connectWeakly(
65  shared_from_this(), &XRubyThreadConnector::onStatusChanged);
66  });
67  onStatusChanged(shot, rbthread->status().get());
68 
69  form->setWindowIcon( *g_pIconScript);
70  form->setWindowTitle(rbthread->getLabel());
71 }
72 XRubyThreadConnector::~XRubyThreadConnector() {
73  if(isItemAlive()) {
74  m_pForm->m_ptxtDefout->clear();
75  }
76 // m_rubyThread->kill();
77  m_rubySupport->release(m_rubyThread);
78 }
79 void
80 XRubyThreadConnector::onStatusChanged(const Snapshot &shot, XValueNodeBase *) {
81  bool alive = m_rubyThread->isAlive();
82  m_kill->setUIEnabled(alive);
83  bool running = m_rubyThread->isRunning();
84  m_resume->setUIEnabled(alive && !running);
85 }
86 void
87 XRubyThreadConnector::onResumeTouched(const Snapshot &shot, XTouchableNode *node) {
88  m_rubyThread->resume();
89 }
90 void
91 XRubyThreadConnector::onKillTouched(const Snapshot &shot, XTouchableNode *node) {
92  m_rubyThread->kill();
93 }
94 void
95 XRubyThreadConnector::onDefout(const Snapshot &shot, const shared_ptr<XString> &str) {
96  m_pForm->m_ptxtDefout->append( *str);
97 }

Generated for KAME4 by  doxygen 1.8.3