1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
|
/*
* setup.cpp: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#include "setup.h"
#include "debug.h"
cSetupMarkAd::cSetupMarkAd(struct setup *Setup) {
setup = Setup;
processduring = setup->ProcessDuring;
usevps = setup->useVPS;
logvps = setup->logVPS;
whilerecording = setup->whileRecording;
whilereplaying = setup->whileReplaying;
osdmsg = setup->OSDMessage;
svdrPort = setup->svdrPort;
verbose = setup->Verbose;
hidemainmenuentry = setup->HideMainMenuEntry;
log2rec = setup->Log2Rec;
logoonly = setup->LogoOnly;
deferredshutdown = setup->DeferredShutdown;
autologomenu = setup->autoLogoMenu;
fulldecode = setup->fulldecode;
hwaccel = setup->hwaccel;
processTexts[PROCESS_AFTER] = tr("after");
processTexts[PROCESS_DURING] = tr("during");
processTexts[PROCESS_NEVER] = tr("never");
autoLogoTexts[0] = tr("only logo cache");
autoLogoTexts[1] = tr("extract from recording, fallback logo cache");
autoLogoTexts[2] = tr("logo cache, fallback extract from recording");
lpos = 0;
write();
}
void cSetupMarkAd::write(void) {
int current = Current();
Clear();
cMenuEditStraItem *first = new cMenuEditStraItem(tr("execution"), &processduring, 3, processTexts);
if (!first) return;
Add(first);
if (processduring != PROCESS_DURING) Add(new cMenuEditBoolItem(tr("use VPS"), &usevps));
if (usevps && (processduring != PROCESS_DURING)) Add(new cMenuEditBoolItem(tr("log VPS events"), &logvps));
if (processduring < PROCESS_NEVER) {
if (!processduring) {
Add(new cMenuEditBoolItem(tr(" during another recording"), &whilerecording));
Add(new cMenuEditBoolItem(tr(" while replaying"), &whilereplaying));
}
Add(new cMenuEditBoolItem(tr("scan only channels with logo"), &logoonly), true);
lpos = Current();
Add(new cMenuEditBoolItem(tr("deferred shutdown"), &deferredshutdown));
Add(new cMenuEditBoolItem(tr("OSD message"), &osdmsg));
Add(new cMenuEditIntItem(tr("SVDR port number"), &svdrPort));
Add(new cMenuEditBoolItem(tr("verbose logging"), &verbose));
Add(new cMenuEditBoolItem(tr("log to recording directory"), &log2rec));
Add(new cMenuEditBoolItem(tr("hide mainmenu entry"), &hidemainmenuentry));
if (setup->autoLogoConf < 0) Add(new cMenuEditStraItem(tr("logo source"), &autologomenu, 3, autoLogoTexts));
Add(new cMenuEditBoolItem(tr("full decode recording"), &fulldecode));
Add(new cMenuEditStraItem(tr("hardware acceleration"), &hwaccel, MAX_HWACCEL, setup->hwaccelTexts));
if (current == -1) {
SetCurrent(first);
}
else {
SetCurrent(Get(current));
}
}
else {
lpos = -1;
}
Display();
}
eOSState cSetupMarkAd::ProcessKey(eKeys Key) {
eOSState state = cOsdMenu::ProcessKey(Key);
if (HasSubMenu()) return osContinue;
switch (state) {
case osContinue:
if (((Key == kLeft) || (Key == kRight)) && (Current() == 0)) write();
if ((Key == kDown) || (Key == kUp)) {
if (Current() == lpos) {
SetHelp(nullptr, nullptr, nullptr, tr("show list"));
}
else {
SetHelp(nullptr, nullptr, nullptr, nullptr);
}
}
break;
case osUnknown:
if ((Key == kBlue) && (Current() == lpos)) return AddSubMenu(new cSetupMarkAdList(setup));
if (Key == kOk) {
Store();
state = osBack;
}
break;
default:
break;
}
return state;
}
void cSetupMarkAd::Store(void) {
SetupStore("Execution", processduring);
if (processduring == PROCESS_DURING) {
whilerecording = 1;
whilereplaying = 1;
usevps = 0; // VPS not possible during recording
}
SetupStore("useVPS", usevps);
SetupStore("logVPS", logvps);
SetupStore("whileRecording", whilerecording);
SetupStore("whileReplaying", whilereplaying);
SetupStore("OSDMessage", osdmsg);
SetupStore("svdrPort", svdrPort);
SetupStore("Verbose", verbose);
SetupStore("HideMainMenuEntry", hidemainmenuentry);
SetupStore("Log2Rec", log2rec);
SetupStore("LogoOnly", logoonly);
SetupStore("DeferredShutdown", deferredshutdown);
SetupStore("AutoLogoExtraction", autologomenu);
SetupStore("FullDecode", fulldecode);
SetupStore("hwaccel", hwaccel);
setup->ProcessDuring = static_cast<int>(processduring);
setup->useVPS = static_cast<bool>(usevps);
setup->logVPS = static_cast<bool>(logvps);
setup->whileRecording = static_cast<bool>(whilerecording);
setup->whileReplaying = static_cast<bool>(whilereplaying);
setup->OSDMessage = static_cast<bool>(osdmsg);
setup->svdrPort = static_cast<int>(svdrPort);
setup->Verbose = static_cast<bool>(verbose);
setup->HideMainMenuEntry = static_cast<bool>(hidemainmenuentry);
setup->DeferredShutdown = static_cast<bool>(deferredshutdown);
setup->autoLogoMenu = static_cast<int>(autologomenu);
setup->fulldecode = static_cast<bool>(fulldecode);
setup->hwaccel = static_cast<int>(hwaccel);
setup->Log2Rec = log2rec;
setup->LogoOnly = logoonly;
}
#if APIVERSNUM>=20301
#define CHNUMWIDTH (numdigits(cChannels::MaxNumber())+1)
#else
#define CHNUMWIDTH (numdigits(Channels.MaxNumber())+1)
#endif
cSetupMarkAdList::cSetupMarkAdList(struct setup *Setup) :cOsdMenu("",CHNUMWIDTH) {
SetTitle(cString::sprintf("%s - %s '%s' %s",trVDR("Setup"),trVDR("Plugin"),Setup->PluginName,tr("list")));
SetHelp(nullptr, nullptr, nullptr, tr("back"));
DIR *dir = opendir(Setup->LogoDir);
if (!dir) return;
struct dirent *dirent;
while (dirent = readdir(dir)) {
if (dirent->d_name[0] == '.') continue;
if (strstr(dirent->d_name, "-P0.pgm")) {
char *name = strdup(dirent->d_name);
if (name) {
ALLOC(strlen(name)+1, "name");
char *m = strchr(name, '-');
if (m) *m = 0;
#if APIVERSNUM>=20301
cStateKey StateKey;
#ifdef DEBUG_LOCKS
dsyslog("markad: cSetupMarkAdList(): WANT channels READ");
#endif
if (const cChannels *Channels = cChannels::GetChannelsRead(StateKey, LOCK_TIMEOUT)) {
#ifdef DEBUG_LOCKS
dsyslog("markad: cSetupMarkAdList(): LOCKED channels READ");
#endif
for (const cChannel *channel=Channels->First(); channel; channel=Channels->Next(channel))
#else
for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel))
#endif
{
if (channel->Name()) {
char *cname = strdup(channel->Name());
if (cname) {
ALLOC(strlen(cname)+1, "cname");
for (int i = 0; i < static_cast<int>(strlen(cname)); i++) {
if (cname[i] == ' ') cname[i] = '_';
if (cname[i] == '.') cname[i] = '_';
if (cname[i] == '/') cname[i] = '_';
}
if (!strcmp(name, cname)) {
Add(new cSetupMarkAdListItem(cString::sprintf("%i\t%s",channel->Number(), channel->Name())));
FREE(strlen(cname)+1, "cname");
free(cname);
break;
}
FREE(strlen(cname)+1, "cname");
free(cname);
}
}
}
FREE(strlen(name)+1, "name");
free(name);
#if APIVERSNUM>=20301
#ifdef DEBUG_LOCKS
dsyslog("markad: cSetupMarkAdList(): UNLOCK channels READ");
#endif
StateKey.Remove();
}
else {
esyslog("markad: cSetupMarkAdList(): channel lock failed");
return;
}
#endif
}
}
}
Sort();
closedir(dir);
}
int cSetupMarkAdListItem::Compare(const cListObject &ListObject) const {
const cSetupMarkAdListItem *la = reinterpret_cast<const cSetupMarkAdListItem *>(&ListObject);
const char *t1 = strchr(Text(),'\t');
const char *t2 = strchr(la->Text(),'\t');
if ((t1) && (t2)) {
return strcasecmp(t1, t2);
}
else {
return 0;
}
}
eOSState cSetupMarkAdList::ProcessKey (eKeys Key) {
eOSState state = cOsdMenu::ProcessKey(Key);
if (HasSubMenu()) return osContinue;
if (state == osUnknown) {
switch (Key) {
case kOk:
case kBlue:
case kBack:
state = osBack;
break;
default:
break;
}
}
return state;
}
|