smartclickhouse/ts/smartclickhouse.classes.smartclickhouse.ts

50 lines
1.6 KiB
TypeScript
Raw Permalink Normal View History

2022-03-14 13:29:23 +00:00
import * as plugins from './smartclickhouse.plugins.js';
import { TimeDataTable } from './smartclickhouse.classes.timedatatable.js';
2022-03-02 15:35:20 +00:00
export interface IClickhouseConstructorOptions {
host: string;
database: string;
password?: string;
}
export class SmartClickHouseDb {
public options: IClickhouseConstructorOptions;
public clickhouseClient: plugins.clickhouse.ClickHouseClient;
constructor(optionsArg: IClickhouseConstructorOptions) {
this.options = optionsArg;
}
/**
* starts the connection to the Clickhouse db
*/
2022-03-07 14:49:47 +00:00
public async start(dropOld = false) {
console.log(`Connecting to default database first.`);
2022-03-02 15:35:20 +00:00
const defaultClient = new plugins.clickhouse.ClickHouseClient({
...this.options,
2022-03-07 14:49:47 +00:00
database: 'default',
2022-03-02 15:35:20 +00:00
});
console.log(`Create database ${this.options.database}, if it does not exist...`);
2022-03-07 14:49:47 +00:00
if (dropOld) {
await defaultClient.queryPromise(`DROP DATABASE IF EXISTS ${this.options.database}`);
}
2022-03-02 15:35:20 +00:00
await defaultClient.queryPromise(`CREATE DATABASE IF NOT EXISTS ${this.options.database}`);
2022-03-07 14:49:47 +00:00
console.log(`Ensured database. Now connecting to wanted database: ${this.options.database}`);
2022-03-02 15:35:20 +00:00
this.clickhouseClient = new plugins.clickhouse.ClickHouseClient({
...this.options,
});
console.log(`trying to ping database...`);
const result = await this.clickhouseClient.ping();
console.log(`Ping successfull?: ${result}`);
}
/**
* gets a table
*/
public async getTable(tableName: string) {
const newTable = TimeDataTable.getTable(this, tableName);
2022-03-07 14:49:47 +00:00
return newTable;
2022-03-02 15:35:20 +00:00
}
2022-03-07 14:49:47 +00:00
}