Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support windows platform #11

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 37 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@
"execa": "^5.1.1",
"https-proxy-agent": "^7.0.4",
"node-fetch": "^2.7.0",
"tar-fs": "^3.0.5"
"tar-fs": "^3.0.5",
"yauzl": "^3.1.2"
},
"devDependencies": {
"@types/yauzl": "^2.10.3",
"@types/debug": "^4.1.12",
"@types/gunzip-maybe": "^1.4.2",
"@types/jest": "^29.5.11",
Expand Down
124 changes: 99 additions & 25 deletions src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as fs from 'fs';
import { access, constants } from 'fs';
import { constants } from 'fs';
import { promisify } from 'util';
import { debug } from './debug';
import { Artifacts, EngineType } from './constants';
Expand All @@ -10,6 +10,7 @@ import * as os from 'os';
import * as zlib from 'zlib';
import { extract } from 'tar-fs';
import { pipeline } from 'node:stream';
import * as yauzl from 'yauzl';

export const waitForLocalhost = async (engineClient: EngineClient, retries = 30) => {
await new Promise((resolve) => setTimeout(() => resolve(0), 2000));
Expand All @@ -24,11 +25,9 @@ export const waitForLocalhost = async (engineClient: EngineClient, retries = 30)
}
};

export const isFileExists = async (path: string): Promise<boolean> => {
const fsAccessPromisified = promisify(access);

export const isFileExists = (path: string): boolean => {
try {
await fsAccessPromisified(path, constants.F_OK);
fs.accessSync(path, constants.F_OK);
return true;
} catch (e) {
return false;
Expand All @@ -42,18 +41,45 @@ const platform = () => {
return { sysName: sysName.toLowerCase(), arch: arch.toLowerCase() };
};

const tryRecursiveDir = (filepath: string) => {
if (!isFileExists(filepath)) {
fs.mkdirSync(filepath, { recursive: true, mode: 0o775 });
}
};

const pipelineAsync = promisify(pipeline);
const isZipFile = (filePath: string): boolean => {
const buffer = Buffer.alloc(2);
try {
fs.openSync(filePath, 'r');
fs.readSync(fs.openSync(filePath, 'r'), buffer, 0, 2, 0);
return buffer.toString('hex') === '504b';
} catch (error) {
debug(`Error checking file signature: ${error}`);
return false;
}
};

const unGzip = async (readPath: string, writePath: string) => {
// Pipe the response body to the decompression stream and then to the extract function
await pipelineAsync(
fs.createReadStream(readPath),
// decompressStream,
zlib.createGunzip(),
extract(writePath, { dmode: 0o775, fmode: 0o775 }),
);
};

export const download = async (url: string, dir: string, engine: EngineType, version: string) => {
const binaryPath = `${dir}/${engine}-${version}`;
const writePath = engine === EngineType.ZINCSEARCH ? `${binaryPath}` : `${dir}`;
debug(`checking if binary exists: ${binaryPath}`);
if (await isFileExists(`${binaryPath}`)) {
if (isFileExists(`${binaryPath}`)) {
debug(`binary already downloaded`);

return binaryPath;
} else {
fs.mkdirSync(dir, { recursive: true, mode: 0o775 });
tryRecursiveDir(dir);
}

debug(`downloading binary, url: ${url}, path: ${binaryPath}`);
Expand All @@ -62,36 +88,38 @@ export const download = async (url: string, dir: string, engine: EngineType, ver
: undefined;
try {
const res = await fetch(url, { agent: proxyAgent });

if (!res.ok) throw new Error(await res.text());
const contentType = res.headers.get('content-type') || '';
debug(`content-type: ${contentType}`);
let decompressStream;
if (
['application/gzip', 'application/x-gzip', 'application/octet-stream'].includes(contentType)
) {
decompressStream = zlib.createGunzip();
// Pipe the response body to the decompression stream and then to the extract function
await pipelineAsync(
res.body,
// decompressStream,
zlib.createGunzip(),
extract(writePath, { dmode: 0o775, fmode: 0o775 }),
);
} else if (contentType === 'application/zip') {
decompressStream = zlib.createUnzip();
await pipelineAsync(res.body, fs.createWriteStream(`${binaryPath}.zip`));
if (isZipFile(`${binaryPath}.zip`)) {
await downloadZip(writePath);
} else {
await unGzip(`${binaryPath}.zip`, writePath);
}
} else {
debug(`Unsupported content type: ${contentType}`);
process.exit(-1);
}

// Pipe the response body to the decompression stream and then to the extract function
await pipelineAsync(
res.body,
decompressStream,
extract(writePath, { dmode: 0o775, fmode: 0o775 }),
);
} catch (err) {
debug(`error when downloading and extracting the binary file: ${err}`);
process.exit(-1);
}

for (let i = 0; i < 5; i++) {
const binaryFile =
(await isFileExists(`${binaryPath}/bin/${engine}`)) ||
(await isFileExists(`${binaryPath}/${engine}`));
isFileExists(`${binaryPath}/bin/${engine}`) || isFileExists(`${binaryPath}/${engine}`);

await new Promise((resolve) => setTimeout(() => resolve(0), 2000));
if (binaryFile) {
Expand All @@ -106,23 +134,69 @@ export const download = async (url: string, dir: string, engine: EngineType, ver

export const getEngineBinaryURL = (engine: EngineType, version: string) => {
const { sysName, arch } = platform();
debug(`getEngineBinaryURL,sysName: ${sysName}, arch: ${arch}`);
const engines: {
[engineType: string]: () => string;
} = {
[EngineType.ELASTICSEARCH]: () => {
const archName = arch === 'arm64' ? 'aarch64' : 'x86_64';
const systemName = sysName === 'win32' ? 'windows' : sysName;
const zipFormat = systemName === 'windows' ? 'zip' : 'tar.gz';
// https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.13.1-windows-x86_64.zip
return parseInt(version.charAt(0)) >= 7
? `${Artifacts.ES}-${version}-${sysName}-${archName}.tar.gz`
: `${Artifacts.ES}-${version}.tar.gz`;
? `${Artifacts.ES}-${version}-${systemName}-${archName}.${zipFormat}`
: `${Artifacts.ES}-${version}.${zipFormat}`;
},
[EngineType.OPENSEARCH]: () => {
const systemName = sysName === 'win32' ? 'windows' : sysName;
const zipFormat = systemName === 'windows' ? 'zip' : 'tar.gz';
// https://artifacts.opensearch.org/releases/bundle/opensearch/2.13.0/opensearch-2.13.0-windows-x64.zip
return `${Artifacts.OS}/${version}/opensearch-${version}-${systemName}-${arch}.${zipFormat}`;
},
[EngineType.OPENSEARCH]: () =>
`${Artifacts.OS}/${version}/opensearch-${version}-linux-${arch}.tar.gz`,

[EngineType.ZINCSEARCH]: () => {
const archName = arch === 'x64' ? 'x86_64' : arch;
return `${Artifacts.ZINC}/v${version}/zincsearch_${version}_${sysName}_${archName}.tar.gz`;
const systemName = sysName === 'win32' ? 'windows' : sysName;
// https://github.com/zincsearch/zincsearch/releases/download/v0.4.10/zincsearch_0.4.10_windows_x86_64.tar.gz
return `${Artifacts.ZINC}/v${version}/zincsearch_${version}_${systemName}_${archName}.tar.gz`;
},
};

return engines[engine]();
};

const downloadZip = async (zipFilePath: string) => {
try {
return new Promise((resolve, reject) => {
yauzl.open(zipFilePath, { lazyEntries: true }, (err, zipfile) => {
if (err) {
debug(`error while unzip: ${zipFilePath}`);
return reject(err);
}
zipfile.readEntry();

zipfile.on('entry', async (entry) => {
debug(`found entry: filePath: ${entry.filePath} fileName: ${entry.fileName}`);
if (/\/$/.test(entry.fileName)) {
zipfile.readEntry();
} else {
zipfile.openReadStream(entry, (err, readStream) => {
if (err) {
debug(`error while unzip: ${zipFilePath}`);
return reject(err);
}
readStream.on('end', zipfile.readEntry);
tryRecursiveDir(zipFilePath);
readStream.pipe(fs.createWriteStream(`${zipFilePath}/${entry.fileName}`));
});
}
});
zipfile.on('close', resolve);
zipfile.on('error', reject);
});
});
} catch (err) {
debug(`error encountered while downloaidng & extract zip file: ${zipFilePath}, err: ${err}`);
throw err;
}
};
2 changes: 1 addition & 1 deletion tests/engine.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { engineMartix, indexes } from './utils/fixtures';
import { diagnose, fetchMapping } from './utils/common';

describe('integration test for elasticsearch and opensearch', () => {
it(`should start engine with default config`, async () => {
it.only(`should start engine with default config`, async () => {
await startEngine();

const inspect = await diagnose(EngineType.ELASTICSEARCH, 9200);
Expand Down
Loading