-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfilebrowser.c
454 lines (404 loc) · 10.9 KB
/
filebrowser.c
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
#include <vector>
#include <string>
#include <algorithm>
#ifdef USE_DISC
#include <cdio/cdio.h>
#include <sys/mount.h>
#include <libmount/libmount.h>
#endif
#include "filebrowser.h"
#include "mpv_service.h"
#include "config.h"
using std::string;
using std::vector;
using std::sort;
string cMpvFilebrowser::currentDir = "";
string cMpvFilebrowser::currentItem = "";
cMpvFilebrowser::cMpvFilebrowser(string RootDir, string DiscDevice)
:cOsdMenu(tr("Filebrowser"))
{
rootDir = RootDir;
discDevice = DiscDevice;
if (currentDir == "")
currentDir = rootDir;
ShowDirectory(currentDir);
}
void cMpvFilebrowser::ShowDirectory(string Path)
{
Clear();
vector<string> Directories;
vector<string> Files;
DIR *hDir;
struct dirent *Entry;
hDir = opendir(Path.c_str());
// current directory deleted?
if (!hDir && Path != rootDir)
{
currentDir = rootDir;
Path = rootDir;
hDir = opendir(Path.c_str());
}
// do not crash if browser root directory absent
if (!hDir)
{
esyslog("[mpv] No browser root directory!\n");
rootDir = "/";
currentDir = rootDir;
MpvPluginConfig->BrowserRoot = rootDir;
Path = rootDir;
hDir = opendir(Path.c_str());
}
while ((Entry = readdir(hDir)) != NULL)
{
if (!Entry || Entry->d_name[0] == '.')
continue;
struct stat Stat;
string Filename = Path + "/" + Entry->d_name;
stat(Filename.c_str(), &Stat);
if (S_ISDIR(Stat.st_mode))
Directories.push_back(Entry->d_name);
else if (S_ISREG(Stat.st_mode))
Files.push_back(Entry->d_name);
}
closedir(hDir);
sort(Directories.begin(), Directories.end());
sort(Files.begin(), Files.end());
for (unsigned int i=0; i<Directories.size(); i++)
AddItem(Path, Directories[i], true);
for (unsigned int i=0; i<Files.size(); i++)
AddItem(Path, Files[i], false);
string MenuTitle = tr("Filebrowser");
if (rootDir != Path)
MenuTitle += " (" + Path.substr(rootDir.size() + 1, string::npos) + ")";
SetTitle(MenuTitle.c_str());
#ifdef USE_DISC
SetHelp(tr("Disc"), Directories.size() ? tr("PlayDir") : NULL, tr("Remove"), tr("Shuffle"));
#else
SetHelp(NULL, Directories.size() ? tr("PlayDir") : NULL, tr("Remove"), tr("Shuffle"));
#endif
Display();
}
int cMpvFilebrowser::PlayListCreate(string Path, FILE *fdPl)
{
Clear();
vector<string> PlayDirectories;
vector<string> PlayFiles;
DIR *playDir;
struct dirent *Entry;
playDir = opendir(Path.c_str());
// do not crash if browser play directory absent
if (!playDir)
{
esyslog("[mpv] No play directory!\n");
return -1;
}
while ((Entry = readdir(playDir)) != NULL)
{
if (!Entry || Entry->d_name[0] == '.')
continue;
//excluding resume files
string ex = Entry->d_name;
if (ex.find("resume") != string::npos) continue;
struct stat Stat;
string Filename = Path + "/" + Entry->d_name;
stat(Filename.c_str(), &Stat);
if (S_ISDIR(Stat.st_mode))
PlayDirectories.push_back(Entry->d_name);
else if (S_ISREG(Stat.st_mode))
PlayFiles.push_back(Entry->d_name);
}
closedir(playDir);
if (!PlayDirectories.size() && !PlayFiles.size()) return -1;
if (fdPl)
{
sort(PlayDirectories.begin(), PlayDirectories.end());
sort(PlayFiles.begin(), PlayFiles.end());
for (unsigned int i=0; i<PlayDirectories.size(); i++)
{
string Filedir = Path + "/" + PlayDirectories[i];
PlayListCreate(Filedir, fdPl);
}
for (unsigned int i=0; i<PlayFiles.size(); i++)
{
string Filename = Path + "/" + PlayFiles[i];
fprintf(fdPl, "%s\n", Filename.c_str());
}
}
return 0;
}
void cMpvFilebrowser::AddItem(string Path, string Text, bool IsDir)
{
bool Current = false;
if (currentItem == Text)
Current = true;
Add(new cMpvFilebrowserMenuItem(Path, Text, IsDir), Current);
}
eOSState cMpvFilebrowser::ProcessKey(eKeys Key)
{
string newPath = "";
cMpvFilebrowserMenuItem *item;
eOSState State;
int index = 0;
switch (Key)
{
case kOk:
item = (cMpvFilebrowserMenuItem *) Get(Current());
if (!item) break;
newPath = item->Path() + "/" + item->Text();
if (item->IsDirectory())
{
currentDir = newPath;
currentItem = "";
ShowDirectory(newPath);
return osContinue;
}
else
{
currentItem = item->Text();
PlayFile(newPath);
return osEnd;
}
break;
case kBack:
// we reached our root, so don't go back further and let VDR handle this (close submenu)
if (currentDir == rootDir)
return cOsdMenu::ProcessKey(Key);
currentItem = currentDir.substr(currentDir.find_last_of("/")+1, string::npos);
currentDir = currentDir.substr(0,currentDir.find_last_of("/"));
ShowDirectory(currentDir);
return osContinue;
case kLeft:
case kRight:
case kUp:
case kDown:
// first let VDR handle those keys or we get the previous item
State = cOsdMenu::ProcessKey(Key);
item = (cMpvFilebrowserMenuItem *) Get(Current());
if (!item) break;
currentItem = item->Text();
#ifdef USE_DISC
SetHelp(tr("Disc"), item->IsDirectory() ? tr("PlayDir") : NULL, tr("Remove"), tr("Shuffle"));
#else
SetHelp(NULL, item->IsDirectory() ? tr("PlayDir") : NULL, tr("Remove"), tr("Shuffle"));
#endif
return State;
case kRed:
if (PlayDisc())
return osEnd;
break;
case kBlue:
item = (cMpvFilebrowserMenuItem *) Get(Current());
if (!item) break;
newPath = item->Path() + "/" + item->Text();
if (!item->IsDirectory())
{
currentItem = item->Text();
PlayFile(newPath, true);
return osEnd;
}
return osContinue;
case kGreen:
item = (cMpvFilebrowserMenuItem *) Get(Current());
if (!item) break;
newPath = item->Path() + "/" + item->Text();
if (item->IsDirectory())
{
int res;
FILE *fdPl = fopen ("/tmp/mpv.playlist", "w");
if (!fdPl)
{
Skins.Message(mtError, tr("Playlist cannot be created!"));
esyslog ("[mpv] Playlist creation error!\n");
return osEnd;
}
res = PlayListCreate(newPath, fdPl);
fclose (fdPl);
if (!res)
{
PlayFile("/tmp/mpv.playlist");
return osEnd;
}
else
{
ShowDirectory(currentDir);
Skins.Message(mtError, tr("Playlist cannot be created!"));
return osContinue;
}
}
break;
case kYellow:
item = (cMpvFilebrowserMenuItem *) Get(Current());
if (!item) break;
newPath = item->Path() + "/" + item->Text();
index = item->Index();
if (item->IsDirectory())
{
int res;
res = PlayListCreate(newPath, NULL);
ShowDirectory(currentDir);
if (res != -1)
{
Skins.Message(mtError, tr("Not empty directory, can't remove!"));
}
else
{
if (Skins.Message(mtWarning, tr("Remove empty directory?"), 5) == kOk)
{
res = rmdir(newPath.c_str());
dsyslog("[mpv] remove %s %d\n", newPath.c_str(), res);
if (res)
{
Skins.Message(mtError, tr("Unable to remove directory!"));
}
else
{
if (index)
{
item = (cMpvFilebrowserMenuItem *) Get(index-1);
if (!item) break;
currentItem = item->Text();
}
}
}
}
ShowDirectory(currentDir);
}
else
{
if (Skins.Message(mtWarning, tr("Remove file?"), 5) == kOk)
{
int res;
res = remove(newPath.c_str());
dsyslog("[mpv] remove %s %d\n", newPath.c_str(), res);
if (res)
{
Skins.Message(mtError, tr("Unable to remove file!"));
}
else
{
if (index)
{
item = (cMpvFilebrowserMenuItem *) Get(index-1);
if (!item) break;
currentItem = item->Text();
}
}
ShowDirectory(currentDir);
}
}
return osContinue;
break;
default:
break;
}
return cOsdMenu::ProcessKey(Key);
}
bool cMpvFilebrowser::PlayFile(string Filename, bool Shuffle)
{
cPlugin *p;
p = cPluginManager::GetPlugin("mpv");
if (!p)
return false;
if (!Shuffle)
{
Mpv_PlayFile playFile;
playFile.Filename = (char *)Filename.c_str();
return p->Service("Mpv_PlayFile", &playFile);
}
else
{
Mpv_PlaylistShuffle shuffleFile;
shuffleFile.Filename = (char *)Filename.c_str();
return p->Service("Mpv_PlaylistShuffle", &shuffleFile);
}
// should never be reached, but silence a compiler warning
return false;
}
// returns true if play is started, false otherwise
bool cMpvFilebrowser::PlayDisc()
{
#ifdef USE_DISC
CdIo_t *hCdio = cdio_open(discDevice.c_str(), DRIVER_DEVICE);
discmode_t DiscMode = cdio_get_discmode(hCdio);
cdio_destroy(hCdio);
switch (DiscMode)
{
case CDIO_DISC_MODE_CD_DA:
PlayFile("cdda://");
break;
case CDIO_DISC_MODE_DVD_ROM:
case CDIO_DISC_MODE_DVD_RAM:
case CDIO_DISC_MODE_DVD_R:
case CDIO_DISC_MODE_DVD_RW:
case CDIO_DISC_MODE_HD_DVD_ROM:
case CDIO_DISC_MODE_HD_DVD_RAM:
case CDIO_DISC_MODE_HD_DVD_R:
case CDIO_DISC_MODE_DVD_PR:
case CDIO_DISC_MODE_DVD_PRW:
case CDIO_DISC_MODE_DVD_PRW_DL:
case CDIO_DISC_MODE_DVD_PR_DL:
case CDIO_DISC_MODE_DVD_OTHER:
if (!Mount(discDevice))
break;
struct stat DirInfo;
if (stat("tmp/mpv_mount/VIDEO_TS", &DirInfo) == 0)
{
Unmount();
return PlayFile("dvd://");
}
else if (stat("tmp/mpv_mount/BDMV", &DirInfo) == 0)
{
Unmount();
return PlayFile("bd://");
}
Unmount();
break;
case CDIO_DISC_MODE_CD_XA:
case CDIO_DISC_MODE_CD_MIXED:
case CDIO_DISC_MODE_NO_INFO:
case CDIO_DISC_MODE_ERROR:
case CDIO_DISC_MODE_CD_I:
default:
break;
}
#endif
return false;
}
bool cMpvFilebrowser::Mount(string Path)
{
#ifdef USE_DISC
Unmount();
string MountPoint = "/tmp/mpv_mount";
if (mkdir(MountPoint.c_str(), S_IRWXU))
{
dsyslog("[mpv] create mount point failed");
return false;
}
struct libmnt_context *hMount = mnt_new_context();
mnt_context_set_source(hMount, Path.c_str());
mnt_context_set_target(hMount, MountPoint.c_str());
mnt_context_set_mflags(hMount, MS_RDONLY);
int res = mnt_context_mount(hMount);
mnt_free_context(hMount);
if (res == 0)
return true;
#endif
return false;
}
bool cMpvFilebrowser::Unmount()
{
#ifdef USE_DISC
string MountPoint = "/tmp/mpv_mount";
int res = umount(MountPoint.c_str());
rmdir(MountPoint.c_str());
if (res == 0)
return true;
#endif
return false;
}
cMpvFilebrowserMenuItem::cMpvFilebrowserMenuItem(string Path, string Item, bool IsDir)
{
isDir = IsDir;
path = Path;
SetText(Item.c_str());
}