-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathconfig.ts
193 lines (163 loc) · 5.97 KB
/
config.ts
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
import * as path from "path";
import * as shelljs from "shelljs";
import * as os from "os";
import * as _ from "lodash";
import {
IConfiguration,
IStaticConfig,
IAndroidToolsInfo,
} from "./declarations";
import { IFileSystem, IChildProcess, IHostInfo } from "./common/declarations";
import { IInjector } from "./common/definitions/yok";
import { injector } from "./common/yok";
export class Configuration implements IConfiguration {
// User specific config
DEBUG = false;
ANDROID_DEBUG_UI: string = null;
USE_POD_SANDBOX: boolean = false;
UPLOAD_PLAYGROUND_FILES_ENDPOINT: string = null;
SHORTEN_URL_ENDPOINT: string = null;
INSIGHTS_URL_ENDPOINT: string = null;
WHOAMI_URL_ENDPOINT: string = null;
PREVIEW_APP_ENVIRONMENT: string = null;
GA_TRACKING_ID: string = null;
DISABLE_HOOKS: boolean = false;
/*don't require logger and everything that has logger as dependency in config.js due to cyclic dependency*/
constructor(private $fs: IFileSystem) {
_.extend(this, this.loadConfig("config"));
}
private loadConfig(name: string): any {
const configFileName = this.getConfigPath(name);
return this.$fs.readJson(configFileName);
}
private getConfigPath(filename: string): string {
return path.join(__dirname, "../config", filename + ".json");
}
}
injector.register("config", Configuration);
export class StaticConfig implements IStaticConfig {
public QR_SIZE = 5;
public PROJECT_FILE_NAME = "package.json";
public CLIENT_NAME_KEY_IN_PROJECT_FILE = "nativescript";
public CLIENT_NAME = "tns";
public CLIENT_NAME_ALIAS = "NativeScript";
public TRACK_FEATURE_USAGE_SETTING_NAME = "TrackFeatureUsage";
public ERROR_REPORT_SETTING_NAME = "TrackExceptions";
public ANALYTICS_INSTALLATION_ID_SETTING_NAME = "AnalyticsInstallationID";
public get PROFILE_DIR_NAME(): string {
return ".nativescript-cli";
}
public RESOURCE_DIR_PATH = path.join(__dirname, "..", "resources");
constructor(private $injector: IInjector) {}
public get disableCommandHooks() {
// Never set this to false because it will duplicate execution of hooks realized through method decoration
return true;
}
public version = require("../package.json").version;
public get HTML_CLI_HELPERS_DIR(): string {
return path.join(__dirname, "../docs/helpers");
}
public get pathToPackageJson(): string {
return path.join(__dirname, "..", "package.json");
}
public get PATH_TO_BOOTSTRAP(): string {
return path.join(__dirname, "bootstrap.js");
}
private _adbFilePath: string = null;
public async getAdbFilePath(): Promise<string> {
if (!this._adbFilePath) {
const androidToolsInfo: IAndroidToolsInfo = this.$injector.resolve(
"androidToolsInfo"
);
this._adbFilePath =
(await androidToolsInfo.getPathToAdbFromAndroidHome()) ||
(await this.getAdbFilePathCore());
}
return this._adbFilePath;
}
private _userAgent: string = null;
public get USER_AGENT_NAME(): string {
if (!this._userAgent) {
this._userAgent = `${this.CLIENT_NAME}CLI`;
}
return this._userAgent;
}
public set USER_AGENT_NAME(userAgentName: string) {
this._userAgent = userAgentName;
}
public get MAN_PAGES_DIR(): string {
return path.join(__dirname, "..", "docs", "man_pages");
}
public get HTML_PAGES_DIR(): string {
return path.join(__dirname, "..", "docs", "html");
}
public get HTML_COMMON_HELPERS_DIR(): string {
return path.join(__dirname, "common", "docs", "helpers");
}
private async getAdbFilePathCore(): Promise<string> {
const $childProcess: IChildProcess = this.$injector.resolve(
"$childProcess"
);
try {
// Do NOT use the adb wrapper because it will end blow up with Segmentation fault because the wrapper uses this method!!!
const proc = await $childProcess.spawnFromEvent(
"adb",
["version"],
"exit",
undefined,
{ throwError: false }
);
if (proc.stderr) {
return await this.spawnPrivateAdb();
}
} catch (e) {
if (e.code === "ENOENT") {
return await this.spawnPrivateAdb();
}
}
return "adb";
}
/*
Problem:
1. Adb forks itself as a server which keeps running until adb kill-server is invoked or crashes
2. On Windows running processes lock their image files due to memory mapping. Locked files prevent their parent directories from deletion and cannot be overwritten.
3. Update and uninstall scenarios are broken
Solution:
- Copy adb and associated files into a temporary directory. Let this copy of adb run persistently
- On Posix OSes, immediately delete the file to not take file space
- Tie common lib version to updates of adb, so that when we integrate a newer adb we can use it
- Adb is named differently on OSes and may have additional files. The code is hairy to accommodate these differences
*/
private async spawnPrivateAdb(): Promise<string> {
const $fs: IFileSystem = this.$injector.resolve("$fs"),
$childProcess: IChildProcess = this.$injector.resolve("$childProcess"),
$hostInfo: IHostInfo = this.$injector.resolve("$hostInfo");
// prepare the directory to host our copy of adb
const defaultAdbDirPath = path.join(
__dirname,
"common",
"resources",
"platform-tools",
"android",
process.platform
);
const pathToPackageJson = path.join(__dirname, "..", "package.json");
const nsCliVersion = require(pathToPackageJson).version;
const tmpDir = path.join(os.tmpdir(), `nativescript-cli-${nsCliVersion}`);
$fs.createDirectory(tmpDir);
// copy the adb and associated files
const targetAdb = path.join(tmpDir, "adb");
// In case directory is missing or it's empty, copy the new adb
if (!$fs.exists(tmpDir) || !$fs.readDirectory(tmpDir).length) {
shelljs.cp(path.join(defaultAdbDirPath, "*"), tmpDir); // deliberately ignore copy errors
// adb loses its executable bit when packed inside electron asar file. Manually fix the issue
if (!$hostInfo.isWindows) {
shelljs.chmod("+x", targetAdb);
}
}
// let adb start its global server
await $childProcess.spawnFromEvent(targetAdb, ["start-server"], "exit");
return targetAdb;
}
}
injector.register("staticConfig", StaticConfig);