-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
270 lines (232 loc) · 6.54 KB
/
index.js
File metadata and controls
270 lines (232 loc) · 6.54 KB
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
/*
* This file is part of the ZombieBox package.
*
* Copyright © 2015-2020, Interfaced
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
const fse = require('fs-extra');
const path = require('path');
const {connect, install, launch} = require('./cli/sdb.js');
const {activateProfile, buildWgt, uninstall} = require('./cli/tizen');
const {parseXml, attachLogger} = require('./cli/utils');
const {AbstractPlatform, Application, logger: zbLogger} = require('zombiebox');
const logger = zbLogger.createChild('Tizen');
attachLogger(logger);
/**
*/
class Tizen extends AbstractPlatform {
/**
* @override
*/
getName() {
return 'tizen';
}
/**
* @override
*/
getSourcesDir() {
return path.join(__dirname, 'lib');
}
/**
* @override
*/
buildCLI(yargs, app) {
return yargs
.command(
'install [device]',
'Installs application on a device',
(yargs) => yargs
.positional('device', {
describe: 'Device name or IP address'
}),
async ({device}) => {
const config = app.getConfig();
const pathHelper = app.getPathHelper();
const {sdbDir} = config.platforms.tizen;
const applicationId = await this._getApplicationId(app);
const distDir = pathHelper.getDistDir({
baseDir: config.project.dist,
version: app.getAppVersion(),
platformName: this.getName()
});
if (await fse.pathExists(distDir)) {
const wgtPath = path.join(
distDir,
(await fse.readdir(distDir))
.filter((file) => path.extname(file) === '.wgt')
.shift()
);
logger.debug(`Found wgt file: ${wgtPath}`);
if (wgtPath) {
return install(sdbDir, applicationId, wgtPath, device);
}
}
logger.error(`Could not find .wgt file. in ${distDir}`);
}
)
.command(
'launch [device]',
'Launches application on a device',
(yargs) => yargs
.positional('device', {
describe: 'Device name or IP address'
}),
async ({device}) => {
const config = app.getConfig();
const applicationId = await this._getApplicationId(app);
const {sdbDir} = config.platforms.tizen;
const output = await launch(sdbDir, applicationId, device);
logger.output(output);
}
)
.command(
'uninstall [device]',
'Uninstalls application from device',
(yargs) => yargs
.positional('device', {
describe: 'Device name or IP address'
})
.positional('pkgId', {
describe: 'Application pkg identifier'
}),
async ({device}) => {
const config = app.getConfig();
const pkgId = await this._getApplicationId(app);
const {sdbDir, tizenToolsDir} = config.platforms.tizen;
if (device) {
const serialNo = await connect(sdbDir, device);
await uninstall(tizenToolsDir, pkgId, serialNo);
} else {
await uninstall(tizenToolsDir, pkgId);
}
}
)
.demandCommand(1, 1, 'No command specified')
.fail((message, error) => {
yargs.showHelp();
if (message) {
logger.error(message);
}
if (error instanceof Error) {
logger.error(error.toString());
logger.debug(error.stack);
}
});
}
/**
* @override
*/
getConfig() {
return {
platforms: {
tizen: {
widget: undefined,
tizenToolsDir: undefined,
sdbDir: undefined,
securityProfile: undefined
}
},
include: [
{
name: 'Tizen APIs',
externalScripts: ['$WEBAPIS/webapis/webapis.js'],
externs: [
path.join(__dirname, 'externs', 'avplay.js'),
path.join(__dirname, 'externs', 'tizen.js'),
path.join(__dirname, 'externs', 'webapis.js'),
path.join(__dirname, 'externs', 'productinfo.js'),
path.join(__dirname, 'externs', 'appcommon.js')
]
},
{
name: 'Tizen multiscreen',
inlineScripts: [path.join(__dirname, 'vendor', 'msf-2.3.3.min.js')],
externs: [path.join(__dirname, 'externs', 'msf.js')]
},
{
name: 'Tizen Preview SDK',
externs: [path.join(__dirname, 'externs', 'preview.js')]
}
]
};
}
/**
* @override
*/
async pack(app, distDir) {
const config = app.getConfig();
const {securityProfile, tizenToolsDir, iconPath} = config.platforms.tizen;
const configXml = await this._resolveConfigXmlPath(app);
await fse.copy(configXml, path.join(distDir, 'config.xml'));
const iconDest = await this._getIconDestination(app);
await fse.copy(iconPath, path.join(distDir, iconDest));
await activateProfile(tizenToolsDir, securityProfile);
logger.info('Building wgt');
await buildWgt(tizenToolsDir, securityProfile, distDir);
logger.output(`The wgt package was built into ${distDir}`);
await this._renameWgtFile(app, distDir)
.catch((error) => {
logger.error(error.toString());
});
}
/**
* @param {Application} app
* @return {Promise<string>}
* @protected
*/
async _resolveConfigXmlPath(app) {
const defaultPath = path.resolve(__dirname, 'default-config.xml');
const configXml = app.getConfig().platforms.tizen.widget;
if (configXml && await fse.pathExists(configXml)) {
return configXml;
}
logger.warn('Using default config.xml');
return defaultPath;
}
/**
* @param {Application} app
* @return {Promise<string>}
* @protected
*/
async _getApplicationId(app) {
const configXmlPath = await this._resolveConfigXmlPath(app);
const xml = await fse.readFile(configXmlPath, 'utf-8');
const data = await parseXml(xml);
const appId = data.widget['tizen:application'][0].$.id;
logger.silly(`Resolved app id "${appId}"`);
return appId;
}
/**
* @param {Application} app
* @return {Promise<string>}
* @protected
*/
async _getIconDestination(app) {
const configXmlPath = await this._resolveConfigXmlPath(app);
const xml = await fse.readFile(configXmlPath, 'utf-8');
const data = await parseXml(xml);
const iconDest = data.widget['icon'][0].$.src;
logger.silly(`Resolved icon destination "${iconDest}"`);
return iconDest;
}
/**
* @param {Object} zbApp
* @param {string} distDir
* @protected
*/
async _renameWgtFile(zbApp, distDir) {
const wgtFileName = (await fse.readdir(distDir)).find((file) => file.endsWith('.wgt'));
if (wgtFileName) {
const generatedWgtName = `${zbApp.getConfig().project.name}-${zbApp.getAppVersion()}`;
logger.silly(`Moving ${distDir}/${wgtFileName} to ${distDir}/${generatedWgtName}.wgt`);
await fse.rename(`${distDir}/${wgtFileName}`, `${distDir}/${generatedWgtName}.wgt`);
} else {
throw new Error(`Can't find .wgt file in "${distDir}"`);
}
}
}
/**
*/
module.exports = Tizen;