blob: 7452ad4f48afda66cbdbc0ee13562e6ad6230c99 (
plain)
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
|
#ifndef __SKINREPO_H
#define __SKINREPO_H
#include <string>
#include <vector>
#include <map>
#include <set>
#include "../libcore/libxmlwrapper.h"
#include <vdr/plugin.h>
using namespace std;
enum eRepoType {
rtUndefined,
rtGit,
rtZipUrl
};
enum eAction {
eaUndefined,
eaInstall,
eaUpdate
};
// --- cSkinRepo -------------------------------------------------------------
class cSkinRepo : public cThread {
private:
string name;
eRepoType repoType;
eAction action;
string url;
string author;
string minSDVersion;
vector<string> specialFonts;
vector<string> supportedPlugins;
vector< pair < string, string > > screenshots;
//helpers for execution
string command;
string command2;
string tempfile;
int result;
string skinPath;
string themesPath;
virtual void Action(void);
void CreateThemeFiles(void);
public:
cSkinRepo(void);
virtual ~cSkinRepo(void);
void SetName(string name) { this->name = name; };
void SetRepoType(eRepoType type) { this->repoType = type; };
void SetUrl(string url) { this->url = url; };
void SetAuthor(string author) { this->author = author; };
void SetMinSDVersion(string minSDVersion) { this->minSDVersion = minSDVersion; };
void SetSpecialFont(string font) { specialFonts.push_back(font); };
void SetSupportedPlugin(string plugin) { supportedPlugins.push_back(plugin); };
void SetScreenshot(string desc, string url) { screenshots.push_back(pair<string, string>(desc, url)); };
bool Valid(void);
eRepoType Type(void) { return repoType; };
string Name(void) { return name; };
string Author(void) { return author; };
string MinSDVersion(void) { return minSDVersion; };
string Url(void) { return url; };
vector<string> SpecialFonts(void) { return specialFonts; };
vector<string> SupportedPlugins(void) { return supportedPlugins; };
vector< pair < string, string > > Screenshots(void) { return screenshots; };
void Install(string path, string themesPath);
void Update(string path);
bool InstallationFinished(void) { return !(Running()); };
bool SuccessfullyInstalled(void) { if (result == 0) return true; return false; };
bool SuccessfullyUpdated(void);
void Debug(void);
};
// --- cSkinRepos -------------------------------------------------------------
class cSkinRepos : public cLibXMLWrapper {
private:
string skinRepoUrl;
string repoFolder;
vector<cSkinRepo*> repos;
vector<cSkinRepo*>::iterator repoIt;
bool ParseRepository(void);
void InitRepoGit(string path);
void PullRepoGit(string path);
public:
cSkinRepos(void);
virtual ~cSkinRepos(void);
void Init(string path);
void Read(string path);
int Count(void) { return repos.size(); };
cSkinRepo *GetRepo(string name);
void InitRepoIterator(void) { repoIt = repos.begin(); };
cSkinRepo *GetNextRepo(void);
void Debug(void);
};
#endif //__SKINREPO_H
|