mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 01:13:50 +02:00
* Added an 'RDLOGEDIT.WAVEFORM_CAPTION' field to the database. * Incremented the database version to 311. * Added a 'WaveForm Caption' control to the 'Edit RDLogEdit' dialog in rdadmin(1). * Implemented the 'WaveForm Caption' setting in the Voicetracker dialog in rdlogedit(1).
380 lines
7.6 KiB
C++
380 lines
7.6 KiB
C++
// rdlogedit_conf.cpp
|
|
//
|
|
// Abstract an RDLogedit Configuration.
|
|
//
|
|
// (C) Copyright 2002-2005,2016-2018 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 <rddb.h>
|
|
#include <rdconf.h>
|
|
#include <rdlogedit_conf.h>
|
|
#include <rdescape_string.h>
|
|
|
|
//
|
|
// Global Classes
|
|
//
|
|
RDLogeditConf::RDLogeditConf(const QString &station)
|
|
{
|
|
QString sql;
|
|
RDSqlQuery *q;
|
|
|
|
lib_station=station;
|
|
|
|
sql=QString("select ID from RDLOGEDIT where ")+
|
|
"STATION=\""+RDEscapeString(lib_station)+"\"";
|
|
q=new RDSqlQuery(sql);
|
|
if(!q->first()) {
|
|
delete q;
|
|
sql=QString("insert into RDLOGEDIT set ")+
|
|
"STATION=\""+RDEscapeString(lib_station)+"\"";
|
|
q=new RDSqlQuery(sql);
|
|
}
|
|
delete q;
|
|
}
|
|
|
|
|
|
QString RDLogeditConf::station() const
|
|
{
|
|
return lib_station;
|
|
}
|
|
|
|
|
|
int RDLogeditConf::inputCard() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"INPUT_CARD").toInt();
|
|
}
|
|
|
|
|
|
int RDLogeditConf::inputPort() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"INPUT_PORT").toInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setInputCard(int input) const
|
|
{
|
|
SetRow("INPUT_CARD",input);
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setInputPort(int input) const
|
|
{
|
|
SetRow("INPUT_PORT",input);
|
|
}
|
|
|
|
|
|
int RDLogeditConf::outputCard() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"OUTPUT_CARD").toInt();
|
|
}
|
|
|
|
|
|
int RDLogeditConf::outputPort() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"OUTPUT_PORT").toInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setOutputCard(int output) const
|
|
{
|
|
SetRow("OUTPUT_CARD",output);
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setOutputPort(int output) const
|
|
{
|
|
SetRow("OUTPUT_PORT",output);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::format() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"FORMAT").toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setFormat(unsigned format) const
|
|
{
|
|
SetRow("FORMAT",format);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::layer() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"LAYER").toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setLayer(unsigned layer) const
|
|
{
|
|
SetRow("LAYER",layer);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::bitrate() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"BITRATE").toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setBitrate(unsigned rate) const
|
|
{
|
|
SetRow("BITRATE",rate);
|
|
}
|
|
|
|
|
|
bool RDLogeditConf::enableSecondStart() const
|
|
{
|
|
return RDBool(RDGetSqlValue("RDLOGEDIT","STATION",lib_station,
|
|
"ENABLE_SECOND_START").toString());
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setEnableSecondStart(bool state) const
|
|
{
|
|
SetRow("ENABLE_SECOND_START",state);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::defaultChannels() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"DEFAULT_CHANNELS").toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setDefaultChannels(unsigned chans) const
|
|
{
|
|
SetRow("DEFAULT_CHANNELS",chans);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::maxLength() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"MAXLENGTH").toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setMaxLength(unsigned length) const
|
|
{
|
|
SetRow("MAXLENGTH",length);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::tailPreroll() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"TAIL_PREROLL").
|
|
toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setTailPreroll(unsigned length) const
|
|
{
|
|
SetRow("TAIL_PREROLL",length);
|
|
}
|
|
|
|
|
|
QString RDLogeditConf::waveformCaption() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"WAVEFORM_CAPTION").
|
|
toString();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setWaveformCaption(const QString &str)
|
|
{
|
|
SetRow("WAVEFORM_CAPTION",str);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::startCart() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"START_CART").toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setStartCart(unsigned cartnum) const
|
|
{
|
|
SetRow("START_CART",cartnum);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::endCart() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"END_CART").toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setEndCart(unsigned cartnum) const
|
|
{
|
|
SetRow("END_CART",cartnum);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::recStartCart() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"REC_START_CART").
|
|
toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setRecStartCart(unsigned cartnum) const
|
|
{
|
|
SetRow("REC_START_CART",cartnum);
|
|
}
|
|
|
|
|
|
unsigned RDLogeditConf::recEndCart() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"REC_END_CART").
|
|
toUInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setRecEndCart(unsigned cartnum) const
|
|
{
|
|
SetRow("REC_END_CART",cartnum);
|
|
}
|
|
|
|
|
|
int RDLogeditConf::trimThreshold() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"TRIM_THRESHOLD").
|
|
toInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setTrimThreshold(int level)
|
|
{
|
|
SetRow("TRIM_THRESHOLD",level);
|
|
}
|
|
|
|
|
|
int RDLogeditConf::ripperLevel() const
|
|
{
|
|
return RDGetSqlValue("RDLOGEDIT","STATION",lib_station,"RIPPER_LEVEL").
|
|
toInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setRipperLevel(int level)
|
|
{
|
|
SetRow("RIPPER_LEVEL",level);
|
|
}
|
|
|
|
|
|
RDLogLine::TransType RDLogeditConf::defaultTransType() const
|
|
{
|
|
return (RDLogLine::TransType)RDGetSqlValue("RDLOGEDIT","STATION",lib_station,
|
|
"DEFAULT_TRANS_TYPE").toInt();
|
|
}
|
|
|
|
|
|
void RDLogeditConf::setDefaultTransType(RDLogLine::TransType type)
|
|
{
|
|
SetRow("DEFAULT_TRANS_TYPE",(int)type);
|
|
}
|
|
|
|
|
|
void RDLogeditConf::getSettings(RDSettings *s) const
|
|
{
|
|
QString sql;
|
|
RDSqlQuery *q;
|
|
|
|
sql=QString("select ")+
|
|
"DEFAULT_CHANNELS,"+ // 00
|
|
"FORMAT,"+ // 02
|
|
"BITRATE,"+ // 03
|
|
"RIPPER_LEVEL,"+ // 04
|
|
"TRIM_THRESHOLD "+ // 05
|
|
"from RDLOGEDIT where "+
|
|
"STATION=\""+RDEscapeString(lib_station)+"\"";
|
|
q=new RDSqlQuery(sql);
|
|
s->clear();
|
|
if(q->first()) {
|
|
s->setChannels(q->value(0).toUInt());
|
|
switch(q->value(1).toInt()) {
|
|
case 0:
|
|
s->setFormat(RDSettings::Pcm16);
|
|
break;
|
|
|
|
case 1:
|
|
s->setFormat(RDSettings::MpegL2);
|
|
break;
|
|
}
|
|
s->setBitRate(q->value(2).toUInt());
|
|
s->setNormalizationLevel(q->value(3).toUInt());
|
|
s->setAutotrimLevel(q->value(4).toUInt());
|
|
}
|
|
delete q;
|
|
sql=QString("select SAMPLE_RATE from SYSTEM");
|
|
q=new RDSqlQuery(sql);
|
|
if(q->first()) {
|
|
s->setSampleRate(q->value(0).toUInt());
|
|
}
|
|
delete q;
|
|
}
|
|
|
|
|
|
void RDLogeditConf::SetRow(const QString ¶m,int value) const
|
|
{
|
|
RDSqlQuery *q;
|
|
QString sql;
|
|
|
|
sql=QString().sprintf("update RDLOGEDIT set ")+
|
|
param+QString().sprintf("=%d where ",value)+
|
|
"STATION=\""+RDEscapeString(lib_station)+"\"";
|
|
q=new RDSqlQuery(sql);
|
|
delete q;
|
|
}
|
|
|
|
|
|
void RDLogeditConf::SetRow(const QString ¶m,unsigned value) const
|
|
{
|
|
RDSqlQuery *q;
|
|
QString sql;
|
|
|
|
sql=QString("update RDLOGEDIT set ")+
|
|
param+QString().sprintf("=%d where ",value)+
|
|
"STATION=\""+RDEscapeString(lib_station)+"\"",
|
|
q=new RDSqlQuery(sql);
|
|
delete q;
|
|
}
|
|
|
|
|
|
void RDLogeditConf::SetRow(const QString ¶m,const QString &value) const
|
|
{
|
|
RDSqlQuery *q;
|
|
QString sql;
|
|
|
|
sql=QString("update RDLOGEDIT set ")+
|
|
param+"=\""+RDEscapeString(value)+"\" where "+
|
|
"STATION=\""+RDEscapeString(lib_station)+"\"",
|
|
q=new RDSqlQuery(sql);
|
|
delete q;
|
|
}
|
|
|
|
|
|
void RDLogeditConf::SetRow(const QString ¶m,bool value) const
|
|
{
|
|
RDSqlQuery *q;
|
|
QString sql;
|
|
|
|
sql=QString("update RDLOGEDIT set ")+
|
|
param+"=\""+RDYesNo(value)+"\" where "+
|
|
"STATION=\""+RDEscapeString(lib_station)+"\"";
|
|
q=new RDSqlQuery(sql);
|
|
delete q;
|
|
}
|