Rivendellaudio/lib/rdresourcelistmodel.cpp
Fred Gleason ac594cc68b 2021-09-01 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up deprecation warnings for 'QString::sprintf()'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2021-09-01 19:59:37 -04:00

381 lines
8.0 KiB
C++

// rdresourcelistmodel.cpp
//
// Data model for Rivendell console router resource settings
//
// (C) Copyright 2021 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 "rdapplication.h"
#include "rdescape_string.h"
#include "rdmatrix.h"
#include "rdresourcelistmodel.h"
RDResourceListModel::RDResourceListModel(RDMatrix *mtx,
RDMatrix::VguestType vguest_type,
QObject *parent)
: QAbstractTableModel(parent)
{
d_mtx=mtx;
d_type=mtx->type();
d_vguest_type=vguest_type;
//
// Column Attributes
//
// unsigned left=Qt::AlignLeft|Qt::AlignVCenter;
unsigned center=Qt::AlignCenter;
// unsigned right=Qt::AlignRight|Qt::AlignVCenter;
if(d_type==RDMatrix::LogitekVguest) {
switch(d_vguest_type) {
case RDMatrix::VguestTypeRelay:
d_headers.push_back(tr("GPIO Line"));
d_alignments.push_back(center);
d_headers.push_back(tr("Engine"));
d_alignments.push_back(center);
d_headers.push_back(tr("Device (Hex)"));
d_alignments.push_back(center);
d_headers.push_back(tr("Surface"));
d_alignments.push_back(center);
d_headers.push_back(tr("Bus/Relay"));
d_alignments.push_back(center);
break;
case RDMatrix::VguestTypeDisplay:
d_headers.push_back(tr("Display"));
d_alignments.push_back(center);
d_headers.push_back(tr("Engine"));
d_alignments.push_back(center);
d_headers.push_back(tr("Device (Hex)"));
d_alignments.push_back(center);
d_headers.push_back(tr("Surface"));
d_alignments.push_back(center);
break;
case RDMatrix::VguestTypeNone:
break;
}
}
if(d_type==RDMatrix::SasUsi) {
d_headers.push_back(tr("Line"));
d_alignments.push_back(center);
d_headers.push_back(tr("Console"));
d_alignments.push_back(center);
d_headers.push_back(tr("Source"));
d_alignments.push_back(center);
d_headers.push_back(tr("Opto/Relay"));
d_alignments.push_back(center);
}
updateModel();
}
RDResourceListModel::~RDResourceListModel()
{
}
QPalette RDResourceListModel::palette()
{
return d_palette;
}
void RDResourceListModel::setPalette(const QPalette &pal)
{
d_palette=pal;
}
void RDResourceListModel::setFont(const QFont &font)
{
d_font=font;
d_bold_font=font;
d_bold_font.setWeight(QFont::Bold);
}
int RDResourceListModel::columnCount(const QModelIndex &parent) const
{
return d_headers.size();
}
int RDResourceListModel::rowCount(const QModelIndex &parent) const
{
return d_texts.size();
}
QVariant RDResourceListModel::headerData(int section,
Qt::Orientation orient,
int role) const
{
if((orient==Qt::Horizontal)&&(role==Qt::DisplayRole)) {
return d_headers.at(section);
}
return QVariant();
}
QVariant RDResourceListModel::data(const QModelIndex &index,int role) const
{
QString str;
int col=index.column();
int row=index.row();
if(row<d_texts.size()) {
switch((Qt::ItemDataRole)role) {
case Qt::DisplayRole:
return d_texts.at(row).at(col);
case Qt::DecorationRole:
// Nothing to do!
break;
case Qt::TextAlignmentRole:
return d_alignments.at(col);
case Qt::FontRole:
if(col==0) {
return d_bold_font;
}
return d_font;
case Qt::TextColorRole:
// Nothing to do!
break;
case Qt::BackgroundRole:
// Nothing to do!
break;
default:
break;
}
}
return QVariant();
}
int RDResourceListModel::resourceId(const QModelIndex &row) const
{
return d_ids.at(row.row());
}
int RDResourceListModel::resourceNumber(const QModelIndex &row) const
{
return d_texts.at(row.row()).at(0).toInt();
}
void RDResourceListModel::refresh(const QModelIndex &row)
{
if(row.row()<d_texts.size()) {
QString sql=sqlFields()+
"where "+
QString::asprintf("`ID`=%d ",d_ids.at(row.row()));
RDSqlQuery *q=new RDSqlQuery(sql);
if(q->first()) {
updateRow(row.row(),q);
emit dataChanged(createIndex(row.row(),0),
createIndex(row.row(),columnCount()));
}
delete q;
}
}
void RDResourceListModel::refresh(int id)
{
for(int i=0;i<d_texts.size();i++) {
if(d_texts.at(i).at(0)==id) {
updateRowLine(i);
return;
}
}
}
void RDResourceListModel::updateModel()
{
QList<QVariant> texts;
QString sql;
RDSqlQuery *q=NULL;
if(d_type==RDMatrix::LogitekVguest) {
sql=sqlFields()+
"where "+
"`STATION_NAME`='"+RDEscapeString(d_mtx->station())+"' && "+
QString::asprintf("`MATRIX_NUM`=%d && ",d_mtx->matrix())+
QString::asprintf("`VGUEST_TYPE`=%u ",d_vguest_type)+
"order by `NUMBER` ";
}
if(d_type==RDMatrix::SasUsi) {
sql=sqlFields()+
"where "+
"`STATION_NAME`='"+RDEscapeString(d_mtx->station())+"' && "+
QString::asprintf("`MATRIX_NUM`=%d ",d_mtx->matrix())+
"order by `NUMBER` ";
}
beginResetModel();
d_ids.clear();
d_texts.clear();
q=new RDSqlQuery(sql);
while(q->next()) {
d_ids.push_back(-1);
d_texts.push_back(texts);
updateRow(d_texts.size()-1,q);
}
delete q;
endResetModel();
}
void RDResourceListModel::updateRowLine(int line)
{
if(line<d_texts.size()) {
QString sql=sqlFields()+
"where "+
QString::asprintf("`ID`=%d ",d_ids.at(line));
RDSqlQuery *q=new RDSqlQuery(sql);
if(q->first()) {
updateRow(line,q);
}
delete q;
}
}
void RDResourceListModel::updateRow(int row,RDSqlQuery *q)
{
QList<QVariant> texts;
d_ids.back()=q->value(0).toInt();
//
// GPIO Line / Display
texts.push_back(QString::asprintf("%d",q->value(1).toInt()));
// Engine Number
if(q->value(2).toInt()>=0) {
texts.push_back(QString::asprintf("%d",q->value(2).toInt()));
}
else {
texts.push_back("");
}
// Device Number
if(d_type==RDMatrix::LogitekVguest) {
if(q->value(3).toInt()>=0) {
texts.push_back(QString::asprintf("%04X",q->value(3).toInt()));
}
else {
texts.push_back("");
}
}
switch(d_type) {
case RDMatrix::LogitekVguest:
// Device Number
if(q->value(3).toInt()>=0) {
texts.push_back(QString::asprintf("%04X",q->value(3).toInt()));
}
else {
texts.push_back("");
}
// Surface Number
if(q->value(4).toInt()>=0) {
texts.push_back(QString::asprintf("%d",q->value(4).toInt()));
}
else {
texts.push_back("");
}
break;
case RDMatrix::SasUsi:
// Source
if(q->value(3).toInt()>=0) {
texts.push_back(QString::asprintf("%d",q->value(3).toInt()));
}
else {
texts.push_back("");
}
if(q->value(5).toInt()>=0) {
texts.push_back(QString::asprintf("%d",q->value(5).toInt()));
}
else {
texts.push_back("");
}
break;
default:
break;
}
switch(d_vguest_type) {
case RDMatrix::VguestTypeRelay:
if(q->value(5).toInt()>=0) {
texts.push_back(QString::asprintf("%02d",q->value(5).toInt()));
}
else {
texts.push_back("");
}
break;
case RDMatrix::VguestTypeDisplay:
break;
case RDMatrix::VguestTypeNone:
break;
}
d_texts[row]=texts;
}
QString RDResourceListModel::sqlFields() const
{
QString sql=QString("select ")+
"`ID`,"+ // 00
"`NUMBER`,"+ // 01
"`ENGINE_NUM`,"+ // 02
"`DEVICE_NUM`,"+ // 03
"`SURFACE_NUM`,"+ // 04
"`RELAY_NUM`,"+ // 05
"`BUSS_NUM` "+ // 06
"from `VGUEST_RESOURCES` ";
return sql;
}