2019-04-07 14:50:36 +02:00
|
|
|
/**
|
|
|
|
* チャートエンジン
|
|
|
|
*
|
|
|
|
* Tests located in test/chart
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as moment from 'moment';
|
|
|
|
import * as nestedProperty from 'nested-property';
|
|
|
|
import autobind from 'autobind-decorator';
|
|
|
|
import Logger from '../logger';
|
2019-04-23 15:35:26 +02:00
|
|
|
import { Schema, bool, types } from '../../misc/schema';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { EntitySchema, getRepository, Repository, LessThan, MoreThanOrEqual } from 'typeorm';
|
|
|
|
import { isDuplicateKeyValueError } from '../../misc/is-duplicate-key-value-error';
|
|
|
|
|
|
|
|
const logger = new Logger('chart', 'white', process.env.NODE_ENV !== 'test');
|
|
|
|
|
|
|
|
const utc = moment.utc;
|
|
|
|
|
|
|
|
export type Obj = { [key: string]: any };
|
|
|
|
|
|
|
|
export type DeepPartial<T> = {
|
|
|
|
[P in keyof T]?: DeepPartial<T[P]>;
|
|
|
|
};
|
|
|
|
|
|
|
|
type ArrayValue<T> = {
|
|
|
|
[P in keyof T]: T[P] extends number ? T[P][] : ArrayValue<T[P]>;
|
|
|
|
};
|
|
|
|
|
|
|
|
type Span = 'day' | 'hour';
|
|
|
|
|
|
|
|
type Log = {
|
|
|
|
id: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 集計のグループ
|
|
|
|
*/
|
|
|
|
group: string | null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 集計日時のUnixタイムスタンプ(秒)
|
|
|
|
*/
|
|
|
|
date: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 集計期間
|
|
|
|
*/
|
|
|
|
span: Span;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ユニークインクリメント用
|
|
|
|
*/
|
|
|
|
unique?: Record<string, any>;
|
|
|
|
};
|
|
|
|
|
|
|
|
const camelToSnake = (str: string) => {
|
|
|
|
return str.replace(/([A-Z])/g, s => '_' + s.charAt(0).toLowerCase());
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 様々なチャートの管理を司るクラス
|
|
|
|
*/
|
|
|
|
export default abstract class Chart<T extends Record<string, any>> {
|
|
|
|
private static readonly columnPrefix = '___';
|
|
|
|
private static readonly columnDot = '_';
|
|
|
|
|
|
|
|
private name: string;
|
|
|
|
public schema: Schema;
|
|
|
|
protected repository: Repository<Log>;
|
|
|
|
protected abstract genNewLog(latest: T): DeepPartial<T>;
|
|
|
|
protected abstract async fetchActual(group?: string): Promise<DeepPartial<T>>;
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
private static convertSchemaToFlatColumnDefinitions(schema: Schema) {
|
|
|
|
const columns = {} as any;
|
|
|
|
const flatColumns = (x: Obj, path?: string) => {
|
|
|
|
for (const [k, v] of Object.entries(x)) {
|
|
|
|
const p = path ? `${path}${this.columnDot}${k}` : k;
|
|
|
|
if (v.type === 'object') {
|
|
|
|
flatColumns(v.properties, p);
|
|
|
|
} else {
|
|
|
|
columns[this.columnPrefix + p] = {
|
2019-04-16 10:52:09 +02:00
|
|
|
type: 'bigint',
|
2019-04-07 14:50:36 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-04-12 18:43:22 +02:00
|
|
|
flatColumns(schema.properties!);
|
2019-04-07 14:50:36 +02:00
|
|
|
return columns;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
private static convertFlattenColumnsToObject(x: Record<string, number>) {
|
|
|
|
const obj = {} as any;
|
|
|
|
for (const k of Object.keys(x).filter(k => k.startsWith(Chart.columnPrefix))) {
|
|
|
|
// now k is ___x_y_z
|
|
|
|
const path = k.substr(Chart.columnPrefix.length).split(Chart.columnDot).join('.');
|
|
|
|
nestedProperty.set(obj, path, x[k]);
|
|
|
|
}
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
private static convertObjectToFlattenColumns(x: Record<string, any>) {
|
|
|
|
const columns = {} as Record<string, number>;
|
|
|
|
const flatten = (x: Obj, path?: string) => {
|
|
|
|
for (const [k, v] of Object.entries(x)) {
|
|
|
|
const p = path ? `${path}${this.columnDot}${k}` : k;
|
|
|
|
if (typeof v === 'object') {
|
|
|
|
flatten(v, p);
|
|
|
|
} else {
|
|
|
|
columns[this.columnPrefix + p] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
flatten(x);
|
|
|
|
return columns;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
private static convertQuery(x: Record<string, any>) {
|
|
|
|
const query: Record<string, Function> = {};
|
|
|
|
|
|
|
|
const columns = Chart.convertObjectToFlattenColumns(x);
|
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(columns)) {
|
|
|
|
if (v > 0) query[k] = () => `"${k}" + ${v}`;
|
|
|
|
if (v < 0) query[k] = () => `"${k}" - ${v}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return query;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
private static momentToTimestamp(x: moment.Moment): Log['date'] {
|
|
|
|
return x.unix();
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public static schemaToEntity(name: string, schema: Schema): EntitySchema {
|
|
|
|
return new EntitySchema({
|
|
|
|
name: `__chart__${camelToSnake(name)}`,
|
|
|
|
columns: {
|
|
|
|
id: {
|
|
|
|
type: 'integer',
|
|
|
|
primary: true,
|
|
|
|
generated: true
|
|
|
|
},
|
|
|
|
date: {
|
|
|
|
type: 'integer',
|
|
|
|
},
|
|
|
|
group: {
|
|
|
|
type: 'varchar',
|
|
|
|
length: 128,
|
|
|
|
nullable: true
|
|
|
|
},
|
|
|
|
span: {
|
|
|
|
type: 'enum',
|
|
|
|
enum: ['hour', 'day']
|
|
|
|
},
|
|
|
|
unique: {
|
|
|
|
type: 'jsonb',
|
|
|
|
default: {}
|
|
|
|
},
|
|
|
|
...Chart.convertSchemaToFlatColumnDefinitions(schema)
|
|
|
|
},
|
2019-06-18 10:10:28 +02:00
|
|
|
indices: [{
|
|
|
|
columns: ['date']
|
|
|
|
}, {
|
|
|
|
columns: ['span']
|
|
|
|
}, {
|
|
|
|
columns: ['group']
|
|
|
|
}, {
|
|
|
|
columns: ['span', 'date']
|
|
|
|
}, {
|
|
|
|
columns: ['span', 'date', 'group']
|
|
|
|
}]
|
2019-04-07 14:50:36 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(name: string, schema: Schema, grouped = false) {
|
|
|
|
this.name = name;
|
|
|
|
this.schema = schema;
|
|
|
|
const entity = Chart.schemaToEntity(name, schema);
|
|
|
|
|
|
|
|
const keys = ['span', 'date'];
|
|
|
|
if (grouped) keys.push('group');
|
|
|
|
|
|
|
|
entity.options.uniques = [{
|
|
|
|
columns: keys
|
|
|
|
}];
|
|
|
|
|
|
|
|
this.repository = getRepository<Log>(entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-04-12 18:43:22 +02:00
|
|
|
private getNewLog(latest: T | null): T {
|
2019-04-07 14:50:36 +02:00
|
|
|
const log = latest ? this.genNewLog(latest) : {};
|
|
|
|
const flatColumns = (x: Obj, path?: string) => {
|
|
|
|
for (const [k, v] of Object.entries(x)) {
|
|
|
|
const p = path ? `${path}.${k}` : k;
|
|
|
|
if (v.type === 'object') {
|
|
|
|
flatColumns(v.properties, p);
|
|
|
|
} else {
|
|
|
|
if (nestedProperty.get(log, p) == null) {
|
|
|
|
nestedProperty.set(log, p, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-04-12 18:43:22 +02:00
|
|
|
flatColumns(this.schema.properties!);
|
2019-04-07 14:50:36 +02:00
|
|
|
return log as T;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
private getCurrentDate(): [number, number, number, number] {
|
|
|
|
const now = moment().utc();
|
|
|
|
|
|
|
|
const y = now.year();
|
|
|
|
const m = now.month();
|
|
|
|
const d = now.date();
|
|
|
|
const h = now.hour();
|
|
|
|
|
|
|
|
return [y, m, d, h];
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-04-12 18:43:22 +02:00
|
|
|
private getLatestLog(span: Span, group: string | null = null): Promise<Log | null> {
|
2019-04-07 14:50:36 +02:00
|
|
|
return this.repository.findOne({
|
|
|
|
group: group,
|
|
|
|
span: span
|
|
|
|
}, {
|
|
|
|
order: {
|
|
|
|
date: -1
|
|
|
|
}
|
2019-04-12 18:43:22 +02:00
|
|
|
}).then(x => x || null);
|
2019-04-07 14:50:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-04-12 18:43:22 +02:00
|
|
|
private async getCurrentLog(span: Span, group: string | null = null): Promise<Log> {
|
2019-04-07 14:50:36 +02:00
|
|
|
const [y, m, d, h] = this.getCurrentDate();
|
|
|
|
|
|
|
|
const current =
|
|
|
|
span == 'day' ? utc([y, m, d]) :
|
|
|
|
span == 'hour' ? utc([y, m, d, h]) :
|
2019-04-12 18:43:22 +02:00
|
|
|
null as never;
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
// 現在(今日または今のHour)のログ
|
|
|
|
const currentLog = await this.repository.findOne({
|
|
|
|
span: span,
|
|
|
|
date: Chart.momentToTimestamp(current),
|
|
|
|
...(group ? { group: group } : {})
|
|
|
|
});
|
|
|
|
|
|
|
|
// ログがあればそれを返して終了
|
|
|
|
if (currentLog != null) {
|
|
|
|
return currentLog;
|
|
|
|
}
|
|
|
|
|
|
|
|
let log: Log;
|
|
|
|
let data: T;
|
|
|
|
|
|
|
|
// 集計期間が変わってから、初めてのチャート更新なら
|
|
|
|
// 最も最近のログを持ってくる
|
|
|
|
// * 例えば集計期間が「日」である場合で考えると、
|
|
|
|
// * 昨日何もチャートを更新するような出来事がなかった場合は、
|
|
|
|
// * ログがそもそも作られずドキュメントが存在しないということがあり得るため、
|
|
|
|
// * 「昨日の」と決め打ちせずに「もっとも最近の」とします
|
|
|
|
const latest = await this.getLatestLog(span, group);
|
|
|
|
|
|
|
|
if (latest != null) {
|
|
|
|
const obj = Chart.convertFlattenColumnsToObject(
|
|
|
|
latest as Record<string, any>);
|
|
|
|
|
|
|
|
// 空ログデータを作成
|
|
|
|
data = await this.getNewLog(obj);
|
|
|
|
} else {
|
|
|
|
// ログが存在しなかったら
|
|
|
|
// (Misskeyインスタンスを建てて初めてのチャート更新時)
|
|
|
|
|
|
|
|
// 初期ログデータを作成
|
|
|
|
data = await this.getNewLog(null);
|
|
|
|
|
|
|
|
logger.info(`${this.name}: Initial commit created`);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
// 新規ログ挿入
|
|
|
|
log = await this.repository.save({
|
|
|
|
group: group,
|
|
|
|
span: span,
|
|
|
|
date: Chart.momentToTimestamp(current),
|
|
|
|
...Chart.convertObjectToFlattenColumns(data)
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
// duplicate key error
|
|
|
|
// 並列動作している他のチャートエンジンプロセスと処理が重なる場合がある
|
|
|
|
// その場合は再度最も新しいログを持ってくる
|
|
|
|
if (isDuplicateKeyValueError(e)) {
|
2019-04-12 18:43:22 +02:00
|
|
|
log = await this.getLatestLog(span, group) as Log;
|
2019-04-07 14:50:36 +02:00
|
|
|
} else {
|
|
|
|
logger.error(e);
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return log;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-04-12 18:43:22 +02:00
|
|
|
protected commit(query: Record<string, Function>, group: string | null = null, uniqueKey?: string, uniqueValue?: string): Promise<any> {
|
2019-04-07 14:50:36 +02:00
|
|
|
const update = async (log: Log) => {
|
|
|
|
// ユニークインクリメントの場合、指定のキーに指定の値が既に存在していたら弾く
|
|
|
|
if (
|
2019-04-12 18:43:22 +02:00
|
|
|
uniqueKey && log.unique &&
|
2019-04-07 14:50:36 +02:00
|
|
|
log.unique[uniqueKey] &&
|
|
|
|
log.unique[uniqueKey].includes(uniqueValue)
|
|
|
|
) return;
|
|
|
|
|
|
|
|
// ユニークインクリメントの指定のキーに値を追加
|
2019-04-12 18:43:22 +02:00
|
|
|
if (uniqueKey && log.unique) {
|
2019-04-07 14:50:36 +02:00
|
|
|
if (log.unique[uniqueKey]) {
|
|
|
|
const sql = `jsonb_set("unique", '{${uniqueKey}}', ("unique"->>'${uniqueKey}')::jsonb || '["${uniqueValue}"]'::jsonb)`;
|
|
|
|
query['unique'] = () => sql;
|
|
|
|
} else {
|
|
|
|
const sql = `jsonb_set("unique", '{${uniqueKey}}', '["${uniqueValue}"]')`;
|
|
|
|
query['unique'] = () => sql;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ログ更新
|
|
|
|
await this.repository.createQueryBuilder()
|
|
|
|
.update()
|
|
|
|
.set(query)
|
|
|
|
.where('id = :id', { id: log.id })
|
|
|
|
.execute();
|
|
|
|
};
|
|
|
|
|
|
|
|
return Promise.all([
|
|
|
|
this.getCurrentLog('day', group).then(log => update(log)),
|
|
|
|
this.getCurrentLog('hour', group).then(log => update(log)),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-04-12 18:43:22 +02:00
|
|
|
protected async inc(inc: DeepPartial<T>, group: string | null = null): Promise<void> {
|
2019-04-07 14:50:36 +02:00
|
|
|
await this.commit(Chart.convertQuery(inc as any), group);
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-04-12 18:43:22 +02:00
|
|
|
protected async incIfUnique(inc: DeepPartial<T>, key: string, value: string, group: string | null = null): Promise<void> {
|
2019-04-07 14:50:36 +02:00
|
|
|
await this.commit(Chart.convertQuery(inc as any), group, key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-04-12 18:43:22 +02:00
|
|
|
public async getChart(span: Span, range: number, group: string | null = null): Promise<ArrayValue<T>> {
|
2019-04-07 14:50:36 +02:00
|
|
|
const [y, m, d, h] = this.getCurrentDate();
|
|
|
|
|
|
|
|
const gt =
|
|
|
|
span == 'day' ? utc([y, m, d]).subtract(range, 'days') :
|
|
|
|
span == 'hour' ? utc([y, m, d, h]).subtract(range, 'hours') :
|
2019-04-12 18:43:22 +02:00
|
|
|
null as never;
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
// ログ取得
|
|
|
|
let logs = await this.repository.find({
|
|
|
|
where: {
|
|
|
|
group: group,
|
|
|
|
span: span,
|
|
|
|
date: MoreThanOrEqual(Chart.momentToTimestamp(gt))
|
|
|
|
},
|
|
|
|
order: {
|
|
|
|
date: -1
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// 要求された範囲にログがひとつもなかったら
|
|
|
|
if (logs.length === 0) {
|
|
|
|
// もっとも新しいログを持ってくる
|
|
|
|
// (すくなくともひとつログが無いと隙間埋めできないため)
|
|
|
|
const recentLog = await this.repository.findOne({
|
|
|
|
group: group,
|
|
|
|
span: span
|
|
|
|
}, {
|
|
|
|
order: {
|
|
|
|
date: -1
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (recentLog) {
|
|
|
|
logs = [recentLog];
|
|
|
|
}
|
|
|
|
|
|
|
|
// 要求された範囲の最も古い箇所に位置するログが存在しなかったら
|
|
|
|
} else if (!utc(logs[logs.length - 1].date * 1000).isSame(gt)) {
|
|
|
|
// 要求された範囲の最も古い箇所時点での最も新しいログを持ってきて末尾に追加する
|
|
|
|
// (隙間埋めできないため)
|
|
|
|
const outdatedLog = await this.repository.findOne({
|
|
|
|
group: group,
|
|
|
|
span: span,
|
|
|
|
date: LessThan(Chart.momentToTimestamp(gt))
|
|
|
|
}, {
|
|
|
|
order: {
|
|
|
|
date: -1
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (outdatedLog) {
|
|
|
|
logs.push(outdatedLog);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const chart: T[] = [];
|
|
|
|
|
|
|
|
// 整形
|
|
|
|
for (let i = (range - 1); i >= 0; i--) {
|
|
|
|
const current =
|
|
|
|
span == 'day' ? utc([y, m, d]).subtract(i, 'days') :
|
|
|
|
span == 'hour' ? utc([y, m, d, h]).subtract(i, 'hours') :
|
2019-04-12 18:43:22 +02:00
|
|
|
null as never;
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
const log = logs.find(l => utc(l.date * 1000).isSame(current));
|
|
|
|
|
|
|
|
if (log) {
|
|
|
|
const data = Chart.convertFlattenColumnsToObject(log as Record<string, any>);
|
|
|
|
chart.unshift(data);
|
|
|
|
} else {
|
|
|
|
// 隙間埋め
|
|
|
|
const latest = logs.find(l => utc(l.date * 1000).isBefore(current));
|
|
|
|
const data = latest ? Chart.convertFlattenColumnsToObject(latest as Record<string, any>) : null;
|
|
|
|
chart.unshift(this.getNewLog(data));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const res: ArrayValue<T> = {} as any;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [{ foo: 1, bar: 5 }, { foo: 2, bar: 6 }, { foo: 3, bar: 7 }]
|
|
|
|
* を
|
|
|
|
* { foo: [1, 2, 3], bar: [5, 6, 7] }
|
|
|
|
* にする
|
|
|
|
*/
|
|
|
|
const dive = (x: Obj, path?: string) => {
|
|
|
|
for (const [k, v] of Object.entries(x)) {
|
|
|
|
const p = path ? `${path}.${k}` : k;
|
|
|
|
if (typeof v == 'object') {
|
|
|
|
dive(v, p);
|
|
|
|
} else {
|
|
|
|
nestedProperty.set(res, p, chart.map(s => nestedProperty.get(s, p)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
dive(chart[0]);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function convertLog(logSchema: Schema): Schema {
|
|
|
|
const v: Schema = JSON.parse(JSON.stringify(logSchema)); // copy
|
|
|
|
if (v.type === 'number') {
|
|
|
|
v.type = 'array';
|
|
|
|
v.items = {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.number,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-04-07 14:50:36 +02:00
|
|
|
};
|
|
|
|
} else if (v.type === 'object') {
|
2019-04-12 18:43:22 +02:00
|
|
|
for (const k of Object.keys(v.properties!)) {
|
|
|
|
v.properties![k] = convertLog(v.properties![k]);
|
2019-04-07 14:50:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|