@theia/remote 1.45.0 → 1.46.0-next.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -61
- package/lib/electron-browser/remote-electron-file-dialog-service.d.ts +13 -13
- package/lib/electron-browser/remote-electron-file-dialog-service.js +57 -57
- package/lib/electron-browser/remote-frontend-contribution.d.ts +25 -25
- package/lib/electron-browser/remote-frontend-contribution.js +164 -164
- package/lib/electron-browser/remote-frontend-module.d.ts +3 -3
- package/lib/electron-browser/remote-frontend-module.js +42 -42
- package/lib/electron-browser/remote-preferences.d.ts +10 -10
- package/lib/electron-browser/remote-preferences.js +48 -48
- package/lib/electron-browser/remote-registry-contribution.d.ts +18 -18
- package/lib/electron-browser/remote-registry-contribution.js +74 -74
- package/lib/electron-browser/remote-service.d.ts +5 -5
- package/lib/electron-browser/remote-service.js +37 -37
- package/lib/electron-browser/remote-ssh-contribution.d.ts +17 -17
- package/lib/electron-browser/remote-ssh-contribution.js +117 -117
- package/lib/electron-common/remote-ssh-connection-provider.d.ts +10 -10
- package/lib/electron-common/remote-ssh-connection-provider.js +20 -20
- package/lib/electron-common/remote-status-service.d.ts +14 -14
- package/lib/electron-common/remote-status-service.js +20 -20
- package/lib/electron-node/backend-remote-service-impl.d.ts +11 -11
- package/lib/electron-node/backend-remote-service-impl.js +50 -50
- package/lib/electron-node/remote-backend-module.d.ts +4 -4
- package/lib/electron-node/remote-backend-module.js +74 -74
- package/lib/electron-node/remote-connection-service.d.ts +14 -14
- package/lib/electron-node/remote-connection-service.js +65 -65
- package/lib/electron-node/remote-connection-socket-provider.d.ts +8 -8
- package/lib/electron-node/remote-connection-socket-provider.js +37 -37
- package/lib/electron-node/remote-proxy-server-provider.d.ts +5 -5
- package/lib/electron-node/remote-proxy-server-provider.js +43 -43
- package/lib/electron-node/remote-status-service.d.ts +6 -6
- package/lib/electron-node/remote-status-service.js +54 -54
- package/lib/electron-node/remote-types.d.ts +34 -34
- package/lib/electron-node/remote-types.js +17 -17
- package/lib/electron-node/setup/app-native-dependency-contribution.d.ts +7 -7
- package/lib/electron-node/setup/app-native-dependency-contribution.js +57 -57
- package/lib/electron-node/setup/main-copy-contribution.d.ts +4 -4
- package/lib/electron-node/setup/main-copy-contribution.js +37 -37
- package/lib/electron-node/setup/remote-copy-contribution.d.ts +28 -28
- package/lib/electron-node/setup/remote-copy-contribution.js +78 -78
- package/lib/electron-node/setup/remote-copy-service.d.ts +18 -18
- package/lib/electron-node/setup/remote-copy-service.js +126 -126
- package/lib/electron-node/setup/remote-native-dependency-contribution.d.ts +34 -34
- package/lib/electron-node/setup/remote-native-dependency-contribution.js +34 -34
- package/lib/electron-node/setup/remote-native-dependency-service.d.ts +23 -23
- package/lib/electron-node/setup/remote-native-dependency-service.js +118 -118
- package/lib/electron-node/setup/remote-node-setup-service.d.ts +22 -22
- package/lib/electron-node/setup/remote-node-setup-service.js +132 -132
- package/lib/electron-node/setup/remote-setup-script-service.d.ts +40 -40
- package/lib/electron-node/setup/remote-setup-script-service.js +132 -132
- package/lib/electron-node/setup/remote-setup-service.d.ts +28 -28
- package/lib/electron-node/setup/remote-setup-service.js +198 -198
- package/lib/electron-node/ssh/remote-ssh-connection-provider.d.ts +55 -55
- package/lib/electron-node/ssh/remote-ssh-connection-provider.d.ts.map +1 -1
- package/lib/electron-node/ssh/remote-ssh-connection-provider.js +344 -342
- package/lib/electron-node/ssh/remote-ssh-connection-provider.js.map +1 -1
- package/lib/electron-node/ssh/ssh-identity-file-collector.d.ts +12 -12
- package/lib/electron-node/ssh/ssh-identity-file-collector.js +131 -131
- package/lib/package.spec.js +25 -25
- package/package.json +6 -7
- package/src/electron-browser/remote-electron-file-dialog-service.ts +47 -47
- package/src/electron-browser/remote-frontend-contribution.ts +145 -145
- package/src/electron-browser/remote-frontend-module.ts +49 -49
- package/src/electron-browser/remote-preferences.ts +62 -62
- package/src/electron-browser/remote-registry-contribution.ts +70 -70
- package/src/electron-browser/remote-service.ts +31 -31
- package/src/electron-browser/remote-ssh-contribution.ts +102 -102
- package/src/electron-common/remote-ssh-connection-provider.ts +29 -29
- package/src/electron-common/remote-status-service.ts +35 -35
- package/src/electron-node/backend-remote-service-impl.ts +45 -45
- package/src/electron-node/remote-backend-module.ts +80 -80
- package/src/electron-node/remote-connection-service.ts +55 -55
- package/src/electron-node/remote-connection-socket-provider.ts +34 -34
- package/src/electron-node/remote-proxy-server-provider.ts +37 -37
- package/src/electron-node/remote-status-service.ts +41 -41
- package/src/electron-node/remote-types.ts +56 -56
- package/src/electron-node/setup/app-native-dependency-contribution.ts +48 -48
- package/src/electron-node/setup/main-copy-contribution.ts +28 -28
- package/src/electron-node/setup/remote-copy-contribution.ts +90 -90
- package/src/electron-node/setup/remote-copy-service.ts +114 -114
- package/src/electron-node/setup/remote-native-dependency-contribution.ts +63 -63
- package/src/electron-node/setup/remote-native-dependency-service.ts +111 -111
- package/src/electron-node/setup/remote-node-setup-service.ts +123 -123
- package/src/electron-node/setup/remote-setup-script-service.ts +146 -146
- package/src/electron-node/setup/remote-setup-service.ts +197 -197
- package/src/electron-node/ssh/remote-ssh-connection-provider.ts +358 -356
- package/src/electron-node/ssh/ssh-identity-file-collector.ts +137 -137
- package/src/package.spec.ts +29 -29
|
@@ -1,133 +1,133 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// *****************************************************************************
|
|
3
|
-
// Copyright (C) 2023 TypeFox and others.
|
|
4
|
-
//
|
|
5
|
-
// This program and the accompanying materials are made available under the
|
|
6
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
-
//
|
|
9
|
-
// This Source Code may also be made available under the following Secondary
|
|
10
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
-
// with the GNU Classpath Exception which is available at
|
|
13
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
-
//
|
|
15
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
-
// *****************************************************************************
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
-
};
|
|
23
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
-
};
|
|
26
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
-
exports.RemoteSetupScriptService = exports.RemotePosixScriptStrategy = exports.RemoteWindowsScriptStrategy = void 0;
|
|
28
|
-
const core_1 = require("@theia/core");
|
|
29
|
-
const inversify_1 = require("@theia/core/shared/inversify");
|
|
30
|
-
let RemoteWindowsScriptStrategy = class RemoteWindowsScriptStrategy {
|
|
31
|
-
home() {
|
|
32
|
-
return 'PowerShell -Command $HOME';
|
|
33
|
-
}
|
|
34
|
-
exec() {
|
|
35
|
-
return 'PowerShell -Command';
|
|
36
|
-
}
|
|
37
|
-
downloadFile(url, output) {
|
|
38
|
-
return `PowerShell -Command Invoke-WebRequest -Uri "${url}" -OutFile ${output}`;
|
|
39
|
-
}
|
|
40
|
-
unzip(file, directory) {
|
|
41
|
-
return `tar -xf "${file}" -C "${directory}"`;
|
|
42
|
-
}
|
|
43
|
-
mkdir(path) {
|
|
44
|
-
return `PowerShell -Command New-Item -Force -itemType Directory -Path "${path}"`;
|
|
45
|
-
}
|
|
46
|
-
joinPath(...segments) {
|
|
47
|
-
return segments.join('\\');
|
|
48
|
-
}
|
|
49
|
-
joinScript(...segments) {
|
|
50
|
-
return segments.join('\r\n');
|
|
51
|
-
}
|
|
52
|
-
};
|
|
53
|
-
RemoteWindowsScriptStrategy = __decorate([
|
|
54
|
-
(0, inversify_1.injectable)()
|
|
55
|
-
], RemoteWindowsScriptStrategy);
|
|
56
|
-
exports.RemoteWindowsScriptStrategy = RemoteWindowsScriptStrategy;
|
|
57
|
-
let RemotePosixScriptStrategy = class RemotePosixScriptStrategy {
|
|
58
|
-
home() {
|
|
59
|
-
return 'eval echo ~';
|
|
60
|
-
}
|
|
61
|
-
exec() {
|
|
62
|
-
return 'sh -c';
|
|
63
|
-
}
|
|
64
|
-
downloadFile(url, output) {
|
|
65
|
-
return `
|
|
66
|
-
if [ "$(command -v wget)" ]; then
|
|
67
|
-
echo "Downloading using wget"
|
|
68
|
-
wget -O "${output}" "${url}"
|
|
69
|
-
elif [ "$(command -v curl)" ]; then
|
|
70
|
-
echo "Downloading using curl"
|
|
71
|
-
curl "${url}" --output "${output}"
|
|
72
|
-
else
|
|
73
|
-
echo "Failed to find wget or curl."
|
|
74
|
-
exit 1
|
|
75
|
-
fi
|
|
76
|
-
`.trim();
|
|
77
|
-
}
|
|
78
|
-
unzip(file, directory) {
|
|
79
|
-
return `tar -xf "${file}" -C "${directory}"`;
|
|
80
|
-
}
|
|
81
|
-
mkdir(path) {
|
|
82
|
-
return `mkdir -p "${path}"`;
|
|
83
|
-
}
|
|
84
|
-
joinPath(...segments) {
|
|
85
|
-
return segments.join('/');
|
|
86
|
-
}
|
|
87
|
-
joinScript(...segments) {
|
|
88
|
-
return segments.join('\n');
|
|
89
|
-
}
|
|
90
|
-
};
|
|
91
|
-
RemotePosixScriptStrategy = __decorate([
|
|
92
|
-
(0, inversify_1.injectable)()
|
|
93
|
-
], RemotePosixScriptStrategy);
|
|
94
|
-
exports.RemotePosixScriptStrategy = RemotePosixScriptStrategy;
|
|
95
|
-
let RemoteSetupScriptService = class RemoteSetupScriptService {
|
|
96
|
-
getStrategy(platform) {
|
|
97
|
-
return platform.os === core_1.OS.Type.Windows ? this.windowsStrategy : this.posixStrategy;
|
|
98
|
-
}
|
|
99
|
-
home(platform) {
|
|
100
|
-
return this.getStrategy(platform).home();
|
|
101
|
-
}
|
|
102
|
-
exec(platform) {
|
|
103
|
-
return this.getStrategy(platform).exec();
|
|
104
|
-
}
|
|
105
|
-
downloadFile(platform, url, output) {
|
|
106
|
-
return this.getStrategy(platform).downloadFile(url, output);
|
|
107
|
-
}
|
|
108
|
-
unzip(platform, file, directory) {
|
|
109
|
-
return this.getStrategy(platform).unzip(file, directory);
|
|
110
|
-
}
|
|
111
|
-
mkdir(platform, path) {
|
|
112
|
-
return this.getStrategy(platform).mkdir(path);
|
|
113
|
-
}
|
|
114
|
-
joinPath(platform, ...segments) {
|
|
115
|
-
return this.getStrategy(platform).joinPath(...segments);
|
|
116
|
-
}
|
|
117
|
-
joinScript(platform, ...segments) {
|
|
118
|
-
return this.getStrategy(platform).joinScript(...segments);
|
|
119
|
-
}
|
|
120
|
-
};
|
|
121
|
-
__decorate([
|
|
122
|
-
(0, inversify_1.inject)(RemoteWindowsScriptStrategy),
|
|
123
|
-
__metadata("design:type", RemoteWindowsScriptStrategy)
|
|
124
|
-
], RemoteSetupScriptService.prototype, "windowsStrategy", void 0);
|
|
125
|
-
__decorate([
|
|
126
|
-
(0, inversify_1.inject)(RemotePosixScriptStrategy),
|
|
127
|
-
__metadata("design:type", RemotePosixScriptStrategy)
|
|
128
|
-
], RemoteSetupScriptService.prototype, "posixStrategy", void 0);
|
|
129
|
-
RemoteSetupScriptService = __decorate([
|
|
130
|
-
(0, inversify_1.injectable)()
|
|
131
|
-
], RemoteSetupScriptService);
|
|
132
|
-
exports.RemoteSetupScriptService = RemoteSetupScriptService;
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2023 TypeFox and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
20
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
21
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
22
|
+
};
|
|
23
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
24
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
25
|
+
};
|
|
26
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
+
exports.RemoteSetupScriptService = exports.RemotePosixScriptStrategy = exports.RemoteWindowsScriptStrategy = void 0;
|
|
28
|
+
const core_1 = require("@theia/core");
|
|
29
|
+
const inversify_1 = require("@theia/core/shared/inversify");
|
|
30
|
+
let RemoteWindowsScriptStrategy = class RemoteWindowsScriptStrategy {
|
|
31
|
+
home() {
|
|
32
|
+
return 'PowerShell -Command $HOME';
|
|
33
|
+
}
|
|
34
|
+
exec() {
|
|
35
|
+
return 'PowerShell -Command';
|
|
36
|
+
}
|
|
37
|
+
downloadFile(url, output) {
|
|
38
|
+
return `PowerShell -Command Invoke-WebRequest -Uri "${url}" -OutFile ${output}`;
|
|
39
|
+
}
|
|
40
|
+
unzip(file, directory) {
|
|
41
|
+
return `tar -xf "${file}" -C "${directory}"`;
|
|
42
|
+
}
|
|
43
|
+
mkdir(path) {
|
|
44
|
+
return `PowerShell -Command New-Item -Force -itemType Directory -Path "${path}"`;
|
|
45
|
+
}
|
|
46
|
+
joinPath(...segments) {
|
|
47
|
+
return segments.join('\\');
|
|
48
|
+
}
|
|
49
|
+
joinScript(...segments) {
|
|
50
|
+
return segments.join('\r\n');
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
RemoteWindowsScriptStrategy = __decorate([
|
|
54
|
+
(0, inversify_1.injectable)()
|
|
55
|
+
], RemoteWindowsScriptStrategy);
|
|
56
|
+
exports.RemoteWindowsScriptStrategy = RemoteWindowsScriptStrategy;
|
|
57
|
+
let RemotePosixScriptStrategy = class RemotePosixScriptStrategy {
|
|
58
|
+
home() {
|
|
59
|
+
return 'eval echo ~';
|
|
60
|
+
}
|
|
61
|
+
exec() {
|
|
62
|
+
return 'sh -c';
|
|
63
|
+
}
|
|
64
|
+
downloadFile(url, output) {
|
|
65
|
+
return `
|
|
66
|
+
if [ "$(command -v wget)" ]; then
|
|
67
|
+
echo "Downloading using wget"
|
|
68
|
+
wget -O "${output}" "${url}"
|
|
69
|
+
elif [ "$(command -v curl)" ]; then
|
|
70
|
+
echo "Downloading using curl"
|
|
71
|
+
curl "${url}" --output "${output}"
|
|
72
|
+
else
|
|
73
|
+
echo "Failed to find wget or curl."
|
|
74
|
+
exit 1
|
|
75
|
+
fi
|
|
76
|
+
`.trim();
|
|
77
|
+
}
|
|
78
|
+
unzip(file, directory) {
|
|
79
|
+
return `tar -xf "${file}" -C "${directory}"`;
|
|
80
|
+
}
|
|
81
|
+
mkdir(path) {
|
|
82
|
+
return `mkdir -p "${path}"`;
|
|
83
|
+
}
|
|
84
|
+
joinPath(...segments) {
|
|
85
|
+
return segments.join('/');
|
|
86
|
+
}
|
|
87
|
+
joinScript(...segments) {
|
|
88
|
+
return segments.join('\n');
|
|
89
|
+
}
|
|
90
|
+
};
|
|
91
|
+
RemotePosixScriptStrategy = __decorate([
|
|
92
|
+
(0, inversify_1.injectable)()
|
|
93
|
+
], RemotePosixScriptStrategy);
|
|
94
|
+
exports.RemotePosixScriptStrategy = RemotePosixScriptStrategy;
|
|
95
|
+
let RemoteSetupScriptService = class RemoteSetupScriptService {
|
|
96
|
+
getStrategy(platform) {
|
|
97
|
+
return platform.os === core_1.OS.Type.Windows ? this.windowsStrategy : this.posixStrategy;
|
|
98
|
+
}
|
|
99
|
+
home(platform) {
|
|
100
|
+
return this.getStrategy(platform).home();
|
|
101
|
+
}
|
|
102
|
+
exec(platform) {
|
|
103
|
+
return this.getStrategy(platform).exec();
|
|
104
|
+
}
|
|
105
|
+
downloadFile(platform, url, output) {
|
|
106
|
+
return this.getStrategy(platform).downloadFile(url, output);
|
|
107
|
+
}
|
|
108
|
+
unzip(platform, file, directory) {
|
|
109
|
+
return this.getStrategy(platform).unzip(file, directory);
|
|
110
|
+
}
|
|
111
|
+
mkdir(platform, path) {
|
|
112
|
+
return this.getStrategy(platform).mkdir(path);
|
|
113
|
+
}
|
|
114
|
+
joinPath(platform, ...segments) {
|
|
115
|
+
return this.getStrategy(platform).joinPath(...segments);
|
|
116
|
+
}
|
|
117
|
+
joinScript(platform, ...segments) {
|
|
118
|
+
return this.getStrategy(platform).joinScript(...segments);
|
|
119
|
+
}
|
|
120
|
+
};
|
|
121
|
+
__decorate([
|
|
122
|
+
(0, inversify_1.inject)(RemoteWindowsScriptStrategy),
|
|
123
|
+
__metadata("design:type", RemoteWindowsScriptStrategy)
|
|
124
|
+
], RemoteSetupScriptService.prototype, "windowsStrategy", void 0);
|
|
125
|
+
__decorate([
|
|
126
|
+
(0, inversify_1.inject)(RemotePosixScriptStrategy),
|
|
127
|
+
__metadata("design:type", RemotePosixScriptStrategy)
|
|
128
|
+
], RemoteSetupScriptService.prototype, "posixStrategy", void 0);
|
|
129
|
+
RemoteSetupScriptService = __decorate([
|
|
130
|
+
(0, inversify_1.injectable)()
|
|
131
|
+
], RemoteSetupScriptService);
|
|
132
|
+
exports.RemoteSetupScriptService = RemoteSetupScriptService;
|
|
133
133
|
//# sourceMappingURL=remote-setup-script-service.js.map
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { RemoteConnection, RemoteExecResult, RemotePlatform, RemoteStatusReport } from '../remote-types';
|
|
2
|
-
import { ApplicationPackage } from '@theia/core/shared/@theia/application-package';
|
|
3
|
-
import { RemoteCopyService } from './remote-copy-service';
|
|
4
|
-
import { RemoteNativeDependencyService } from './remote-native-dependency-service';
|
|
5
|
-
import { RemoteNodeSetupService } from './remote-node-setup-service';
|
|
6
|
-
import { RemoteSetupScriptService } from './remote-setup-script-service';
|
|
7
|
-
export interface RemoteSetupOptions {
|
|
8
|
-
connection: RemoteConnection;
|
|
9
|
-
report: RemoteStatusReport;
|
|
10
|
-
nodeDownloadTemplate?: string;
|
|
11
|
-
}
|
|
12
|
-
export declare class RemoteSetupService {
|
|
13
|
-
protected readonly copyService: RemoteCopyService;
|
|
14
|
-
protected readonly nativeDependencyService: RemoteNativeDependencyService;
|
|
15
|
-
protected readonly nodeSetupService: RemoteNodeSetupService;
|
|
16
|
-
protected readonly scriptService: RemoteSetupScriptService;
|
|
17
|
-
protected readonly applicationPackage: ApplicationPackage;
|
|
18
|
-
setup(options: RemoteSetupOptions): Promise<void>;
|
|
19
|
-
protected startApplication(connection: RemoteConnection, platform: RemotePlatform, remotePath: string, nodeDir: string): Promise<number>;
|
|
20
|
-
protected detectRemotePlatform(connection: RemoteConnection): Promise<RemotePlatform>;
|
|
21
|
-
protected getRemoteHomeDirectory(connection: RemoteConnection, platform: RemotePlatform): Promise<string>;
|
|
22
|
-
protected getRemoteAppName(): string;
|
|
23
|
-
protected cleanupDirectoryName(name: string): string;
|
|
24
|
-
protected mkdirRemote(connection: RemoteConnection, platform: RemotePlatform, remotePath: string): Promise<void>;
|
|
25
|
-
protected dirExistsRemote(connection: RemoteConnection, remotePath: string): Promise<boolean>;
|
|
26
|
-
protected unzipRemote(connection: RemoteConnection, platform: RemotePlatform, remoteFile: string, remoteDirectory: string): Promise<void>;
|
|
27
|
-
protected executeScriptRemote(connection: RemoteConnection, platform: RemotePlatform, script: string): Promise<RemoteExecResult>;
|
|
28
|
-
}
|
|
1
|
+
import { RemoteConnection, RemoteExecResult, RemotePlatform, RemoteStatusReport } from '../remote-types';
|
|
2
|
+
import { ApplicationPackage } from '@theia/core/shared/@theia/application-package';
|
|
3
|
+
import { RemoteCopyService } from './remote-copy-service';
|
|
4
|
+
import { RemoteNativeDependencyService } from './remote-native-dependency-service';
|
|
5
|
+
import { RemoteNodeSetupService } from './remote-node-setup-service';
|
|
6
|
+
import { RemoteSetupScriptService } from './remote-setup-script-service';
|
|
7
|
+
export interface RemoteSetupOptions {
|
|
8
|
+
connection: RemoteConnection;
|
|
9
|
+
report: RemoteStatusReport;
|
|
10
|
+
nodeDownloadTemplate?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare class RemoteSetupService {
|
|
13
|
+
protected readonly copyService: RemoteCopyService;
|
|
14
|
+
protected readonly nativeDependencyService: RemoteNativeDependencyService;
|
|
15
|
+
protected readonly nodeSetupService: RemoteNodeSetupService;
|
|
16
|
+
protected readonly scriptService: RemoteSetupScriptService;
|
|
17
|
+
protected readonly applicationPackage: ApplicationPackage;
|
|
18
|
+
setup(options: RemoteSetupOptions): Promise<void>;
|
|
19
|
+
protected startApplication(connection: RemoteConnection, platform: RemotePlatform, remotePath: string, nodeDir: string): Promise<number>;
|
|
20
|
+
protected detectRemotePlatform(connection: RemoteConnection): Promise<RemotePlatform>;
|
|
21
|
+
protected getRemoteHomeDirectory(connection: RemoteConnection, platform: RemotePlatform): Promise<string>;
|
|
22
|
+
protected getRemoteAppName(): string;
|
|
23
|
+
protected cleanupDirectoryName(name: string): string;
|
|
24
|
+
protected mkdirRemote(connection: RemoteConnection, platform: RemotePlatform, remotePath: string): Promise<void>;
|
|
25
|
+
protected dirExistsRemote(connection: RemoteConnection, remotePath: string): Promise<boolean>;
|
|
26
|
+
protected unzipRemote(connection: RemoteConnection, platform: RemotePlatform, remoteFile: string, remoteDirectory: string): Promise<void>;
|
|
27
|
+
protected executeScriptRemote(connection: RemoteConnection, platform: RemotePlatform, script: string): Promise<RemoteExecResult>;
|
|
28
|
+
}
|
|
29
29
|
//# sourceMappingURL=remote-setup-service.d.ts.map
|