ai-code-writer
Version:
An AI code writer application using OpenAI APIs for audio transcription and chat completion.
128 lines (127 loc) • 5.27 kB
JavaScript
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const fs = __importStar(require("fs"));
const path = __importStar(require("path"));
const ActionType_1 = __importDefault(require("../../Core/FileActions/ActionType"));
class FsDirectoryWatcher {
constructor(directory, includePatterns, excludeDirs, excludeFiles) {
this.directory = directory;
this.includePatterns = includePatterns;
this.excludeDirs = excludeDirs;
this.excludeFiles = excludeFiles;
this.watchers = [];
this.watching = true;
this.callback = () => {
};
}
startWatching() {
this.watchDirectory(this.directory);
}
stopWatching() {
this.watchers.forEach(watcher => watcher.close());
this.watchers = [];
}
pauseWatching() {
this.watching = false;
}
resumeWatching() {
this.watching = true;
}
onChange(callback) {
this.callback = callback;
}
isExcluded(filePath) {
return __awaiter(this, void 0, void 0, function* () {
for (const excludeDir of this.excludeDirs) {
if (filePath.includes(path.normalize(excludeDir) + path.sep))
return true;
}
for (const excludeFile of this.excludeFiles) {
if (this.matchPattern(filePath, excludeFile))
return true;
}
return false;
});
}
matchPattern(filePath, pattern) {
const regexPattern = pattern
.replace(/\./g, '\\.')
.replace(/\*/g, '.*')
.replace(/\?/g, '.');
const regex = new RegExp(`^${regexPattern}$`);
return regex.test(filePath);
}
isIncluded(filePath) {
return __awaiter(this, void 0, void 0, function* () {
if (yield this.isExcluded(filePath))
return false;
for (const pattern of this.includePatterns) {
if (this.matchPattern(path.basename(filePath), pattern))
return true;
}
return false;
});
}
watchDirectory(directory) {
const watcher = fs.watch(directory, { recursive: true }, (eventType, filename) => __awaiter(this, void 0, void 0, function* () {
if (!this.watching || !filename)
return;
const filePath = path.resolve(directory, filename);
const relativeFilePath = path.relative(process.cwd(), filePath);
if (!(yield this.isIncluded(filePath)))
return;
if (eventType === 'rename') {
fs.stat(filePath, (err, stats) => {
if (err) {
this.callback(ActionType_1.default.FILE_DELETE, relativeFilePath, '');
}
else if (stats.isFile()) {
const content = fs.readFileSync(filePath, 'utf8');
this.callback(ActionType_1.default.FILE_WRITE, relativeFilePath, content);
}
});
}
else if (eventType === 'change') {
const content = fs.readFileSync(filePath, 'utf8');
this.callback(ActionType_1.default.FILE_WRITE, relativeFilePath, content);
}
}));
this.watchers.push(watcher);
}
}
exports.default = FsDirectoryWatcher;