-
-
Notifications
You must be signed in to change notification settings - Fork 401
/
Copy pathappdata.ts
412 lines (356 loc) · 11 KB
/
appdata.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
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import * as path from 'path';
import * as fs from 'fs';
import { clearSession, getUserDataDir } from '../utils';
import { IPythonEnvironment } from '../tokens';
import { SessionConfig } from './sessionconfig';
import { session as electronSession } from 'electron';
import { ISignal, Signal } from '@lumino/signaling';
const MAX_RECENT_SESSIONS = 20;
export interface INewsItem {
title: string;
link: string;
}
export interface IRecentSession {
workingDirectory?: string;
filesToOpen?: string[];
remoteURL?: string;
persistSessionData?: boolean;
partition?: string;
date?: Date;
}
export interface IRecentRemoteURL {
url: string;
date: Date;
}
let _appDataSingleton: ApplicationData;
export class ApplicationData {
constructor() {
if (_appDataSingleton) {
throw 'This is a singleton class. Use ApplicationData.getSingleton()';
}
this.read();
}
static getSingleton() {
if (!_appDataSingleton) {
_appDataSingleton = new ApplicationData();
}
return _appDataSingleton;
}
setActiveSessions(sessionConfigs: SessionConfig[]) {
this.sessions = sessionConfigs;
}
read() {
const appDataPath = this._getAppDataPath();
if (!fs.existsSync(appDataPath)) {
return;
}
const data = fs.readFileSync(appDataPath);
const jsonData = JSON.parse(data.toString());
if ('pythonPath' in jsonData) {
this.pythonPath = jsonData.pythonPath;
}
// TODO: remove after 1/1/2025
if ('condaRootPath' in jsonData) {
// copied to prevent circular import
const condaExePathForEnvPath = (envPath: string) => {
if (process.platform === 'win32') {
return path.join(envPath, 'Scripts', 'conda.exe');
} else {
return path.join(envPath, 'bin', 'conda');
}
};
this.condaPath = condaExePathForEnvPath(jsonData.condaRootPath);
}
if ('condaPath' in jsonData) {
this.condaPath = jsonData.condaPath;
}
if ('systemPythonPath' in jsonData) {
this.systemPythonPath = jsonData.systemPythonPath;
}
this.sessions = [];
if ('sessions' in jsonData && Array.isArray(jsonData.sessions)) {
for (const session of jsonData.sessions) {
const sessionConfig = new SessionConfig();
sessionConfig.deserialize(session);
this.sessions.push(sessionConfig);
}
}
this.recentSessions = [];
if (
'recentSessions' in jsonData &&
Array.isArray(jsonData.recentSessions)
) {
for (const recentSession of jsonData.recentSessions) {
this.recentSessions.push({
workingDirectory: recentSession.workingDirectory,
filesToOpen: recentSession.filesToOpen
? [...recentSession.filesToOpen]
: [],
remoteURL: recentSession.remoteURL,
persistSessionData: recentSession.persistSessionData,
partition: recentSession.partition,
date: new Date(recentSession.date)
});
}
}
this._sortRecentItems(this.recentSessions);
this.recentRemoteURLs = [];
if (
'recentRemoteURLs' in jsonData &&
Array.isArray(jsonData.recentRemoteURLs)
) {
for (const remoteURL of jsonData.recentRemoteURLs) {
this.recentRemoteURLs.push({
url: remoteURL.url,
date: new Date(remoteURL.date)
});
}
}
this._sortRecentItems(this.recentRemoteURLs);
this.discoveredPythonEnvs = [];
if (
'discoveredPythonEnvs' in jsonData &&
Array.isArray(jsonData.discoveredPythonEnvs)
) {
for (const pythonEnv of jsonData.discoveredPythonEnvs) {
this.discoveredPythonEnvs.push({
name: pythonEnv.name,
path: pythonEnv.path,
type: pythonEnv.type,
versions: { ...pythonEnv.versions },
defaultKernel: 'python3'
});
}
}
this.userSetPythonEnvs = [];
if (
'userSetPythonEnvs' in jsonData &&
Array.isArray(jsonData.userSetPythonEnvs)
) {
for (const pythonEnv of jsonData.userSetPythonEnvs) {
this.userSetPythonEnvs.push({
name: pythonEnv.name,
path: pythonEnv.path,
type: pythonEnv.type,
versions: { ...pythonEnv.versions },
defaultKernel: 'python3'
});
}
}
this.newsList = [];
if ('newsList' in jsonData && Array.isArray(jsonData.newsList)) {
for (const newsItem of jsonData.newsList) {
this.newsList.push({
title: newsItem.title,
link: newsItem.link
});
}
}
if ('updateBundledEnvOnRestart' in jsonData) {
this.updateBundledEnvOnRestart = jsonData.updateBundledEnvOnRestart;
}
}
save() {
const appDataPath = this._getAppDataPath();
const appDataJSON: { [key: string]: any } = {};
if (this.pythonPath !== '') {
appDataJSON.pythonPath = this.pythonPath;
}
if (this.condaPath !== '') {
appDataJSON.condaPath = this.condaPath;
}
if (this.systemPythonPath !== '') {
appDataJSON.systemPythonPath = this.systemPythonPath;
}
appDataJSON.sessions = [];
for (const sessionConfig of this.sessions) {
appDataJSON.sessions.push(sessionConfig.serialize());
}
appDataJSON.recentSessions = [];
for (const recentSession of this.recentSessions) {
appDataJSON.recentSessions.push({
workingDirectory: recentSession.workingDirectory,
filesToOpen:
recentSession.filesToOpen.length > 0
? [...recentSession.filesToOpen]
: undefined,
remoteURL: recentSession.remoteURL,
persistSessionData: recentSession.persistSessionData,
partition: recentSession.persistSessionData
? recentSession.partition
: undefined,
date: recentSession.date.toISOString()
});
}
appDataJSON.recentRemoteURLs = [];
for (const remoteUrl of this.recentRemoteURLs) {
appDataJSON.recentRemoteURLs.push({
url: remoteUrl.url,
date: remoteUrl.date.toISOString()
});
}
appDataJSON.discoveredPythonEnvs = [];
for (const pythonEnv of this.discoveredPythonEnvs) {
appDataJSON.discoveredPythonEnvs.push({
name: pythonEnv.name,
path: pythonEnv.path,
type: pythonEnv.type,
versions: { ...pythonEnv.versions }
});
}
appDataJSON.userSetPythonEnvs = [];
for (const pythonEnv of this.userSetPythonEnvs) {
appDataJSON.userSetPythonEnvs.push({
name: pythonEnv.name,
path: pythonEnv.path,
type: pythonEnv.type,
versions: { ...pythonEnv.versions }
});
}
appDataJSON.newsList = [];
for (const newsItem of this.newsList) {
appDataJSON.newsList.push({
title: newsItem.title,
link: newsItem.link
});
}
if (this.updateBundledEnvOnRestart) {
appDataJSON.updateBundledEnvOnRestart = true;
}
fs.writeFileSync(appDataPath, JSON.stringify(appDataJSON, null, 2));
}
addRemoteURLToRecents(url: string) {
const existing = this.recentRemoteURLs.find(value => {
return value.url === url;
});
const now = new Date();
if (existing) {
existing.date = now;
} else {
this.recentRemoteURLs.push({
url,
date: now
});
}
}
removeRemoteURLFromRecents(url: string) {
const index = this.recentRemoteURLs.findIndex(value => {
return value.url === url;
});
if (index !== -1) {
this.recentRemoteURLs.splice(index, 1);
}
}
async addSessionToRecents(session: IRecentSession) {
const filesToOpenCompare = (lhs: string[], rhs: string[]): boolean => {
return (
Array.isArray(lhs) &&
Array.isArray(rhs) &&
lhs.length === rhs.length &&
lhs.every((element, index) => {
return element === rhs[index];
})
);
};
const isRemote = session.remoteURL !== undefined;
const existing = this.recentSessions.find(item => {
return isRemote
? session.remoteURL === item.remoteURL
: session.workingDirectory === item.workingDirectory &&
filesToOpenCompare(session.filesToOpen, item.filesToOpen);
});
const now = new Date();
if (existing) {
existing.date = now;
// update persist info for remote
if (isRemote) {
existing.persistSessionData = session.persistSessionData;
if (
existing.partition &&
existing.partition !== session.partition &&
existing.partition.startsWith('persist:')
) {
try {
await clearSession(
electronSession.fromPartition(existing.partition)
);
} catch (error) {
//
}
}
existing.partition = session.partition;
}
} else {
let filesToOpen = [...(session.filesToOpen || [])];
this.recentSessions.push({
workingDirectory: session.workingDirectory,
filesToOpen: filesToOpen,
remoteURL: session.remoteURL,
persistSessionData: session.persistSessionData,
partition: session.partition,
date: now
});
}
this._sortRecentItems(this.recentSessions);
if (this.recentSessions.length > MAX_RECENT_SESSIONS) {
for (
let i = this.recentSessions.length - 1;
i >= MAX_RECENT_SESSIONS;
--i
) {
// make sure persisted sessions are cleared
await this.removeSessionFromRecents(i);
}
}
this._recentSessionsChanged.emit();
}
async removeSessionFromRecents(sessionIndex: number) {
if (sessionIndex >= 0 && sessionIndex < this.recentSessions.length) {
const session = this.recentSessions[sessionIndex];
if (session.partition && session.partition.startsWith('persist:')) {
try {
await clearSession(electronSession.fromPartition(session.partition));
} catch (error) {
//
}
}
this.recentSessions.splice(sessionIndex, 1);
}
this._recentSessionsChanged.emit();
}
get recentSessionsChanged(): ISignal<this, void> {
return this._recentSessionsChanged;
}
private _getAppDataPath(): string {
const userDataDir = getUserDataDir();
return path.join(userDataDir, 'app-data.json');
}
private _sortRecentItems(items: { date?: Date }[]) {
items.sort((lhs, rhs) => {
return rhs.date.valueOf() - lhs.date.valueOf();
});
}
newsList: INewsItem[] = [];
/**
* discovered pythonPath (for JupyterLab server)
*/
pythonPath: string = '';
/**
* discovered condaPath
*/
condaPath: string = '';
/**
* discovered Python path
*/
systemPythonPath: string = '';
sessions: SessionConfig[] = [];
recentRemoteURLs: IRecentRemoteURL[] = [];
recentSessions: IRecentSession[] = [];
discoveredPythonEnvs: IPythonEnvironment[] = [];
userSetPythonEnvs: IPythonEnvironment[] = [];
updateBundledEnvOnRestart: boolean = false;
private _recentSessionsChanged = new Signal<this, void>(this);
}
export const appData = ApplicationData.getSingleton();