pulserdriverconnector.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 "pulserdriverconnector.h"
15 #include "pulserdriver.h"
16 #include "analyzer.h"
17 #include <QTableWidget>
18 #include <QHeaderView>
19 #include "graph.h"
20 #include "graphwidget.h"
21 
22 XQPulserDriverConnector::XQPulserDriverConnector(
23  const shared_ptr<XPulser> &node, QTableWidget *item, XQGraph *qgraph)
24  : XQConnector(node, item),
25  m_pTable(item),
26  m_pulser(node),
27  m_graph(XNode::createOrphan<XGraph>(node->getName().c_str(), false)) {
28 
29  shared_ptr<XPulser> pulser(node);
30  pulser->iterate_commit([=](Transaction &tr){
31  m_lsnOnPulseChanged = tr[ *pulser].onRecord().connectWeakly(
32  shared_from_this(), &XQPulserDriverConnector::onPulseChanged,
33  XListener::FLAG_MAIN_THREAD_CALL | XListener::FLAG_AVOID_DUP | XListener::FLAG_DELAY_ADAPTIVE);
34  });
35  m_pTable->setColumnCount(3);
36  double def = 50;
37  m_pTable->setColumnWidth(0, (int)(def * 1.5));
38  m_pTable->setColumnWidth(1, (int)(def * 1.5));
39  m_pTable->setColumnWidth(2, (int)(def * 3.0));
40  QStringList labels;
41  labels += "Time [ms]";
42  labels += "Diff [ms]";
43  labels += "Pattern (Port 0, 1, ...)";
44  m_pTable->setHorizontalHeaderLabels(labels);
45 // m_pTable->setReadOnly(true);
46 // m_pTable->setSelectionModel(QItemSelectionModel::Rows);
47 
48  QHeaderView *header = m_pTable->verticalHeader();
49 #if QT_VERSION >= 0x50000
50  header->setSectionResizeMode(QHeaderView::Fixed);
51 #else
52  header->setResizeMode(QHeaderView::Fixed);
53 #endif
54  connect(m_pTable, SIGNAL( cellClicked( int, int)),
55  this, SLOT(cellClicked( int, int)) );
56  connect(m_pTable, SIGNAL( itemSelectionChanged()), this, SLOT(selectionChanged()) );
57 
58  qgraph->setGraph(m_graph);
59 
60  m_graph->iterate_commit([=](Transaction &tr){
61  const XNode::NodeList &axes_list( *tr.list(m_graph->axes()));
62  shared_ptr<XAxis> axisx = static_pointer_cast<XAxis>(axes_list.at(0));
63  shared_ptr<XAxis> axisy = static_pointer_cast<XAxis>(axes_list.at(1));
64 
65  tr[ *axisy->ticLabelFormat()] = "%.0f";
66 
67  tr[ *m_graph->backGround()] = QColor(0x0A, 0x05, 0x45).rgb();
68  tr[ *m_graph->titleColor()] = clWhite;
69  tr[ *m_graph->drawLegends()] = false;
70  tr[ *axisx->label()] = "Time [ms]";
71  tr[ *axisx->ticColor()] = clWhite;
72  tr[ *axisx->labelColor()] = clWhite;
73  tr[ *axisx->ticLabelColor()] = clWhite;
74  tr[ *axisy->label()] = "Port";
75  tr[ *axisy->majorTicScale()] = 1;
76  tr[ *axisy->autoFreq()] = false;
77  tr[ *axisy->displayMinorTics()] = false;
78  tr[ *axisy->ticColor()] = clWhite;
79  tr[ *axisy->labelColor()] = clWhite;
80  tr[ *axisy->ticLabelColor()] = clWhite;
81  m_plots.clear();
82  for(int i=0; i < XPulser::NUM_DO_PORTS; i++) {
83  shared_ptr<XXYPlot> plot = m_graph->plots()->create<XXYPlot>(
84  tr, formatString("Port%d", i).c_str(), true, ref(tr), m_graph);
85  tr[ *plot->label()] = i18n("Port%1").arg(i);
86  tr[ *plot->axisX()] = axisx;
87  tr[ *plot->axisY()] = axisy;
88  m_plots.push_back(plot);
89  tr[ *plot->drawPoints()] = false;
90  tr[ *plot->displayMajorGrid()] = false;
91  tr[ *plot->lineColor()] = QColor(0x4e, 0xff, 0x10).rgb();
92  tr[ *plot->clearPoints()].setUIEnabled(false);
93  tr[ *plot->maxCount()].setUIEnabled(false);
94  }
95  m_barPlot = m_graph->plots()->create<XXYPlot>(tr, "Bars", true, ref(tr), m_graph);
96  tr[ *m_barPlot->label()] = i18n("Bars");
97  tr[ *m_barPlot->axisX()] = axisx;
98  tr[ *m_barPlot->axisY()] = axisy;
99  tr[ *m_barPlot->drawBars()] = true;
100  tr[ *m_barPlot->drawLines()] = false;
101  tr[ *m_barPlot->drawPoints()] = false;
102  tr[ *m_barPlot->barColor()] = QColor(0x4A, 0x3D, 0x87).rgb();
103  tr[ *m_barPlot->displayMajorGrid()] = true;
104  tr[ *m_barPlot->majorGridColor()] = QColor(0x4A, 0x4A, 0).rgb();
105  tr[ *m_barPlot->drawLines()].setUIEnabled(false);
106  tr[ *m_barPlot->drawPoints()].setUIEnabled(false);
107  tr[ *m_barPlot->lineColor()].setUIEnabled(false);
108  tr[ *m_barPlot->pointColor()].setUIEnabled(false);
109  tr[ *m_barPlot->clearPoints()].setUIEnabled(false);
110  tr[ *m_barPlot->maxCount()].setUIEnabled(false);
111 
112  tr[ *m_graph->label()] = i18n("Pulse Patterns");
113  });
114 }
115 
116 XQPulserDriverConnector::~XQPulserDriverConnector() {
117 }
118 
119 void
120 XQPulserDriverConnector::cellClicked( int , int ) {
121 }
122 
123 void
124 XQPulserDriverConnector::selectionChanged() {
125  shared_ptr<XPulser> pulser(m_pulser);
126  Snapshot shot( *pulser);
127  updateGraph(shot, true);
128 }
129 void
130 XQPulserDriverConnector::updateGraph(const Snapshot &shot, bool checkselection) {
131  shared_ptr<XPulser> pulser(m_pulser);
132  const XPulser::Payload::RelPatList &relpatlist(shot[ *pulser].relPatList());
133  m_graph->iterate_commit([=](Transaction &tr){
134  auto &barplot_points(tr[ *m_barPlot].points());
135  tr[ *m_barPlot->maxCount()] = relpatlist.size();
136  barplot_points.clear();
137  std::vector<decltype(&barplot_points)> plots_points;
138  for(auto it = m_plots.begin();
139  it != m_plots.end(); it++) {
140  tr[ *(*it)->maxCount()] = relpatlist.size() * 2;
141  tr[ **it].points().clear();
142  plots_points.push_back(&tr[ **it].points());
143  }
144  uint32_t lastpat = relpatlist.empty() ? 0 :
145  relpatlist[relpatlist.size() - 1].pattern;
146  double firsttime = -0.001, lasttime = 100;
147 
148  int i = 0;
149  for(XPulser::Payload::RelPatList::const_iterator it = relpatlist.begin();
150  it != relpatlist.end(); it++) {
151  double time = it->time * pulser->resolution();
152  auto tableitem = m_pTable->item(i + 1, 0);
153  if(tableitem && tableitem->isSelected()) {
154  if(firsttime < 0) firsttime = time;
155  lasttime = time;
156  }
157  barplot_points.push_back(XGraph::ValPoint(time, m_plots.size()));
158  for(int j = 0; j < (int)plots_points.size(); j++) {
159  plots_points[j]->push_back(XGraph::ValPoint(time, j + 0.7 * ((lastpat >> j) % 2)));
160  plots_points[j]->push_back(XGraph::ValPoint(time, j + 0.7 * ((it->pattern >> j) % 2)));
161  }
162  lastpat = it->pattern;
163  i++;
164  }
165  if(checkselection) {
166  if(lasttime == firsttime) {
167  firsttime -= 0.5;
168  lasttime += 0.5;
169  }
170  double width = lasttime - firsttime;
171  firsttime -= width / 10;
172  lasttime += width / 10;
173  shared_ptr<XAxis> axisx = tr[ *m_barPlot->axisX()];
174  tr[ *axisx->autoScale()] = false;
175  tr[ *axisx->minValue()] = firsttime;
176  tr[ *axisx->maxValue()] = lasttime;
177  }
178  tr.mark(tr[ *m_graph].onUpdate(), m_graph.get());
179  });
180 }
181 
182 void
183 XQPulserDriverConnector::onPulseChanged(const Snapshot &shot, XDriver *) {
184  shared_ptr<XPulser> pulser(m_pulser);
185  if(shot[ *pulser].time()) {
186  m_pTable->blockSignals(true);
187  m_pTable->setRowCount(shot[ *pulser].relPatList().size());
188  int i = 0;
189  for(XPulser::Payload::RelPatList::const_iterator it = shot[ *pulser].relPatList().begin();
190  it != shot[ *pulser].relPatList().end(); it++) {
191  // Form->tblPulse->insertRow(i);
192  m_pTable->setItem(i, 0, new QTableWidgetItem(formatString("%.4f", it->time * pulser->resolution())));
193  m_pTable->setItem(i, 1, new QTableWidgetItem(formatString("%.4f", it->toappear * pulser->resolution())));
194  QString s;
195  uint32_t pat = it->pattern;
196  for(int j = 0; j < XPulser::NUM_DO_PORTS; j++) {
197  // if(j != 0) s+= ",";
198  s += (pat % 2) ? "1" : "0";
199  pat /= 2;
200  }
201  m_pTable->setItem(i, 2, new QTableWidgetItem(s));
202  i++;
203  }
204  m_pTable->blockSignals(false);
205 
206  updateGraph(shot, false);
207  }
208  else {
209  m_pTable->clear();
210  m_graph->iterate_commit([=](Transaction &tr){
211  for(auto it = m_plots.begin();
212  it != m_plots.end(); it++) {
213  tr[ **it].points().clear();
214  }
215  tr[ *m_barPlot].points().clear();
216  tr.mark(tr[ *m_graph].onUpdate(), m_graph.get());
217  });
218  }
219 }

Generated for KAME4 by  doxygen 1.8.3