mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-03 23:53:59 +01:00 
			
		
		
		
	* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
		
			
				
	
	
		
			789 lines
		
	
	
		
			21 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			789 lines
		
	
	
		
			21 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdgpimon.cpp
 | 
						|
//
 | 
						|
// A Qt-based application for testing General Purpose Input (GPI) devices.
 | 
						|
//
 | 
						|
//   (C) Copyright 2002-2014,2016 Fred Gleason <fredg@paravelsystems.com>
 | 
						|
//
 | 
						|
//   This program is free software; you can redistribute it and/or modify
 | 
						|
//   it under the terms of the GNU General Public License version 2 as
 | 
						|
//   published by the Free Software Foundation.
 | 
						|
//
 | 
						|
//   This program is distributed in the hope that it will be useful,
 | 
						|
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
//   GNU General Public License for more details.
 | 
						|
//
 | 
						|
//   You should have received a copy of the GNU General Public
 | 
						|
//   License along with this program; if not, write to the Free Software
 | 
						|
//   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | 
						|
//
 | 
						|
 | 
						|
#include <stdlib.h>
 | 
						|
 | 
						|
#include <qapplication.h>
 | 
						|
#include <qwindowsstyle.h>
 | 
						|
#include <qwidget.h>
 | 
						|
#include <qpushbutton.h>
 | 
						|
#include <qrect.h>
 | 
						|
#include <qpoint.h>
 | 
						|
#include <qpainter.h>
 | 
						|
#include <qstring.h>
 | 
						|
#include <qmessagebox.h>
 | 
						|
#include <qlineedit.h>
 | 
						|
#include <qtextcodec.h>
 | 
						|
#include <qtranslator.h>
 | 
						|
 | 
						|
#include <rddb.h>
 | 
						|
#include <rdgpimon.h>
 | 
						|
#include <rdcmd_switch.h>
 | 
						|
#include <rddbheartbeat.h>
 | 
						|
#include <rdescape_string.h>
 | 
						|
#include <rdlistviewitem.h>
 | 
						|
#include <rdtextfile.h>
 | 
						|
 | 
						|
//
 | 
						|
// Icons
 | 
						|
//
 | 
						|
#include "../icons/rivendell-22x22.xpm"
 | 
						|
 | 
						|
