mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 22:48:01 +02:00
* Upgrade Qt dependency from Qt5 to Qt6. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
399 lines
8.8 KiB
C++
399 lines
8.8 KiB
C++
// rdservicelistmodel.cpp
|
|
//
|
|
// Data model for Rivendell services
|
|
//
|
|
// (C) Copyright 2021-2025 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 "rdservicelistmodel.h"
|
|
|
|
RDServiceListModel::RDServiceListModel(bool incl_none,bool exclude_bypass,
|
|
QObject *parent)
|
|
: QAbstractTableModel(parent)
|
|
{
|
|
d_include_none=incl_none;
|
|
d_exclude_bypass=exclude_bypass;
|
|
|
|
//
|
|
// Load Color Map
|
|
//
|
|
QString sql=QString("select ")+
|
|
"`NAME`,"+ // 00
|
|
"`COLOR` "+ // 01
|
|
"from `GROUPS`";
|
|
RDSqlQuery *q=new RDSqlQuery(sql);
|
|
while(q->next()) {
|
|
d_group_color_map[q->value(0).toString()]=QColor(q->value(1).toString());
|
|
}
|
|
delete q;
|
|
|
|
//
|
|
// Column Attributes
|
|
//
|
|
unsigned left=Qt::AlignLeft|Qt::AlignVCenter;
|
|
unsigned center=Qt::AlignCenter;
|
|
unsigned right=Qt::AlignRight|Qt::AlignVCenter;
|
|
|
|
d_headers.push_back(tr("Name")); // 00
|
|
d_alignments.push_back(left);
|
|
|
|
d_headers.push_back(tr("Description")); // 01
|
|
d_alignments.push_back(left);
|
|
|
|
d_headers.push_back(tr("Pgm Code")); // 02
|
|
d_alignments.push_back(left);
|
|
|
|
d_headers.push_back(tr("Track Group")); // 03
|
|
d_alignments.push_back(left);
|
|
|
|
d_headers.push_back(tr("Log Shelf Life")); // 04
|
|
d_alignments.push_back(right);
|
|
|
|
d_headers.push_back(tr("ELR Shelf Life")); // 05
|
|
d_alignments.push_back(right);
|
|
|
|
d_headers.push_back(tr("Auto Refresh")); // 06
|
|
d_alignments.push_back(center);
|
|
|
|
d_headers.push_back(tr("Chain Log")); // 07
|
|
d_alignments.push_back(center);
|
|
|
|
d_headers.push_back(tr("Import Markers")); // 08
|
|
d_alignments.push_back(center);
|
|
|
|
d_headers.push_back(tr("Has Grid")); // 09
|
|
d_alignments.push_back(center);
|
|
|
|
updateModel();
|
|
}
|
|
|
|
|
|
RDServiceListModel::~RDServiceListModel()
|
|
{
|
|
}
|
|
|
|
|
|
QPalette RDServiceListModel::palette()
|
|
{
|
|
return d_palette;
|
|
}
|
|
|
|
|
|
void RDServiceListModel::setPalette(const QPalette &pal)
|
|
{
|
|
d_palette=pal;
|
|
}
|
|
|
|
|
|
void RDServiceListModel::setFont(const QFont &font)
|
|
{
|
|
d_font=font;
|
|
d_bold_font=font;
|
|
d_bold_font.setWeight(QFont::Bold);
|
|
}
|
|
|
|
|
|
int RDServiceListModel::columnCount(const QModelIndex &parent) const
|
|
{
|
|
return d_headers.size();
|
|
}
|
|
|
|
|
|
int RDServiceListModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
return d_texts.size();
|
|
}
|
|
|
|
|
|
QVariant RDServiceListModel::headerData(int section,Qt::Orientation orient,
|
|
int role) const
|
|
{
|
|
if((orient==Qt::Horizontal)&&(role==Qt::DisplayRole)) {
|
|
return d_headers.at(section);
|
|
}
|
|
return QVariant();
|
|
}
|
|
|
|
|
|
QVariant RDServiceListModel::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:
|
|
return d_icons.at(row).at(col);
|
|
|
|
case Qt::TextAlignmentRole:
|
|
return d_alignments.at(col);
|
|
|
|
case Qt::FontRole:
|
|
if((col==0)||(col==3)) {
|
|
return d_bold_font;
|
|
}
|
|
return d_font;
|
|
|
|
case Qt::ForegroundRole:
|
|
if(col==3) { // Track Group
|
|
return d_group_color_map.value(d_texts.at(row).at(col).toString(),
|
|
QVariant());
|
|
}
|
|
break;
|
|
|
|
case Qt::BackgroundRole:
|
|
// Nothing to do!
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return QVariant();
|
|
}
|
|
|
|
|
|
bool RDServiceListModel::hasGrid(const QModelIndex &index) const
|
|
{
|
|
if(index.isValid()) {
|
|
return d_has_grids.at(index.row());
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
QString RDServiceListModel::serviceName(const QModelIndex &row) const
|
|
{
|
|
return d_texts.at(row.row()).at(0).toString();
|
|
}
|
|
|
|
|
|
QModelIndex RDServiceListModel::addService(const QString &svcname)
|
|
{
|
|
//
|
|
// Find the insertion offset
|
|
//
|
|
int offset=d_texts.size();
|
|
for(int i=0;i<d_texts.size();i++) {
|
|
if(svcname.toLower()<d_texts.at(i).at(0).toString().toLower()) {
|
|
offset=i;
|
|
break;
|
|
}
|
|
}
|
|
beginInsertRows(QModelIndex(),offset,offset);
|
|
QList<QVariant> list;
|
|
for(int i=0;i<columnCount();i++) {
|
|
list.push_back(QVariant());
|
|
}
|
|
list[0]=svcname;
|
|
d_texts.insert(offset,list);
|
|
d_icons.insert(offset,list);
|
|
d_has_grids.insert(offset,"N");
|
|
updateRowLine(offset);
|
|
endInsertRows();
|
|
|
|
return createIndex(offset,0);
|
|
}
|
|
|
|
|
|
void RDServiceListModel::removeService(const QModelIndex &row)
|
|
{
|
|
beginRemoveRows(QModelIndex(),row.row(),row.row());
|
|
|
|
d_texts.removeAt(row.row());
|
|
d_icons.removeAt(row.row());
|
|
d_has_grids.removeAt(row.row());
|
|
|
|
endRemoveRows();
|
|
}
|
|
|
|
|
|
void RDServiceListModel::removeService(const QString &svcname)
|
|
{
|
|
for(int i=0;i<d_texts.size();i++) {
|
|
if(d_texts.at(i).at(0)==svcname) {
|
|
removeService(createIndex(i,0));
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void RDServiceListModel::refresh(const QModelIndex &row)
|
|
{
|
|
if(row.row()<d_texts.size()) {
|
|
QString sql=sqlFields()+
|
|
"where `SERVICES`.`NAME`='"+
|
|
RDEscapeString(d_texts.at(row.row()).at(0).toString())+"'";
|
|
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 RDServiceListModel::refresh(const QString &grpname)
|
|
{
|
|
for(int i=0;i<d_texts.size();i++) {
|
|
if(d_texts.at(i).at(0)==grpname) {
|
|
updateRowLine(i);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void RDServiceListModel::updateModel()
|
|
{
|
|
QList<QVariant> texts;
|
|
|
|
RDSqlQuery *q=NULL;
|
|
QString sql=sqlFields();
|
|
if(d_exclude_bypass) {
|
|
sql+="where `BYPASS_MODE`='N' ";
|
|
}
|
|
sql+="order by NAME ";
|
|
beginResetModel();
|
|
d_texts.clear();
|
|
d_icons.clear();
|
|
d_has_grids.clear();
|
|
if(d_include_none) {
|
|
d_texts.push_back(texts);
|
|
d_icons.push_back(texts);
|
|
d_texts.back().push_back(tr("[none]"));
|
|
d_icons.back().push_back(QVariant());
|
|
for(int i=1;i<columnCount();i++) {
|
|
d_texts.back().push_back(QVariant());
|
|
d_icons.back().push_back(QVariant());
|
|
}
|
|
d_has_grids.push_back("N");
|
|
}
|
|
q=new RDSqlQuery(sql);
|
|
while(q->next()) {
|
|
d_texts.push_back(texts);
|
|
d_icons.push_back(texts);
|
|
d_has_grids.push_back("N");
|
|
updateRow(d_texts.size()-1,q);
|
|
}
|
|
delete q;
|
|
endResetModel();
|
|
}
|
|
|
|
|
|
void RDServiceListModel::updateRowLine(int line)
|
|
{
|
|
if(line<d_texts.size()) {
|
|
QString sql=sqlFields()+
|
|
"where `NAME`='"+RDEscapeString(d_texts.at(line).at(0).toString())+"'";
|
|
RDSqlQuery *q=new RDSqlQuery(sql);
|
|
if(q->first()) {
|
|
updateRow(line,q);
|
|
}
|
|
delete q;
|
|
}
|
|
}
|
|
|
|
|
|
void RDServiceListModel::updateRow(int row,RDSqlQuery *q)
|
|
{
|
|
QList<QVariant> texts;
|
|
QList<QVariant> icons;
|
|
|
|
// Service Name
|
|
texts.push_back(q->value(0));
|
|
icons.push_back(rda->iconEngine()->serviceIcon());
|
|
|
|
// Description
|
|
texts.push_back(q->value(1));
|
|
icons.push_back(QVariant());
|
|
|
|
// Program Code
|
|
texts.push_back(q->value(2));
|
|
icons.push_back(QVariant());
|
|
|
|
// Track Group
|
|
texts.push_back(q->value(3));
|
|
if(q->value(3).toString().isEmpty()) {
|
|
icons.push_back(QVariant());
|
|
}
|
|
else {
|
|
icons.push_back(rda->iconEngine()->typeIcon(RDLogLine::Cart));
|
|
}
|
|
|
|
// Log Shelf Life
|
|
texts.push_back(q->value(4));
|
|
icons.push_back(QVariant());
|
|
|
|
// ELR Shelf Life
|
|
texts.push_back(q->value(5));
|
|
icons.push_back(QVariant());
|
|
|
|
// Auto Refresh
|
|
texts.push_back(q->value(6));
|
|
icons.push_back(QVariant());
|
|
|
|
// Chain Log
|
|
texts.push_back(q->value(7));
|
|
icons.push_back(QVariant());
|
|
|
|
// Import Markers
|
|
texts.push_back(q->value(8));
|
|
icons.push_back(QVariant());
|
|
|
|
// Has Grid
|
|
if(q->value(9).toString()=="Y") {
|
|
texts.push_back("N");
|
|
}
|
|
else {
|
|
texts.push_back("Y");
|
|
}
|
|
icons.push_back(QVariant());
|
|
|
|
d_texts[row]=texts;
|
|
d_icons[row]=icons;
|
|
d_has_grids[row]=q->value(9).toString()!="Y";
|
|
}
|
|
|
|
|
|
QString RDServiceListModel::sqlFields() const
|
|
{
|
|
QString sql=QString("select ")+
|
|
"`SERVICES`.`NAME`,"+ // 00
|
|
"`SERVICES`.`DESCRIPTION`,"+ // 01
|
|
"`SERVICES`.`PROGRAM_CODE`,"+ // 02
|
|
"`SERVICES`.`TRACK_GROUP`,"+ // 03
|
|
"`SERVICES`.`DEFAULT_LOG_SHELFLIFE`,"+ // 04
|
|
"`SERVICES`.`ELR_SHELFLIFE`,"+ // 05
|
|
"`SERVICES`.`AUTO_REFRESH`,"+ // 06
|
|
"`SERVICES`.`CHAIN_LOG`,"+ // 07
|
|
"`SERVICES`.`INCLUDE_IMPORT_MARKERS`,"+ // 08
|
|
"`BYPASS_MODE` "+ // 09
|
|
"from `SERVICES` ";
|
|
|
|
return sql;
|
|
}
|