/* * update.h: EPG2VDR plugin for the Video Disk Recorder * * See the README file for copyright information and how to reach the author. * */ #pragma once #include #include #include #include "lib/common.h" #include "lib/db.h" #include "lib/epgservice.h" #include "lib/vdrlocks.h" #include "lib/xml.h" #include "epg2vdr.h" #include "parameters.h" #define EPGDNAME "epgd" #if defined(APIVERSNUM) && APIVERSNUM < 20304 #error "VDR-2.3.4 API version or greater is required!" #endif //*************************************************************************** // Running Recording //*************************************************************************** class cRunningRecording : public cListObject { public: cRunningRecording(const cTimer* t, long did = na) { doneid = did; id = t->Id(); remote = t->Remote() ? strdup(t->Remote()) : nullptr; aux = notNull(t->Aux()); startTime = t->StartTime(); stopTime = t->StopTime(); file = notNull(t->File()); if (t->Event()) vps = t->HasFlags(tfVps) && t->Event()->Vps(); } ~cRunningRecording() { free(remote); } void setInfo(const char* i) { info = notNull(i); } int id {0}; // use timer->Id(), timer->Remote and GetById instead of pointer to a timer char* remote {nullptr}; time_t lastBreak {0}; int finished {no}; int failed {no}; long doneid {0}; std::string aux; std::string info; std::string file; time_t startTime {0}; time_t stopTime {0}; bool vps {false}; }; //*************************************************************************** // Event Details (Recording Info Files) //*************************************************************************** class cEventDetails { public: cEventDetails() { changes = 0; } ~cEventDetails() {} int getChanges() { return changes; } void clearChanges() { changes = 0; } void setValue(const char* name, const char* value); void setValue(const char* name, int value); int storeToFs(const char* path); int loadFromFs(const char* path, cDbRow* row, int doClear = yes); int updateByRow(cDbRow* row); int updateToRow(cDbRow* row); static int row2Xml(cDbRow* row, cXml* xml); private: int changes; std::map values; static const char* fields[]; }; //*************************************************************************** // Update //*************************************************************************** class cUpdate : public cThread, public cStatus, public cParameters { public: enum MasterMode { mmAuto, mmYes, mmNo, mmCount }; enum Event { evtUnknown = na, evtSwitchTimer, }; cUpdate(cPluginEPG2VDR* aPlugin); ~cUpdate(); // interface int init(); int exit(); void Stop(); int isEpgdBusy() { return epgdBusy; } time_t getNextEpgdUpdateAt() { return nextEpgdUpdateAt; } void triggerDbReconnect(); int triggerEpgUpdate(int reload = no); int triggerRecUpdate(); int commonRecFolderOptionChanged(); int triggerStoreInfoFiles(); void triggerTimerJobs(); void epgdStateChange(const char* state); protected: // notifications from VDRs status interface // virtual void TimerChange(const cTimer* Timer, eTimerChange Change); virtual void Recording(const cDevice *Device, const char *Name, const char *FileName, bool On); virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView); private: struct SwitchTimer { long eventId; std::string channelId; time_t start; int notified; }; // struct to store a recording action delieverd by the status interface struct RecordingAction { std::string name; std::string fileName; int cardIndex; bool on; }; // functions int initDb(); int exitDb(); void Action(void); void processEvents(); int isHandlerMaster(); void updateVdrData(); int updateRecFolderOption(); int dbConnected(int force = no) { return connection && connection->isConnected() && (!force || connection->check() == success); } int checkConnection(int& timeout); int refreshEpg(const char* channelid = 0, int maxTries = 5); cEvent* createEventFromRow(const cDbRow* row); int lookupVdrEventOf(int eId, const char* cId); int storePicturesToFs(); int cleanupPictures(); int getOsd2WebPort(); tChannelID toChanID(const char* chanIdStr) { if (isEmpty(chanIdStr)) return tChannelID::InvalidID; return tChannelID::FromString(chanIdStr); } // timer stuff int updateTimerTable(); int performTimerJobs(); int recordingChanged(); int updateTimerDone(int timerid, int doneid, char state); int hasTimerChanged(); int takeSwitchTimer(); int checkSwitchTimer(); // recording stuff int updateRecordingTable(int fullReload = no); int cleanupDeletedRecordings(int force = no); int updateRecordingDirectory(const cRecording* recording); int updatePendingRecordingInfoFiles(const cRecordings* recordings); int performRecordingActions(); int storeAllRecordingInfoFiles(); int updateRecordingInfoFiles(); // data cDbConnection* connection {nullptr}; cPluginEPG2VDR* plugin {nullptr}; int handlerMaster {no}; int loopActive {no}; time_t nextEpgdUpdateAt {0}; time_t lastUpdateAt {0}; time_t lastEventsUpdateAt {0}; time_t lastRecordingDeleteAt {0}; int lastRecordingCount {0}; char* epgimagedir {nullptr}; int withutf8 {no}; cCondVar waitCondition; cMutex mutex; int fullreload {no}; char imageExtension[3+TB] {""}; cMutex timerMutex; cMutex swTimerMutex; int dbReconnectTriggered {no}; int timerJobsUpdateTriggered {yes}; int timerTableUpdateTriggered {yes}; cStateKey timerStateKey; int manualTrigger {no}; int recordingStateChangedTrigger {yes}; int recordingFullReloadTrigger {no}; int storeAllRecordingInfoFilesTrigger {no}; int updateRecFolderOptionTrigger {no}; int switchTimerTrigger {no}; cList runningRecordings; cMutex runningRecMutex; Es::State epgdState {cEpgdState::esUnknown}; int epgdBusy {yes}; int eventsPending {no}; int mainActPending {yes}; const char* videoBasePath {nullptr}; int timersTableMaxUpdsp {0}; cDbTable* eventsDb {nullptr}; cDbTable* useeventsDb {nullptr}; cDbTable* fileDb {nullptr}; cDbTable* imageDb {nullptr}; cDbTable* imageRefDb {nullptr}; cDbTable* episodeDb {nullptr}; cDbTable* mapDb {nullptr}; cDbTable* timerDb {nullptr}; cDbTable* timerDoneDb {nullptr}; cDbTable* vdrDb {nullptr}; cDbTable* compDb {nullptr}; cDbTable* recordingDirDb {nullptr}; cDbTable* recordingListDb {nullptr}; cDbTable* recordingImagesDb {nullptr}; cDbStatement* selectMasterVdr {nullptr}; cDbStatement* selectAllImages {nullptr}; cDbStatement* selectUpdEvents {nullptr}; cDbStatement* selectAllEvents {nullptr}; cDbStatement* selectEventById {nullptr}; cDbStatement* selectAllChannels {nullptr}; cDbStatement* selectChannelById {nullptr}; cDbStatement* markUnknownChannel {nullptr}; cDbStatement* selectComponentsOf {nullptr}; cDbStatement* deleteTimer {nullptr}; cDbStatement* selectMyTimer {nullptr}; cDbStatement* selectRecordings {nullptr}; cDbStatement* selectImagesOfRecording {nullptr}; cDbStatement* selectRecForInfoUpdate {nullptr}; cDbStatement* selectPendingTimerActions {nullptr}; cDbStatement* selectSwitchTimerActions {nullptr}; cDbStatement* selectTimerByEvent {nullptr}; cDbStatement* selectTimerById {nullptr}; cDbStatement* selectTimerByDoneId {nullptr}; cDbStatement* selectMaxUpdSp {nullptr}; cDbValue vdrEvtId; cDbValue extEvtId; cDbValue vdrStartTime; cDbValue extChannelId; cDbValue imageUpdSp; cDbValue imageSize; cDbValue imageSizeRec; cDbValue masterId; cDbValue* viewDescription {nullptr}; cDbValue* viewMergeSource {nullptr}; cDbValue* viewLongDescription {nullptr}; std::queue pendingNewRecordings; // recordings to store details (obsolete if pendingRecordingActions implemented finally) std::queue pendingRecordingActions; // recordings actions (start/stop) std::map switchTimers; std::queue eventHook; cMutex eventHookMutex; std::list timerThreads; static void sendEvent(int event, void* userData); static const char* auxFields[]; };