MainWidget::MainWidget(QWidget *parent)
 | 
						|
  :QWidget(parent)
 | 
						|
{
 | 
						|
  gpi_scroll_mode=false;
 | 
						|
  
 | 
						|
  //
 | 
						|
  // Read Command Options
 | 
						|
  //
 | 
						|
  RDCmdSwitch *cmd=new RDCmdSwitch(qApp->argc(),qApp->argv(),"rdgpimon","\n");
 | 
						|
  delete cmd;
 | 
						|
 | 
						|
  //
 | 
						|
  // Set Window Size
 | 
						|
  //
 | 
						|
  setMinimumWidth(sizeHint().width());
 | 
						|
  setMaximumWidth(sizeHint().width());
 | 
						|
  setMinimumHeight(sizeHint().height());
 | 
						|
  setMaximumHeight(sizeHint().height());
 | 
						|
 | 
						|
  //
 | 
						|
  // Create Fonts
 | 
						|
  //
 | 
						|
  QFont font("helvetica",10,QFont::Normal);
 | 
						|
  font.setPixelSize(10);
 | 
						|
  setFont(font);
 | 
						|
  QFont list_font("helvetica",12,QFont::Normal);
 | 
						|
  list_font.setPixelSize(12);
 | 
						|
  QFont main_font("helvetica",12,QFont::Bold);
 | 
						|
  main_font.setPixelSize(12);
 | 
						|
  QFont title_font("helvetica",14,QFont::Bold);
 | 
						|
  title_font.setPixelSize(14);
 | 
						|
 | 
						|
  //
 | 
						|
  // Create And Set Icon
 | 
						|
  //
 | 
						|
  gpi_rivendell_map=new QPixmap(rivendell_xpm);
 | 
						|
  setIcon(*gpi_rivendell_map);
 | 
						|
 | 
						|
  //
 | 
						|
  // Load Local Configs
 | 
						|
  //
 | 
						|
  gpi_config=new RDConfig();
 | 
						|
  gpi_config->load();
 | 
						|
 | 
						|
  //
 | 
						|
  // Open Database
 | 
						|
  //
 | 
						|
  gpi_db=QSqlDatabase::addDatabase(gpi_config->mysqlDriver());
 | 
						|
  if(!gpi_db) {
 | 
						|
    QMessageBox::warning(this,tr("Database Error"),
 | 
						|
		    tr("Can't Connect","Unable to connect to mySQL Server!"));
 | 
						|
    exit(0);
 | 
						|
  }
 | 
						|
  gpi_db->setDatabaseName(gpi_config->mysqlDbname());
 | 
						|
  gpi_db->setUserName(gpi_config->mysqlUsername());
 | 
						|
  gpi_db->setPassword(gpi_config->mysqlPassword());
 | 
						|
  gpi_db->setHostName(gpi_config->mysqlHostname());
 | 
						|
  if(!gpi_db->open()) {
 | 
						|
    QMessageBox::warning(this,tr("Can't Connect"),
 | 
						|
			 tr("Unable to connect to mySQL Server!"));
 | 
						|
    gpi_db->removeDatabase(gpi_config->mysqlDbname());
 | 
						|
    exit(0);
 | 
						|
  }
 | 
						|
  new RDDbHeartbeat(gpi_config->mysqlHeartbeatInterval(),this);
 | 
						|
 | 
						|
  //
 | 
						|
  // RIPC Connection
 | 
						|
  //
 | 
						|
  gpi_ripc=new RDRipc(gpi_config->stationName());
 | 
						|
  gpi_ripc->setIgnoreMask(true);
 | 
						|
  connect(gpi_ripc,SIGNAL(userChanged()),this,SLOT(userData()));
 | 
						|
  connect(gpi_ripc,SIGNAL(gpiStateChanged(int,int,bool)),
 | 
						|
	  this,SLOT(gpiStateChangedData(int,int,bool)));
 | 
						|
  connect(gpi_ripc,SIGNAL(gpoStateChanged(int,int,bool)),
 | 
						|
	  this,SLOT(gpoStateChangedData(int,int,bool)));
 | 
						|
  connect(gpi_ripc,SIGNAL(gpiMaskChanged(int,int,bool)),
 | 
						|
	  this,SLOT(gpiMaskChangedData(int,int,bool)));
 | 
						|
  connect(gpi_ripc,SIGNAL(gpoMaskChanged(int,int,bool)),
 | 
						|
	  this,SLOT(gpoMaskChangedData(int,int,bool)));
 | 
						|
  connect(gpi_ripc,SIGNAL(gpiCartChanged(int,int,int,int)),
 | 
						|
	  this,SLOT(gpiCartChangedData(int,int,int,int)));
 | 
						|
  connect(gpi_ripc,SIGNAL(gpoCartChanged(int,int,int,int)),
 | 
						|
	  this,SLOT(gpoCartChangedData(int,int,int,int)));
 | 
						|
  gpi_ripc->connectHost("localhost",RIPCD_TCP_PORT,gpi_config->password());
 | 
						|
 | 
						|
  //
 | 
						|
  // RDStation
 | 
						|
  //
 | 
						|
  gpi_station=new RDStation(gpi_config->stationName());
 | 
						|
 | 
						|
  //
 | 
						|
  // RDMatrix;
 | 
						|
  //
 | 
						|
  gpi_matrix=NULL;
 | 
						|
 | 
						|
  //
 | 
						|
  // Type Selector
 | 
						|
  //
 | 
						|
  gpi_type_box=new QComboBox(this);
 | 
						|
  gpi_type_box->setGeometry(80,10,120,21);
 | 
						|
  gpi_type_box->insertItem(tr("GPI (Inputs)"));
 | 
						|
  gpi_type_box->insertItem(tr("GPO (Outputs)"));
 | 
						|
  QLabel *label=new QLabel(gpi_type_box,tr("Show:"),this);
 | 
						|
  label->setGeometry(20,10,55,21);
 | 
						|
  label->setFont(main_font);
 | 
						|
  label->setAlignment(AlignRight|AlignVCenter);
 | 
						|
  connect(gpi_type_box,SIGNAL(activated(int)),
 | 
						|
	  this,SLOT(matrixActivatedData(int)));
 | 
						|
 | 
						|
  //
 | 
						|
  // Matrix Selector
 | 
						|
  //
 | 
						|
  gpi_matrix_box=new QComboBox(this);
 | 
						|
  gpi_matrix_box->setGeometry(280,10,80,21);
 | 
						|
  for(int i=0;i<MAX_MATRICES;i++) {
 | 
						|
    gpi_matrix_box->insertItem(QString().sprintf("%d",i));
 | 
						|
  }
 | 
						|
  label=new QLabel(gpi_matrix_box,tr("Matrix:"),this);
 | 
						|
  label->setGeometry(220,10,55,21);
 | 
						|
  label->setFont(main_font);
 | 
						|
  label->setAlignment(AlignRight|AlignVCenter);
 | 
						|
  connect(gpi_matrix_box,SIGNAL(activated(int)),
 | 
						|
	  this,SLOT(matrixActivatedData(int)));
 | 
						|
 | 
						|
  //
 | 
						|
  // GPI Indicators
 | 
						|
  //
 | 
						|
  for(int i=0;i<GPIMON_ROWS;i++) {
 | 
						|
    for(int j=0;j<GPIMON_COLS;j++) {
 | 
						|
      gpi_labels[i*GPIMON_COLS+j]=new GpiLabel(this);
 | 
						|
      gpi_labels[i*GPIMON_COLS+j]->setGeometry(10+64*j,40+78*i,
 | 
						|
					       gpi_labels[i*GPIMON_COLS+j]->
 | 
						|
					       sizeHint().width(),
 | 
						|
					       gpi_labels[i*GPIMON_COLS+j]->
 | 
						|
					       sizeHint().height());
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // Up Button
 | 
						|
  //
 | 
						|
  gpi_up_button=
 | 
						|
    new RDTransportButton(RDTransportButton::Up,this);
 | 
						|
  gpi_up_button->setGeometry(10,360,80,50);
 | 
						|
  connect(gpi_up_button,SIGNAL(clicked()),this,SLOT(upData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Down Button
 | 
						|
  //
 | 
						|
  gpi_down_button=
 | 
						|
    new RDTransportButton(RDTransportButton::Down,this);
 | 
						|
  gpi_down_button->setGeometry(100,360,80,50);
 | 
						|
  connect(gpi_down_button,SIGNAL(clicked()),this,SLOT(downData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Color Key
 | 
						|
  //
 | 
						|
  label=new QLabel(tr("Green = ON Cart"),this);
 | 
						|
  label->setGeometry(200,370,300,12);
 | 
						|
  label->setFont(main_font);
 | 
						|
  label->setAlignment(AlignLeft|AlignVCenter);
 | 
						|
  QPalette p=palette();
 | 
						|
  p.setColor(QPalette::Active,QColorGroup::Foreground,darkGreen);
 | 
						|
  p.setColor(QPalette::Inactive,QColorGroup::Foreground,darkGreen);
 | 
						|
  p.setColor(QPalette::Disabled,QColorGroup::Foreground,darkGreen);
 | 
						|
  label->setPalette(p);
 | 
						|
 | 
						|
  label=new QLabel(tr("Red = OFF Cart"),this);
 | 
						|
  label->setGeometry(200,392,300,12);
 | 
						|
  label->setFont(main_font);
 | 
						|
  label->setAlignment(AlignLeft|AlignVCenter);
 | 
						|
  p.setColor(QPalette::Active,QColorGroup::Foreground,darkRed);
 | 
						|
  p.setColor(QPalette::Inactive,QColorGroup::Foreground,darkRed);
 | 
						|
  p.setColor(QPalette::Disabled,QColorGroup::Foreground,darkRed);
 | 
						|
  label->setPalette(p);
 | 
						|
 | 
						|
  //
 | 
						|
  // Events Log
 | 
						|
  //
 | 
						|
  label=new QLabel(tr("Events Log"),this);
 | 
						|
  label->setFont(title_font);
 | 
						|
  label->setAlignment(Qt::AlignCenter);
 | 
						|
  label->setGeometry(110,423,sizeHint().width()-220,30);
 | 
						|
 | 
						|
  gpi_events_date_edit=new QDateEdit(this);
 | 
						|
  gpi_events_date_edit->setGeometry(155,453,90,20);
 | 
						|
  gpi_events_date_edit->setDate(QDate::currentDate());
 | 
						|
  connect(gpi_events_date_edit,SIGNAL(valueChanged(const QDate &)),
 | 
						|
	  this,SLOT(eventsDateChangedData(const QDate &)));
 | 
						|
  gpi_events_date_label=new QLabel(gpi_events_date_edit,tr("Date")+":",this);
 | 
						|
  gpi_events_date_label->setGeometry(100,453,50,20);
 | 
						|
  gpi_events_date_label->setFont(main_font);
 | 
						|
  gpi_events_date_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
 | 
						|
 | 
						|
  gpi_events_state_box=new QComboBox(this);
 | 
						|
  gpi_events_state_box->setGeometry(280,453,55,20);
 | 
						|
  gpi_events_state_box->insertItem(tr("On"));
 | 
						|
  gpi_events_state_box->insertItem(tr("Off"));
 | 
						|
  gpi_events_state_box->insertItem(tr("Both"));
 | 
						|
  connect(gpi_events_state_box,SIGNAL(activated(int)),
 | 
						|
	  this,SLOT(eventsStateChangedData(int)));
 | 
						|
  gpi_events_state_label=new QLabel(gpi_events_state_box,tr("State")+":",this);
 | 
						|
  gpi_events_state_label->setGeometry(225,453,50,20);
 | 
						|
  gpi_events_state_label->setFont(main_font);
 | 
						|
  gpi_events_state_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
 | 
						|
 | 
						|
  gpi_events_list=new RDListView(this);
 | 
						|
  gpi_events_list->setFont(main_font);
 | 
						|
  gpi_events_list->setGeometry(110,480,sizeHint().width()-220,230);
 | 
						|
  gpi_events_list->setItemMargin(5);
 | 
						|
  gpi_events_list->setSelectionMode(QListView::NoSelection);
 | 
						|
 | 
						|
  gpi_events_list->addColumn("Time");
 | 
						|
  gpi_events_list->setColumnAlignment(0,Qt::AlignHCenter);
 | 
						|
  gpi_events_list->setColumnSortType(1,RDListView::TimeSort);
 | 
						|
 | 
						|
  gpi_events_list->addColumn(tr("Line"));
 | 
						|
  gpi_events_list->setColumnAlignment(1,Qt::AlignHCenter);
 | 
						|
  gpi_events_list->setColumnSortType(1,RDListView::GpioSort);
 | 
						|
 | 
						|
  gpi_events_list->addColumn(tr("State"));
 | 
						|
  gpi_events_list->setColumnAlignment(2,Qt::AlignHCenter);
 | 
						|
 | 
						|
  gpi_events_scroll_button=new QPushButton(tr("Scroll"),this);
 | 
						|
  gpi_events_scroll_button->setGeometry(sizeHint().width()-100,510,80,50);
 | 
						|
  gpi_events_scroll_button->setFont(main_font);
 | 
						|
  connect(gpi_events_scroll_button,SIGNAL(clicked()),
 | 
						|
	  this,SLOT(eventsScrollData()));
 | 
						|
  gpi_scroll_color=palette();
 | 
						|
  gpi_scroll_color.setColor(QPalette::Active,QColorGroup::ButtonText,
 | 
						|
			    Qt::white);
 | 
						|
  gpi_scroll_color.setColor(QPalette::Active,QColorGroup::Button,
 | 
						|
			    Qt::blue);
 | 
						|
  gpi_scroll_color.setColor(QPalette::Active,QColorGroup::Background,
 | 
						|
			    lightGray);
 | 
						|
  gpi_scroll_color.setColor(QPalette::Inactive,QColorGroup::ButtonText,
 | 
						|
			    Qt::white);
 | 
						|
  gpi_scroll_color.setColor(QPalette::Inactive,QColorGroup::Button,
 | 
						|
			    Qt::blue);
 | 
						|
  gpi_scroll_color.setColor(QPalette::Inactive,QColorGroup::Background,
 | 
						|
			    lightGray);
 | 
						|
 | 
						|
  gpi_events_report_button=new QPushButton(tr("Report"),this);
 | 
						|
  gpi_events_report_button->setGeometry(sizeHint().width()-100,570,80,50);
 | 
						|
  gpi_events_report_button->setFont(main_font);
 | 
						|
  connect(gpi_events_report_button,SIGNAL(clicked()),
 | 
						|
	  this,SLOT(eventsReportData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Start Up Timer
 | 
						|
  //
 | 
						|
  gpi_events_startup_timer=new QTimer(this);
 | 
						|
  connect(gpi_events_startup_timer,SIGNAL(timeout()),this,SLOT(startUpData()));
 | 
						|
  gpi_events_startup_timer->start(GPIMON_START_UP_DELAY,true);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
MainWidget::~MainWidget()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSize MainWidget::sizeHint() const
 | 
						|
{
 | 
						|
  return QSize(528,78*GPIMON_ROWS+410);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSizePolicy MainWidget::sizePolicy() const
 | 
						|
{
 | 
						|
  return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::userData()
 | 
						|
{
 | 
						|
  QString str;
 | 
						|
 | 
						|
  str=QString("RDGpiMon")+" v"+VERSION+" - "+tr("User")+":";
 | 
						|
  setCaption(str+" "+gpi_ripc->user());
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::typeActivatedData(int index)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::matrixActivatedData(int index)
 | 
						|
{
 | 
						|
  if(gpi_matrix!=NULL) {
 | 
						|
    delete gpi_matrix;
 | 
						|
  }
 | 
						|
  gpi_matrix=
 | 
						|
    new RDMatrix(gpi_config->stationName(),gpi_matrix_box->currentItem());
 | 
						|
  UpdateLabelsDown(0);
 | 
						|
  gpi_up_button->setDisabled(true);
 | 
						|
  switch((RDMatrix::GpioType)gpi_type_box->currentItem()) {
 | 
						|
    case RDMatrix::GpioInput:
 | 
						|
      gpi_ripc->sendGpiStatus(gpi_matrix_box->currentItem());
 | 
						|
      gpi_ripc->sendGpiMask(gpi_matrix_box->currentItem());
 | 
						|
      gpi_ripc->sendGpiCart(gpi_matrix_box->currentItem());
 | 
						|
      break;
 | 
						|
 | 
						|
    case RDMatrix::GpioOutput:
 | 
						|
      gpi_ripc->sendGpoStatus(gpi_matrix_box->currentItem());
 | 
						|
      gpi_ripc->sendGpoMask(gpi_matrix_box->currentItem());
 | 
						|
      gpi_ripc->sendGpoCart(gpi_matrix_box->currentItem());
 | 
						|
      break;
 | 
						|
  }
 | 
						|
  RefreshEventsList();
 | 
						|
  gpi_events_startup_timer->start(1000,true);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::eventsDateChangedData(const QDate &date)
 | 
						|
{
 | 
						|
  RefreshEventsList();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::eventsStateChangedData(int n)
 | 
						|
{
 | 
						|
  RefreshEventsList();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::eventsScrollData()
 | 
						|
{
 | 
						|
  if(gpi_scroll_mode) {
 | 
						|
    gpi_events_scroll_button->setPalette(palette());
 | 
						|
    gpi_scroll_mode=false;
 | 
						|
  }
 | 
						|
  else {
 | 
						|
    gpi_events_scroll_button->setPalette(gpi_scroll_color);
 | 
						|
    gpi_scroll_mode=true;
 | 
						|
    RDListViewItem *item=(RDListViewItem *)gpi_events_list->firstChild();
 | 
						|
    RDListViewItem *last=NULL;
 | 
						|
    while(item!=NULL) {
 | 
						|
      last=item;
 | 
						|
      item=(RDListViewItem *)item->nextSibling();
 | 
						|
    }
 | 
						|
    if(last!=NULL) {
 | 
						|
      gpi_events_list->ensureItemVisible(last);
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::eventsReportData()
 | 
						|
{
 | 
						|
  QString report;
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
 | 
						|
  report="                          Rivendell GPIO Event Report\n";
 | 
						|
  report+="     Date: "+gpi_events_date_edit->date().toString("MM/dd/yyyy")+
 | 
						|
    "       Station/Matrix: "+gpi_station->name()+":"+
 | 
						|
    QString().sprintf("%d     ",gpi_matrix_box->currentItem())+
 | 
						|
    " State Filter: "+gpi_events_state_box->currentText()+"\n";
 | 
						|
  report+="\n";
 | 
						|
 | 
						|
  sql=QString("select EVENT_DATETIME,NUMBER,EDGE from GPIO_EVENTS where ")+
 | 
						|
    "(STATION_NAME=\""+RDEscapeString(gpi_station->name())+"\")&&"+
 | 
						|
    QString().sprintf("(MATRIX=%d)&&",gpi_matrix_box->currentItem())+
 | 
						|
    QString().sprintf("(TYPE=%d)&&",gpi_type_box->currentItem())+
 | 
						|
    "(EVENT_DATETIME>=\""+gpi_events_date_edit->date().toString("yyyy-MM-dd")+
 | 
						|
    " 00:00:00\")&&"+
 | 
						|
    "(EVENT_DATETIME<\""+gpi_events_date_edit->date().addDays(1).
 | 
						|
    toString("yyyy-MM-dd")+" 00:00:00\")";
 | 
						|
  if(gpi_events_state_box->currentItem()==0) {
 | 
						|
    sql+="&&(EDGE=1)";
 | 
						|
  }
 | 
						|
  if(gpi_events_state_box->currentItem()==1) {
 | 
						|
    sql+="&&(EDGE=0)";
 | 
						|
  }
 | 
						|
  report+="                       -- Time --   - Line -   - State -\n";
 | 
						|
  q=new RDSqlQuery(sql);
 | 
						|
  while(q->next()) {
 | 
						|
    report+="                        ";
 | 
						|
    report+=q->value(0).toDateTime().toString("hh:mm:ss")+"   ";
 | 
						|
    report+=QString().sprintf("   %5d       ",q->value(1).toInt());
 | 
						|
    if(q->value(2).toInt()==0) {
 | 
						|
      report+=tr("OFF");
 | 
						|
    }
 | 
						|
    else {
 | 
						|
      report+=tr("ON ");
 | 
						|
    }
 | 
						|
    report+="\n";
 | 
						|
  }
 | 
						|
  delete q;
 | 
						|
  RDTextFile(report);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::gpiStateChangedData(int matrix,int line,bool state)
 | 
						|
{
 | 
						|
  // printf("gpiStateChanged(%d,%d,%d)\n",matrix,line,state);
 | 
						|
 | 
						|
  if(gpi_type_box->currentItem()!=RDMatrix::GpioInput) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if(matrix!=gpi_matrix->matrix()) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  for(int i=0;i<(GPIMON_ROWS*GPIMON_COLS);i++) {
 | 
						|
    if(gpi_labels[i]->line()==line) {
 | 
						|
      gpi_labels[i]->setState(state);
 | 
						|
    }
 | 
						|
  }
 | 
						|
  AddEventsItem(line,state);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::gpoStateChangedData(int matrix,int line,bool state)
 | 
						|
{
 | 
						|
  // printf("gpoStateChanged(%d,%d,%d)\n",matrix,line,state);
 | 
						|
 | 
						|
  if(gpi_type_box->currentItem()!=RDMatrix::GpioOutput) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if(matrix!=gpi_matrix->matrix()) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  for(int i=0;i<(GPIMON_ROWS*GPIMON_COLS);i++) {
 | 
						|
    if(gpi_labels[i]->line()==line) {
 | 
						|
      gpi_labels[i]->setState(state);
 | 
						|
    }
 | 
						|
  }
 | 
						|
  AddEventsItem(line,state);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::gpiMaskChangedData(int matrix,int line,bool state)
 | 
						|
{
 | 
						|
  if(gpi_type_box->currentItem()!=RDMatrix::GpioInput) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if(matrix!=gpi_matrix->matrix()) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  for(int i=0;i<(GPIMON_ROWS*GPIMON_COLS);i++) {
 | 
						|
    if(gpi_labels[i]->line()==line) {
 | 
						|
      gpi_labels[i]->setMask(state);
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::gpoMaskChangedData(int matrix,int line,bool state)
 | 
						|
{
 | 
						|
  if(gpi_type_box->currentItem()!=RDMatrix::GpioOutput) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if(matrix!=gpi_matrix->matrix()) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  for(int i=0;i<(GPIMON_ROWS*GPIMON_COLS);i++) {
 | 
						|
    if(gpi_labels[i]->line()==line) {
 | 
						|
      gpi_labels[i]->setMask(state);
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::gpiCartChangedData(int matrix,int line,int off_cartnum,
 | 
						|
				    int on_cartnum)
 | 
						|
{
 | 
						|
//  printf("gpiCartChangedData(%d,%d,%d,%d)\n",matrix,line,off_cartnum,
 | 
						|
//	 on_cartnum);
 | 
						|
 | 
						|
  if(gpi_type_box->currentItem()!=RDMatrix::GpioInput) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if(off_cartnum<0) {
 | 
						|
    off_cartnum=0;
 | 
						|
  }
 | 
						|
  if(on_cartnum<0) {
 | 
						|
    on_cartnum=0;
 | 
						|
  }
 | 
						|
  if(matrix!=gpi_matrix->matrix()) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  for(int i=0;i<(GPIMON_ROWS*GPIMON_COLS);i++) {
 | 
						|
    if(gpi_labels[i]->line()==line) {
 | 
						|
      gpi_labels[i]->setCart(off_cartnum,on_cartnum);
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::gpoCartChangedData(int matrix,int line,int off_cartnum,
 | 
						|
  int on_cartnum)
 | 
						|
{
 | 
						|
  if(gpi_type_box->currentItem()!=RDMatrix::GpioOutput) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if(off_cartnum<0) {
 | 
						|
    off_cartnum=0;
 | 
						|
  }
 | 
						|
  if(on_cartnum<0) {
 | 
						|
    on_cartnum=0;
 | 
						|
  }
 | 
						|
  if(matrix!=gpi_matrix->matrix()) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  for(int i=0;i<(GPIMON_ROWS*GPIMON_COLS);i++) {
 | 
						|
    if(gpi_labels[i]->line()==line) {
 | 
						|
      gpi_labels[i]->setCart(off_cartnum,on_cartnum);
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::startUpData()
 | 
						|
{
 | 
						|
  gpi_events_startup_timer->disconnect();
 | 
						|
  matrixActivatedData(0);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::upData()
 | 
						|
{
 | 
						|
  UpdateLabelsUp(gpi_first_line-1);
 | 
						|
  gpi_down_button->setEnabled(true);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::downData()
 | 
						|
{
 | 
						|
  UpdateLabelsDown(gpi_last_line+1);
 | 
						|
  gpi_up_button->setEnabled(true);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::quitMainWidget()
 | 
						|
{
 | 
						|
  exit(0);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::UpdateLabelsUp(int last_line)
 | 
						|
{
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
  int count=0;
 | 
						|
  int count_limit=GPIMON_ROWS*GPIMON_COLS;
 | 
						|
  bool last_updated=false;
 | 
						|
  QString tablename="GPIS";
 | 
						|
 | 
						|
  for(int i=0;i<(GPIMON_ROWS*GPIMON_COLS);i++) {
 | 
						|
    gpi_labels[i]->hide();
 | 
						|
  }
 | 
						|
  switch((RDMatrix::GpioType)gpi_type_box->currentItem()) {
 | 
						|
    case RDMatrix::GpioInput:
 | 
						|
      tablename="GPIS";
 | 
						|
      break;
 | 
						|
 | 
						|
    case RDMatrix::GpioOutput:
 | 
						|
      tablename="GPOS";
 | 
						|
      break;
 | 
						|
  }
 | 
						|
  sql=QString().sprintf("select NUMBER,OFF_MACRO_CART,MACRO_CART from %s \
 | 
						|
                         where (STATION_NAME=\"%s\")&&\
 | 
						|
                         (MATRIX=%d)&&\
 | 
						|
                         (NUMBER<=%d) order by NUMBER desc",
 | 
						|
			(const char *)tablename,
 | 
						|
			(const char *)gpi_station->name(),
 | 
						|
			gpi_matrix->matrix(),last_line);
 | 
						|
  q=new RDSqlQuery(sql);
 | 
						|
  if(q->size()<count_limit) {
 | 
						|
    count_limit=q->size();
 | 
						|
  }
 | 
						|
  while(q->next()&&(count<count_limit)) {
 | 
						|
    gpi_labels[count_limit-count-1]->setLine(q->value(0).toInt()-1);
 | 
						|
    gpi_labels[count_limit-count-1]->
 | 
						|
      setCart(q->value(1).toUInt(),q->value(2).toUInt());
 | 
						|
    gpi_labels[count_limit-count-1]->show();
 | 
						|
    if(!last_updated) {
 | 
						|
      gpi_last_line=q->value(0).toInt();
 | 
						|
      last_updated=true;
 | 
						|
    }
 | 
						|
    gpi_first_line=q->value(0).toInt();
 | 
						|
    count++;
 | 
						|
  }
 | 
						|
  gpi_up_button->setEnabled(q->next());
 | 
						|
  delete q;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::UpdateLabelsDown(int first_line)
 | 
						|
{
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
  int count=0;
 | 
						|
  bool first_updated=false;
 | 
						|
  QString tablename="GPIS";
 | 
						|
 | 
						|
  for(int i=0;i<(GPIMON_ROWS*GPIMON_COLS);i++) {
 | 
						|
    gpi_labels[i]->hide();
 | 
						|
  }
 | 
						|
  switch((RDMatrix::GpioType)gpi_type_box->currentItem()) {
 | 
						|
    case RDMatrix::GpioInput:
 | 
						|
      tablename="GPIS";
 | 
						|
      break;
 | 
						|
 | 
						|
    case RDMatrix::GpioOutput:
 | 
						|
      tablename="GPOS";
 | 
						|
      break;
 | 
						|
  }
 | 
						|
  sql=QString().sprintf("select NUMBER,OFF_MACRO_CART,MACRO_CART from %s \
 | 
						|
                         where (STATION_NAME=\"%s\")&&\
 | 
						|
                         (MATRIX=%d)&&\
 | 
						|
                         (NUMBER>=%d) order by NUMBER",
 | 
						|
			(const char *)tablename,
 | 
						|
			(const char *)gpi_station->name(),
 | 
						|
			gpi_matrix->matrix(),first_line);
 | 
						|
  q=new RDSqlQuery(sql);
 | 
						|
  while(q->next()&&(count<(GPIMON_ROWS*GPIMON_COLS))) {
 | 
						|
    gpi_labels[count]->setLine(q->value(0).toInt()-1);
 | 
						|
    gpi_labels[count]->setCart(q->value(1).toUInt(),q->value(2).toUInt());
 | 
						|
    gpi_labels[count]->show();
 | 
						|
    if(!first_updated) {
 | 
						|
      gpi_first_line=q->value(0).toInt();
 | 
						|
      first_updated=true;
 | 
						|
    }
 | 
						|
    gpi_last_line=q->value(0).toInt();
 | 
						|
    count++;
 | 
						|
  }
 | 
						|
  gpi_down_button->setEnabled(q->next());
 | 
						|
  delete q;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::RefreshEventsList()
 | 
						|
{
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
 | 
						|
  sql=QString("select EVENT_DATETIME,NUMBER,EDGE from GPIO_EVENTS where ")+
 | 
						|
    "(STATION_NAME=\""+RDEscapeString(gpi_station->name())+"\")&&"+
 | 
						|
    QString().sprintf("(MATRIX=%d)&&",gpi_matrix_box->currentItem())+
 | 
						|
    QString().sprintf("(TYPE=%d)&&",gpi_type_box->currentItem())+
 | 
						|
    "(EVENT_DATETIME>=\""+gpi_events_date_edit->date().toString("yyyy-MM-dd")+
 | 
						|
    " 00:00:00\")&&"+
 | 
						|
    "(EVENT_DATETIME<\""+gpi_events_date_edit->date().addDays(1).
 | 
						|
    toString("yyyy-MM-dd")+" 00:00:00\")";
 | 
						|
  if(gpi_events_state_box->currentItem()==0) {
 | 
						|
    sql+="&&(EDGE=1)";
 | 
						|
  }
 | 
						|
  if(gpi_events_state_box->currentItem()==1) {
 | 
						|
    sql+="&&(EDGE=0)";
 | 
						|
  }
 | 
						|
  q=new RDSqlQuery(sql);
 | 
						|
  gpi_events_list->clear();
 | 
						|
  RDListViewItem *item=NULL;
 | 
						|
  while(q->next()) {
 | 
						|
    item=new RDListViewItem(gpi_events_list);
 | 
						|
    item->setText(0,q->value(0).toDateTime().toString("hh:mm:ss"));
 | 
						|
    item->setText(1,QString().sprintf("%d",q->value(1).toInt()));
 | 
						|
    if(q->value(2).toInt()==0) {
 | 
						|
      item->setText(2,tr("Off"));
 | 
						|
      item->setTextColor(Qt::darkRed);
 | 
						|
    }
 | 
						|
    else {
 | 
						|
      item->setText(2,tr("On"));
 | 
						|
      item->setTextColor(Qt::darkGreen);
 | 
						|
    }
 | 
						|
  }
 | 
						|
  if(gpi_scroll_mode&&(item!=NULL)) {
 | 
						|
    gpi_events_list->ensureItemVisible(item);
 | 
						|
  }
 | 
						|
  delete q;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::AddEventsItem(int line,bool state)
 | 
						|
{
 | 
						|
  if(gpi_events_startup_timer->isActive()) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if((gpi_events_state_box->currentItem()==0)&&(!state)) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if((gpi_events_state_box->currentItem()==1)&&state) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  RDListViewItem *item=new RDListViewItem(gpi_events_list);
 | 
						|
  item->setText(0,QTime::currentTime().toString("hh:mm:ss"));
 | 
						|
  item->setText(1,QString().sprintf("%d",line+1));
 | 
						|
  if(state) {
 | 
						|
    item->setText(2,tr("On"));
 | 
						|
    item->setTextColor(Qt::darkGreen);
 | 
						|
  }
 | 
						|
  else {
 | 
						|
    item->setText(2,tr("Off"));
 | 
						|
    item->setTextColor(Qt::darkRed);
 | 
						|
  }  
 | 
						|
  if(gpi_scroll_mode) {
 | 
						|
    gpi_events_list->ensureItemVisible(item);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
int main(int argc,char *argv[])
 | 
						|
{
 | 
						|
  QApplication a(argc,argv);
 | 
						|
  
 | 
						|
  //
 | 
						|
  // Load Translations
 | 
						|
  //
 | 
						|
  QTranslator qt(0);
 | 
						|
  qt.load(QString(QTDIR)+QString("/translations/qt_")+QTextCodec::locale(),
 | 
						|
	  ".");
 | 
						|
  a.installTranslator(&qt);
 | 
						|
 | 
						|
  QTranslator rd(0);
 | 
						|
  rd.load(QString(PREFIX)+QString("/share/rivendell/librd_")+
 | 
						|
	     QTextCodec::locale(),".");
 | 
						|
  a.installTranslator(&rd);
 | 
						|
 | 
						|
  QTranslator rdhpi(0);
 | 
						|
  rdhpi.load(QString(PREFIX)+QString("/share/rivendell/librdhpi_")+
 | 
						|
	     QTextCodec::locale(),".");
 | 
						|
  a.installTranslator(&rdhpi);
 | 
						|
 | 
						|
  QTranslator tr(0);
 | 
						|
  tr.load(QString(PREFIX)+QString("/share/rivendell/rdgpimon_")+
 | 
						|
	     QTextCodec::locale(),".");
 | 
						|
  a.installTranslator(&tr);
 | 
						|
 | 
						|
  //
 | 
						|
  // Start Event Loop
 | 
						|
  //
 | 
						|
  MainWidget *w=new MainWidget();
 | 
						|
  a.setMainWidget(w);
 | 
						|
  w->setGeometry(QRect(QPoint(0,0),w->sizeHint()));
 | 
						|
  w->show();
 | 
						|
  return a.exec();
 | 
						|
}
 |