Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | /* eslint-disable import/no-cycle */ import path from 'path'; import fs from 'fs'; import chalk from 'chalk'; import semver from 'semver'; import inquirer from 'inquirer'; import { executeAsync, execCLI, openCommand } from '../../systemTools/exec'; import { getAppFolder, isPlatformActive, getAppVersion, getAppTitle, writeCleanFile, getAppId, getAppTemplateFolder, getConfigProp, waitForEmulator } from '../../common'; import { logToSummary, logTask, logInfo, logSuccess } from '../../systemTools/logger'; import { copyBuildsFolder, copyAssetsFolder } from '../../projectTools/projectParser'; import { CLI_WEBOS_ARES_PACKAGE, CLI_WEBOS_ARES_INSTALL, CLI_WEBOS_ARES_DEVICE_INFO, CLI_WEBOS_ARES_LAUNCH, CLI_WEBOS_ARES_NOVACOM, CLI_WEBOS_ARES_SETUP_DEVICE } from '../../constants'; import { getRealPath } from '../../systemTools/fileutils'; import { buildWeb } from '../web'; const isRunningOnWindows = process.platform === 'win32'; const launchWebOSimulator = (c) => { logTask('launchWebOSimulator'); const ePath = path.join(getRealPath(c, c.files.workspace.config.sdks.WEBOS_SDK), `Emulator/v4.0.0/LG_webOS_TV_Emulator${isRunningOnWindows ? '.exe' : '_RCU.app'}`); if (!fs.existsSync(ePath)) { return Promise.reject(`Can't find emulator at path: ${ePath}`); } if (isRunningOnWindows) return executeAsync(c, ePath, { detached: true, stdio: 'ignore' }); return executeAsync(c, `${openCommand} ${ePath}`, { detached: true }); }; const parseDevices = (c, devicesResponse) => { const linesArray = devicesResponse.split('\n').slice(2).map(line => line.trim()).filter(line => line !== ''); return Promise.all(linesArray.map(async (line) => { const [name, device, connection, profile] = line.split(' ').map(word => word.trim()).filter(word => word !== ''); let deviceInfo = ''; try { deviceInfo = await execCLI(c, CLI_WEBOS_ARES_DEVICE_INFO, `-d ${name}`, { silent: true, timeout: 10000 }); } catch (e) { deviceInfo = e; } return { name, device, connection, profile, isDevice: !device.includes('127.0.0.1'), active: !deviceInfo.includes('ERR!') }; })); }; const installAndLaunchApp = async (c, target, appPath, tId) => { await execCLI(c, CLI_WEBOS_ARES_INSTALL, `--device ${target} ${appPath}`); await execCLI(c, CLI_WEBOS_ARES_LAUNCH, `--device ${target} ${tId}`); }; const buildDeviceChoices = devices => devices.map(device => ({ key: device.name, name: `${device.name} - ${device.device}`, value: device.name })); const listWebOSTargets = async (c) => { const devicesResponse = await execCLI(c, CLI_WEBOS_ARES_DEVICE_INFO, '-D'); const devices = await parseDevices(c, devicesResponse); const deviceArray = devices.map((device, i) => ` [${i + 1}]> ${chalk.bold(device.name)} | ${device.device}`); logToSummary(`WebOS Targets:\n${deviceArray.join('\n')}`); return true; }; const waitForEmulatorToBeReady = async (c) => { const devicesResponse = await execCLI(c, CLI_WEBOS_ARES_DEVICE_INFO, '-D'); const devices = await parseDevices(c, devicesResponse); const emulator = devices.filter(d => !d.isDevice)[0]; if (!emulator) throw new Error('No WebOS emulator configured'); return waitForEmulator(c, CLI_WEBOS_ARES_DEVICE_INFO, `-d ${emulator.name}`, res => res.includes('modelName')); }; const runWebOS = async (c, platform, target) => { logTask(`runWebOS:${platform}:${target}`); const { device, hosted, maxErrorLength, debug } = c.program; let isHosted = hosted || !getConfigProp(c, platform, 'bundleAssets'); if (debug) isHosted = false; const tDir = path.join(getAppFolder(c, platform), 'public'); const tOut = path.join(getAppFolder(c, platform), 'output'); const tSim = c.program.target || 'emulator'; const configFilePath = path.join(getAppFolder(c, platform), 'public/appinfo.json'); logTask(`runWebOS:${platform}:${target}:${isHosted}`, chalk.grey); const cnfg = JSON.parse(fs.readFileSync(configFilePath, 'utf-8')); const tId = cnfg.id; const appPath = path.join(tOut, `${tId}_${cnfg.version}_all.ipk`); // Start the fun !isHosted && await buildWeb(c, platform); await execCLI(c, CLI_WEBOS_ARES_PACKAGE, `-o ${tOut} ${tDir} -n`); // List all devices const devicesResponse = await execCLI(c, CLI_WEBOS_ARES_DEVICE_INFO, '-D'); const devices = await parseDevices(c, devicesResponse); const activeDevices = devices.filter(d => d.active); if (device) { // Running on a device const actualDevices = devices.filter(d => d.isDevice); if (!actualDevices.length) { // No device configured. Asking to configure const response = await inquirer.prompt([{ type: 'confirm', name: 'setupDevice', message: 'Looks like you want to deploy on a device but have none configured. Do you want to configure one?', default: false }]); if (response.setupDevice) { // Yes, I would like that logInfo('Please follow the instructions from http://webostv.developer.lge.com/develop/app-test/#installDevModeApp on how to setup the TV and the connection with the PC. Then follow the onscreen prompts\n'); await execCLI(c, CLI_WEBOS_ARES_SETUP_DEVICE, '', { interactive: true }); const newDeviceResponse = await execCLI(c, CLI_WEBOS_ARES_DEVICE_INFO, '-D'); const dev = await parseDevices(c, newDeviceResponse); const actualDev = dev.filter(d => d.isDevice); if (actualDev.length > 0) { const newDevice = actualDev[0]; // Oh boy, oh boy, I did it! I have a TV connected! logInfo('Please enter the `Passphrase` from the TV\'s Developer Mode app'); await execCLI(c, CLI_WEBOS_ARES_NOVACOM, `--device ${newDevice.name} --getkey`, { stdio: 'inherit', maxErrorLength }); await execCLI(c, CLI_WEBOS_ARES_INSTALL, `--device ${newDevice.name} ${appPath}`); await execCLI(c, CLI_WEBOS_ARES_LAUNCH, `--device ${newDevice.name} ${tId}`); } else { // Yes, I said I would but I didn't // @todo handle user not setting up the device } } } else if (actualDevices.length === 1) { const tv = actualDevices[0]; await execCLI(c, CLI_WEBOS_ARES_INSTALL, `--device ${tv.name} ${appPath}`); await execCLI(c, CLI_WEBOS_ARES_LAUNCH, `--device ${tv.name} ${tId}`); } } else if (!c.program.target) { // No target specified if (activeDevices.length === 1) { // One device present await installAndLaunchApp(c, devices[0].name, appPath, tId); } else if (activeDevices.length > 1) { // More than one, choosing const choices = buildDeviceChoices(devices); const response = await inquirer.prompt([{ name: 'chosenDevice', type: 'list', message: 'What device would you like to start the app?', choices }]); if (response.chosenDevice) { await installAndLaunchApp(c, response.chosenDevice, appPath, tId); } } else { await launchWebOSimulator(c); await waitForEmulatorToBeReady(c); await installAndLaunchApp(c, tSim, appPath, tId); } } else { // Target specified, using that await installAndLaunchApp(c, c.program.target, appPath, tId); } }; const buildWebOSProject = (c, platform) => new Promise((resolve, reject) => { logTask(`buildWebOSProject:${platform}`); const tDir = path.join(getAppFolder(c, platform), 'public'); const tOut = path.join(getAppFolder(c, platform), 'output'); buildWeb(c, platform) .then(() => execCLI(c, CLI_WEBOS_ARES_PACKAGE, `-o ${tOut} ${tDir} -n`)) .then(() => { logSuccess(`Your IPK package is located in ${chalk.white(tOut)} .`); return resolve(); }) .catch(reject); }); const configureWebOSProject = (c, platform) => new Promise((resolve, reject) => { logTask('configureWebOSProject'); if (!isPlatformActive(c, platform, resolve)) return; copyAssetsFolder(c, platform) .then(() => copyBuildsFolder(c, platform)) .then(() => configureProject(c, platform)) .then(() => resolve()) .catch(e => reject(e)); }); const configureProject = (c, platform) => new Promise((resolve, reject) => { logTask(`configureProject:${platform}`); const appFolder = getAppFolder(c, platform); const configFile = 'public/appinfo.json'; writeCleanFile(path.join(getAppTemplateFolder(c, platform), configFile), path.join(appFolder, configFile), [ { pattern: '{{APPLICATION_ID}}', override: getAppId(c, platform) }, { pattern: '{{APP_TITLE}}', override: getAppTitle(c, platform) }, { pattern: '{{APP_VERSION}}', override: semver.coerce(getAppVersion(c, platform)) }, ]); resolve(); }); export { launchWebOSimulator, configureWebOSProject, runWebOS, buildWebOSProject, listWebOSTargets }; |