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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
|
/*
* See the README file for copyright information and how to reach the author.
*/
#include <string>
#include <fstream>
#include <iostream>
#include <vdr/plugin.h>
#include <vdr/videodir.h>
#include <vdr/recording.h>
#include "tools.h"
#include "mymenusetup.h"
using namespace std;
#define CONFIGFILE "/extrecmenu.sort.conf"
#define BUFFERSIZE 20972 // (2*1024*1024)/100
MoveBetweenFileSystems MoveThread;
string myStrEscape(string S,const char *Chars)
{
int i=0;
while(Chars[i]!=0)
{
string::size_type j=0;
while((j=S.find(Chars[i],j))!=string::npos)
{
S.insert(j,1,'\\');
j+=2;
}
i++;
}
return S;
}
string myStrReplace(string S,char C1,char C2)
{
string::size_type i=0;
while((i=S.find(C1,i))!=string::npos)
{
S.replace(i,1,1,C2);
i++;
}
return S;
}
// --- SortList ---------------------------------------------------------------
void SortList::ReadConfigFile()
{
string configfile(cPlugin::ConfigDirectory());
configfile+=CONFIGFILE;
ifstream in(configfile.c_str());
if(in)
{
string buf;
while(!in.eof())
{
getline(in,buf);
if(buf.length()>0)
Add(new SortListItem(buf.c_str()));
}
}
}
void SortList::WriteConfigFile()
{
string configfile(cPlugin::ConfigDirectory());
configfile+=CONFIGFILE;
ofstream outfile(configfile.c_str());
for(SortListItem *item=First();item;item=Next(item))
outfile << item->Path() << endl;
}
bool SortList::Find(char *Path)
{
for(SortListItem *item=First();item;item=Next(item))
{
if(!strcmp(item->Path(),Path))
return true;
}
return false;
}
// --- MoveBetweenFileSystems -------------------------------------------------
MoveBetweenFileSystems::MoveBetweenFileSystems():cThread("moving files between filesystems")
{
}
bool MoveBetweenFileSystems::Start(string OldName,string NewName,cRecording *Recording)
{
oldname=OldName;
newname=NewName;
recording=Recording;
return cThread::Start();
}
bool MoveBetweenFileSystems::IsMoving(string Path)
{
if(Active())
{
if(recording)
{
if(Path==oldname)
return true;
}
else
{
if(!strncmp(oldname.c_str(),Path.c_str(),oldname.length()))
return true;
}
}
return false;
}
bool MoveBetweenFileSystems::Move(string From,string To,cRecording *Recording)
{
if(Recording)
{
isyslog("[extrecmenu] moving %s to %s",From.c_str(),To.c_str());
DIR *dir;
struct dirent *entry;
dir=opendir(From.c_str());
while((entry=readdir(dir))!=NULL)
{
string from,to;
from=From+'/'+entry->d_name;
to=To+'/'+entry->d_name;
struct stat st;
stat(from.c_str(),&st);
if(S_ISREG(st.st_mode))
{
isyslog("[extrecmenu] moving %s",entry->d_name);
time_t copytime=time(NULL);
char buf[BUFFERSIZE];
int infile=-1,outfile=-1;
struct stat from_stat;
ssize_t sz,sz_read=1,sz_write;
if(stat(from.c_str(),&from_stat)!=0 ||
(infile=open(from.c_str(),O_RDONLY))<0 ||
(outfile=open(to.c_str(),O_WRONLY|O_CREAT|O_EXCL,from_stat.st_mode))<0)
{
if(infile>=0)
close(infile);
closedir(dir);
Skins.Message(mtError,strerror(errno));
return false;
}
while(sz_read>0 && (sz_read=read(infile,buf,BUFFERSIZE))>0)
{
sz_write=0;
do
{
if((sz=write(outfile,buf+sz_write,sz_read-sz_write))<0)
{
close(infile);
close(outfile);
closedir(dir);
Skins.Message(mtError,tr("Rename/Move failed!"));
esyslog("[extrecmenu] %s",strerror(errno));
return false;
}
sz_write+=sz;
}
while(sz_write<sz_read);
if(mysetup.LimitBandwidth)
usleep(10);
}
close(infile);
close(outfile);
copytime=time(NULL)-copytime;
isyslog("[extrecmenu] needed %d secs for %d bytes",(int)copytime,(int)st.st_size);
}
}
closedir(dir);
Recordings.AddByName(To.c_str());
Recording->Delete();
Recordings.DelByName(From.c_str());
string buf="move \"";
buf+=myStrEscape(From,"'\\\"$");
buf+="\"";
cRecordingUserCommand::InvokeCommand(buf.c_str(),To.c_str());
}
else
{
string buf;
buf=From+'/';
if(!strncmp(buf.c_str(),To.c_str(),buf.length()))
{
Skins.Message(mtError,tr("Moving into own sub-directory not allowed!"));
return false;
}
myRecList *list=new myRecList();
for(cRecording *recording=Recordings.First();recording;recording=Recordings.Next(recording))
list->Add(new myRecListItem(recording));
myRecListItem *item=list->First();
while(item)
{
if(!strncmp(From.c_str(),item->recording->FileName(),From.length()))
{
char *buffer=NULL;
buffer=strdup(From.c_str()+strlen(VideoDirectory)+1);
buffer=ExchangeChars(buffer,false);
if(strcmp(item->recording->Name(),buffer))
{
buf=To+(item->recording->FileName()+From.length());
if(!MakeDirs(buf.c_str(),true))
{
Skins.Message(mtError,tr("Rename/Move failed!"));
esyslog("[extrecmenu] %s",strerror(errno));
free(buffer);
delete list;
return false;
}
if(Move(item->recording->FileName(),buf,item->recording)==false)
{
free(buffer);
delete list;
return false;
}
}
free(buffer);
}
item=list->Next(item);
}
delete list;
}
return true;
}
void MoveBetweenFileSystems::Action()
{
Move(oldname,newname,recording);
}
// --- MoveRename -------------------------------------------------------------
// creates the necassery directories and renames the given old name to the new name
bool MoveRename(const char *OldName,const char *NewName,cRecording *Recording,bool Move)
{
char *buf=NULL;
if(!strcmp(OldName,NewName))
return true;
if(Recording)
{
isyslog("[extrecmenu] moving %s to %s",OldName,NewName);
if(rename(OldName,NewName)==-1)
{
remove(NewName); // remove created directory
Skins.Message(mtError,tr("Rename/Move failed!"));
esyslog("[extrecmenu] %s",strerror(errno));
return false;
}
Recordings.AddByName(NewName);
Recordings.Del(Recording);
// set user command for '-r'-option of VDR
asprintf(&buf,"%s \"%s\"",Move?"move":"rename",*strescape(OldName,"'\\\"$"));
cRecordingUserCommand::InvokeCommand(buf,NewName);
free(buf);
}
else
{
// is the new path within the old?
asprintf(&buf,"%s/",OldName); // we have to append a / to make sure that we search for a directory
if(!strncmp(buf,NewName,strlen(buf)))
{
Skins.Message(mtError,tr("Moving into own sub-directory not allowed!"));
free(buf);
return false;
}
free(buf);
myRecList *list=new myRecList();
for(cRecording *recording=Recordings.First();recording;recording=Recordings.Next(recording))
list->Add(new myRecListItem(recording));
myRecListItem *item=list->First();
while(item)
{
if(!strncmp(OldName,item->recording->FileName(),strlen(OldName)))
{
buf=strdup(OldName+strlen(VideoDirectory)+1);
buf=ExchangeChars(buf,false);
if(strcmp(item->recording->Name(),buf))
{
free(buf);
asprintf(&buf,"%s%s",NewName,item->recording->FileName()+strlen(OldName));
if(!MakeDirs(buf,true))
{
Skins.Message(mtError,tr("Creating directories failed!"));
esyslog("[extrecmenu] %s",strerror(errno));
free(buf);
delete list;
return false;
}
if(MoveRename(item->recording->FileName(),buf,item->recording,Move)==false)
{
free(buf);
delete list;
return false;
}
}
free(buf);
}
item=list->Next(item);
}
delete list;
}
return true;
}
// --- myRecListItem ----------------------------------------------------------
bool myRecListItem::SortByName=false;
myRecListItem::myRecListItem(cRecording *Recording)
{
recording=Recording;
filename=strdup(recording->FileName());
}
myRecListItem::~myRecListItem()
{
free(filename);
}
char *myRecListItem::StripEpisodeName(char *s)
{
char *t=s,*s1=NULL,*s2=NULL;
while(*t)
{
if(*t=='/')
{
if(s1)
{
if(s2)
s1=s2;
s2=t;
}
else
s1=t;
}
t++;
}
if(mysetup.DescendSorting)
{
if(SortByName)
*s1=1;
else
*(s2+1)=255;
}
else
*s1=255;
if(s1&&s2&&!SortByName)
memmove(s1+1,s2,t-s2+1);
return s;
}
int myRecListItem::Compare(const cListObject &ListObject)const
{
myRecListItem *item=(myRecListItem*)&ListObject;
char *s1=StripEpisodeName(strdup(filename+strlen(VideoDirectory)));
char *s2=StripEpisodeName(strdup(item->filename+strlen(VideoDirectory)));
int compare;
if(mysetup.DescendSorting)
compare=strcasecmp(s2,s1);
else
compare=strcasecmp(s1,s2);
free(s1);
free(s2);
return compare;
}
// --- myRecList --------------------------------------------------------------
void myRecList::Sort(bool SortByName)
{
myRecListItem::SortByName=SortByName;
cListBase::Sort();
}
|