mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 17:27:54 +00:00
132 lines
3.4 KiB
TypeScript
132 lines
3.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as path from 'node:path';
|
|
import * as os from 'node:os';
|
|
import * as crypto from 'node:crypto';
|
|
import * as fs from 'node:fs';
|
|
|
|
export const QWEN_DIR = '.qwen';
|
|
export const GOOGLE_ACCOUNTS_FILENAME = 'google_accounts.json';
|
|
export const OAUTH_FILE = 'oauth_creds.json';
|
|
const TMP_DIR_NAME = 'tmp';
|
|
const BIN_DIR_NAME = 'bin';
|
|
const PROJECT_DIR_NAME = 'projects';
|
|
|
|
export class Storage {
|
|
private readonly targetDir: string;
|
|
|
|
constructor(targetDir: string) {
|
|
this.targetDir = targetDir;
|
|
}
|
|
|
|
static getGlobalQwenDir(): string {
|
|
const homeDir = os.homedir();
|
|
if (!homeDir) {
|
|
return path.join(os.tmpdir(), '.qwen');
|
|
}
|
|
return path.join(homeDir, QWEN_DIR);
|
|
}
|
|
|
|
static getMcpOAuthTokensPath(): string {
|
|
return path.join(Storage.getGlobalQwenDir(), 'mcp-oauth-tokens.json');
|
|
}
|
|
|
|
static getGlobalSettingsPath(): string {
|
|
return path.join(Storage.getGlobalQwenDir(), 'settings.json');
|
|
}
|
|
|
|
static getInstallationIdPath(): string {
|
|
return path.join(Storage.getGlobalQwenDir(), 'installation_id');
|
|
}
|
|
|
|
static getGoogleAccountsPath(): string {
|
|
return path.join(Storage.getGlobalQwenDir(), GOOGLE_ACCOUNTS_FILENAME);
|
|
}
|
|
|
|
static getUserCommandsDir(): string {
|
|
return path.join(Storage.getGlobalQwenDir(), 'commands');
|
|
}
|
|
|
|
static getGlobalMemoryFilePath(): string {
|
|
return path.join(Storage.getGlobalQwenDir(), 'memory.md');
|
|
}
|
|
|
|
static getGlobalTempDir(): string {
|
|
return path.join(Storage.getGlobalQwenDir(), TMP_DIR_NAME);
|
|
}
|
|
|
|
static getGlobalBinDir(): string {
|
|
return path.join(Storage.getGlobalQwenDir(), BIN_DIR_NAME);
|
|
}
|
|
|
|
getQwenDir(): string {
|
|
return path.join(this.targetDir, QWEN_DIR);
|
|
}
|
|
|
|
getProjectDir(): string {
|
|
const projectId = this.sanitizeCwd(this.getProjectRoot());
|
|
const projectsDir = path.join(Storage.getGlobalQwenDir(), PROJECT_DIR_NAME);
|
|
return path.join(projectsDir, projectId);
|
|
}
|
|
|
|
getProjectTempDir(): string {
|
|
const hash = this.getFilePathHash(this.getProjectRoot());
|
|
const tempDir = Storage.getGlobalTempDir();
|
|
return path.join(tempDir, hash);
|
|
}
|
|
|
|
ensureProjectTempDirExists(): void {
|
|
fs.mkdirSync(this.getProjectTempDir(), { recursive: true });
|
|
}
|
|
|
|
static getOAuthCredsPath(): string {
|
|
return path.join(Storage.getGlobalQwenDir(), OAUTH_FILE);
|
|
}
|
|
|
|
getProjectRoot(): string {
|
|
return this.targetDir;
|
|
}
|
|
|
|
private getFilePathHash(filePath: string): string {
|
|
return crypto.createHash('sha256').update(filePath).digest('hex');
|
|
}
|
|
|
|
getHistoryDir(): string {
|
|
const hash = this.getFilePathHash(this.getProjectRoot());
|
|
const historyDir = path.join(Storage.getGlobalQwenDir(), 'history');
|
|
return path.join(historyDir, hash);
|
|
}
|
|
|
|
getWorkspaceSettingsPath(): string {
|
|
return path.join(this.getQwenDir(), 'settings.json');
|
|
}
|
|
|
|
getProjectCommandsDir(): string {
|
|
return path.join(this.getQwenDir(), 'commands');
|
|
}
|
|
|
|
getProjectTempCheckpointsDir(): string {
|
|
return path.join(this.getProjectTempDir(), 'checkpoints');
|
|
}
|
|
|
|
getExtensionsDir(): string {
|
|
return path.join(this.getQwenDir(), 'extensions');
|
|
}
|
|
|
|
getExtensionsConfigPath(): string {
|
|
return path.join(this.getExtensionsDir(), 'qwen-extension.json');
|
|
}
|
|
|
|
getHistoryFilePath(): string {
|
|
return path.join(this.getProjectTempDir(), 'shell_history');
|
|
}
|
|
|
|
private sanitizeCwd(cwd: string): string {
|
|
return cwd.replace(/[^a-zA-Z0-9]/g, '-');
|
|
}
|
|
}
|