mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	* Added a 'SERVICES.LOG_SHELFLIFE_ORIGIN' field to the database. * Incremented the database version to 275. * Added a drop-down control to the 'Set Logs to auto-delete' control to allow origin to be specified in the 'Edit Service' dialog in rdadmin(1).
		
			
				
	
	
		
			130 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			130 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdsvc.h
 | 
						|
//
 | 
						|
// Abstract a Rivendell Service
 | 
						|
//
 | 
						|
//   (C) Copyright 2002-2004,2016-2017 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.
 | 
						|
//
 | 
						|
 | 
						|
#ifndef RDSVC_H
 | 
						|
#define RDSVC_H
 | 
						|
 | 
						|
#include <vector>
 | 
						|
 | 
						|
#include <qobject.h>
 | 
						|
#include <qsqldatabase.h>
 | 
						|
 | 
						|
#include "rdconfig.h"
 | 
						|
#include "rdloglock.h"
 | 
						|
#include "rdstation.h"
 | 
						|
#include "rduser.h"
 | 
						|
 | 
						|
class RDSvc : public QObject
 | 
						|
{
 | 
						|
  Q_OBJECT
 | 
						|
 public:
 | 
						|
  enum ImportOs {Linux=0,Windows=1};
 | 
						|
  enum ImportSource {Traffic=0,Music=1};
 | 
						|
  enum ImportField {CartNumber=0,ExtData=3,ExtEventId=4,ExtAnncType=5,
 | 
						|
		    Title=6,StartHours=7,StartMinutes=8,StartSeconds=9,
 | 
						|
		    LengthHours=10,LengthMinutes=11,LengthSeconds=12};
 | 
						|
  enum ShelflifeOrigin {OriginAirDate=0,OriginCreationDate=1};
 | 
						|
  RDSvc(QString svcname,RDStation *station,RDConfig *config,QObject *parent=0);
 | 
						|
  QString name() const;
 | 
						|
  bool exists() const;
 | 
						|
  QString description() const;
 | 
						|
  void setDescription(const QString &desc) const;
 | 
						|
  QString programCode() const;
 | 
						|
  void setProgramCode(const QString &str) const;
 | 
						|
  QString nameTemplate() const;
 | 
						|
  void setNameTemplate(const QString &str) const;
 | 
						|
  QString descriptionTemplate() const;
 | 
						|
  void setDescriptionTemplate(const QString &str) const;
 | 
						|
  QString trackGroup() const;
 | 
						|
  void setTrackGroup(const QString &group) const;
 | 
						|
  QString autospotGroup() const;
 | 
						|
  void setAutospotGroup(const QString &group) const;
 | 
						|
  bool autoRefresh() const;
 | 
						|
  void setAutoRefresh(bool state);
 | 
						|
  int defaultLogShelflife() const;
 | 
						|
  void setDefaultLogShelflife(int days) const;
 | 
						|
  ShelflifeOrigin logShelflifeOrigin() const;
 | 
						|
  void setLogShelflifeOrigin(ShelflifeOrigin orig);
 | 
						|
  int elrShelflife() const;
 | 
						|
  void setElrShelflife(int days) const;
 | 
						|
  bool chainto() const;
 | 
						|
  void setChainto(bool state) const;
 | 
						|
  QString importTemplate(ImportSource src) const;
 | 
						|
  void setImportTemplate(ImportSource src,const QString &str) const;
 | 
						|
  QString breakString() const;
 | 
						|
  void setBreakString(const QString &str);
 | 
						|
  QString trackString(ImportSource src) const;
 | 
						|
  void setTrackString(ImportSource src,const QString &str);
 | 
						|
  QString labelCart(ImportSource src) const;
 | 
						|
  void setLabelCart(ImportSource src,const QString &str);
 | 
						|
  QString trackCart(ImportSource src) const;
 | 
						|
  void setTrackCart(ImportSource src,const QString &str);
 | 
						|
  QString importPath(ImportSource src,ImportOs os) const;
 | 
						|
  void setImportPath(ImportSource src,ImportOs os,const QString &path) const;
 | 
						|
  QString preimportCommand(ImportSource src,ImportOs os) const;
 | 
						|
  void setPreimportCommand(ImportSource src,ImportOs os,
 | 
						|
			   const QString &path) const;
 | 
						|
  int importOffset(ImportSource src,ImportField field) const;
 | 
						|
  void setImportOffset(ImportSource src,ImportField field,int offset) const;
 | 
						|
  int importLength(ImportSource src,ImportField field) const;
 | 
						|
  void setImportLength(ImportSource src,ImportField field,int len) const;
 | 
						|
  QString importFilename(ImportSource src,const QDate &date) const;
 | 
						|
  bool import(ImportSource src,const QDate &date,const QString &break_str,
 | 
						|
	      const QString &track_str,const QString &dest_table) 
 | 
						|
    const;
 | 
						|
  bool generateLog(const QDate &date,const QString &logname,
 | 
						|
		   const QString &nextname,QString *report,RDUser *user,
 | 
						|
		   QString *err_msg);
 | 
						|
  bool linkLog(RDSvc::ImportSource src,const QDate &date,
 | 
						|
	       const QString &logname,QString *report,RDUser *user,
 | 
						|
	       QString *err_msg);
 | 
						|
  bool clearLogLinks(RDSvc::ImportSource src,const QString &logname,
 | 
						|
		     RDUser *user,QString *err_msg);
 | 
						|
  void create(const QString exemplar) const;
 | 
						|
  void remove() const;
 | 
						|
  QString xml() const;
 | 
						|
  static bool create(const QString &name,QString *err_msg,
 | 
						|
		     const QString &exemplar,RDConfig *config);
 | 
						|
  static void remove(const QString &name);
 | 
						|
  static bool exists(const QString &name);
 | 
						|
  static QString timeString(int hour,int secs);
 | 
						|
  static QString svcTableName(const QString &svc_name);
 | 
						|
 | 
						|
 signals:
 | 
						|
  void generationProgress(int step);
 | 
						|
 | 
						|
 private:
 | 
						|
  bool TryLock(RDLogLock *lock,QString *err_msg);
 | 
						|
  QString SourceString(ImportSource src) const;
 | 
						|
  QString OsString(ImportOs os) const;
 | 
						|
  QString FieldString(ImportField field) const;
 | 
						|
  void SetRow(const QString ¶m,QString value) const;
 | 
						|
  void SetRow(const QString ¶m,int value) const;
 | 
						|
  void GetParserStrings(ImportSource src,QString *break_str,QString *track_str,
 | 
						|
			QString *label_cart,QString *track_cart);
 | 
						|
  bool CheckId(std::vector<int> *v,int value);
 | 
						|
  QString svc_name;
 | 
						|
  RDStation *svc_station;
 | 
						|
  RDConfig *svc_config;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif 
 |