2019-04-07 12:50:36 +00:00
|
|
|
/**
|
|
|
|
* チャートエンジン
|
|
|
|
*
|
|
|
|
* Tests located in test/chart
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as nestedProperty from 'nested-property';
|
|
|
|
import autobind from 'autobind-decorator';
|
2021-08-19 12:55:45 +00:00
|
|
|
import Logger from '../logger';
|
2021-09-11 16:12:23 +00:00
|
|
|
import { SimpleSchema } from '@/misc/simple-schema';
|
2020-03-07 02:23:31 +00:00
|
|
|
import { EntitySchema, getRepository, Repository, LessThan, Between } from 'typeorm';
|
2021-08-19 13:04:15 +00:00
|
|
|
import { dateUTC, isTimeSame, isTimeBefore, subtractTime, addTime } from '@/prelude/time';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { getChartInsertLock } from '@/misc/app-lock';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
const logger = new Logger('chart', 'white', process.env.NODE_ENV !== 'test');
|
|
|
|
|
|
|
|
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 Log = {
|
|
|
|
id: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 集計のグループ
|
|
|
|
*/
|
2021-12-14 09:12:37 +00:00
|
|
|
group?: string | null;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 集計日時のUnixタイムスタンプ(秒)
|
|
|
|
*/
|
|
|
|
date: number;
|
|
|
|
};
|
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
const camelToSnake = (str: string): string => {
|
2019-04-07 12:50:36 +00:00
|
|
|
return str.replace(/([A-Z])/g, s => '_' + s.charAt(0).toLowerCase());
|
|
|
|
};
|
|
|
|
|
2021-03-18 02:17:05 +00:00
|
|
|
const removeDuplicates = (array: any[]) => Array.from(new Set(array));
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
/**
|
|
|
|
* 様々なチャートの管理を司るクラス
|
|
|
|
*/
|
2021-12-14 09:12:37 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-04-07 12:50:36 +00:00
|
|
|
export default abstract class Chart<T extends Record<string, any>> {
|
|
|
|
private static readonly columnPrefix = '___';
|
|
|
|
private static readonly columnDot = '_';
|
|
|
|
|
|
|
|
private name: string;
|
2021-06-30 15:50:19 +00:00
|
|
|
private buffer: {
|
2021-03-18 02:17:05 +00:00
|
|
|
diff: DeepPartial<T>;
|
|
|
|
group: string | null;
|
|
|
|
}[] = [];
|
2021-09-11 16:12:23 +00:00
|
|
|
public schema: SimpleSchema;
|
2021-12-14 09:12:37 +00:00
|
|
|
protected repositoryForHour: Repository<Log>;
|
|
|
|
protected repositoryForDay: Repository<Log>;
|
2021-03-18 02:17:05 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
protected abstract genNewLog(latest: T): DeepPartial<T>;
|
2021-03-18 02:17:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param logs 日時が新しい方が先頭
|
|
|
|
*/
|
|
|
|
protected abstract aggregate(logs: T[]): T;
|
|
|
|
|
|
|
|
protected abstract fetchActual(group: string | null): Promise<DeepPartial<T>>;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
@autobind
|
2021-09-11 16:12:23 +00:00
|
|
|
private static convertSchemaToFlatColumnDefinitions(schema: SimpleSchema) {
|
2021-11-12 01:52:10 +00:00
|
|
|
const columns = {} as Record<string, unknown>;
|
2019-04-07 12:50:36 +00:00
|
|
|
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);
|
2021-03-18 02:17:05 +00:00
|
|
|
} else if (v.type === 'number') {
|
2019-04-07 12:50:36 +00:00
|
|
|
columns[this.columnPrefix + p] = {
|
2019-04-16 08:52:09 +00:00
|
|
|
type: 'bigint',
|
2019-04-07 12:50:36 +00:00
|
|
|
};
|
2021-03-18 02:17:05 +00:00
|
|
|
} else if (v.type === 'array' && v.items.type === 'string') {
|
|
|
|
columns[this.columnPrefix + p] = {
|
|
|
|
type: 'varchar',
|
|
|
|
array: true,
|
|
|
|
};
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-04-12 16:43:22 +00:00
|
|
|
flatColumns(schema.properties!);
|
2019-04-07 12:50:36 +00:00
|
|
|
return columns;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2021-11-12 01:52:10 +00:00
|
|
|
private static convertFlattenColumnsToObject(x: Record<string, unknown>): Record<string, unknown> {
|
|
|
|
const obj = {} as Record<string, unknown>;
|
2019-04-07 12:50:36 +00:00
|
|
|
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
|
2021-11-12 01:52:10 +00:00
|
|
|
private static convertObjectToFlattenColumns(x: Record<string, unknown>) {
|
2021-03-18 02:17:05 +00:00
|
|
|
const columns = {} as Record<string, number | unknown[]>;
|
2019-04-07 12:50:36 +00:00
|
|
|
const flatten = (x: Obj, path?: string) => {
|
|
|
|
for (const [k, v] of Object.entries(x)) {
|
|
|
|
const p = path ? `${path}${this.columnDot}${k}` : k;
|
2021-03-18 02:17:05 +00:00
|
|
|
if (typeof v === 'object' && !Array.isArray(v)) {
|
2019-04-07 12:50:36 +00:00
|
|
|
flatten(v, p);
|
|
|
|
} else {
|
|
|
|
columns[this.columnPrefix + p] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
flatten(x);
|
|
|
|
return columns;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2021-11-12 01:52:10 +00:00
|
|
|
private static countUniqueFields(x: Record<string, unknown>) {
|
2021-03-18 02:17:05 +00:00
|
|
|
const exec = (x: Obj) => {
|
2021-11-12 01:52:10 +00:00
|
|
|
const res = {} as Record<string, unknown>;
|
2021-03-18 02:17:05 +00:00
|
|
|
for (const [k, v] of Object.entries(x)) {
|
|
|
|
if (typeof v === 'object' && !Array.isArray(v)) {
|
|
|
|
res[k] = exec(v);
|
|
|
|
} else if (Array.isArray(v)) {
|
|
|
|
res[k] = Array.from(new Set(v)).length;
|
|
|
|
} else {
|
|
|
|
res[k] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
return exec(x);
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-03-18 02:17:05 +00:00
|
|
|
@autobind
|
|
|
|
private static convertQuery(diff: Record<string, number | unknown[]>) {
|
2021-11-12 01:52:10 +00:00
|
|
|
const query: Record<string, () => string> = {};
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-03-18 02:17:05 +00:00
|
|
|
for (const [k, v] of Object.entries(diff)) {
|
|
|
|
if (typeof v === 'number') {
|
|
|
|
if (v > 0) query[k] = () => `"${k}" + ${v}`;
|
|
|
|
if (v < 0) query[k] = () => `"${k}" - ${Math.abs(v)}`;
|
|
|
|
} else if (Array.isArray(v)) {
|
|
|
|
// TODO: item が文字列以外の場合も対応
|
|
|
|
// TODO: item をSQLエスケープ
|
|
|
|
const items = v.map(item => `"${item}"`).join(',');
|
|
|
|
query[k] = () => `array_cat("${k}", '{${items}}'::varchar[])`;
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return query;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-07-24 16:36:48 +00:00
|
|
|
private static dateToTimestamp(x: Date): Log['date'] {
|
|
|
|
return Math.floor(x.getTime() / 1000);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2020-03-06 16:04:36 +00:00
|
|
|
@autobind
|
2020-03-07 02:23:31 +00:00
|
|
|
private static parseDate(date: Date): [number, number, number, number, number, number, number] {
|
2020-03-06 16:04:36 +00:00
|
|
|
const y = date.getUTCFullYear();
|
|
|
|
const m = date.getUTCMonth();
|
|
|
|
const d = date.getUTCDate();
|
|
|
|
const h = date.getUTCHours();
|
2020-03-07 02:23:31 +00:00
|
|
|
const _m = date.getUTCMinutes();
|
|
|
|
const _s = date.getUTCSeconds();
|
|
|
|
const _ms = date.getUTCMilliseconds();
|
2020-03-06 16:04:36 +00:00
|
|
|
|
2020-03-07 02:23:31 +00:00
|
|
|
return [y, m, d, h, _m, _s, _ms];
|
2020-03-06 16:04:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2020-03-07 02:23:31 +00:00
|
|
|
private static getCurrentDate() {
|
|
|
|
return Chart.parseDate(new Date());
|
2020-03-06 16:04:36 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
@autobind
|
2021-12-14 09:12:37 +00:00
|
|
|
public static schemaToEntity(name: string, schema: SimpleSchema, grouped = false): {
|
|
|
|
hour: EntitySchema,
|
|
|
|
day: EntitySchema,
|
|
|
|
} {
|
|
|
|
const createEntity = (span: 'hour' | 'day'): EntitySchema => new EntitySchema({
|
|
|
|
name:
|
|
|
|
span === 'hour' ? `__chart__${camelToSnake(name)}` :
|
|
|
|
span === 'day' ? `__chart_day__${camelToSnake(name)}` :
|
|
|
|
new Error('not happen') as never,
|
2019-04-07 12:50:36 +00:00
|
|
|
columns: {
|
|
|
|
id: {
|
|
|
|
type: 'integer',
|
|
|
|
primary: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
generated: true,
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
|
|
|
date: {
|
|
|
|
type: 'integer',
|
|
|
|
},
|
2021-12-14 09:12:37 +00:00
|
|
|
...(grouped ? {
|
|
|
|
group: {
|
|
|
|
type: 'varchar',
|
|
|
|
length: 128,
|
|
|
|
},
|
|
|
|
} : {}),
|
2021-12-09 14:58:30 +00:00
|
|
|
...Chart.convertSchemaToFlatColumnDefinitions(schema),
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
2019-06-18 08:10:28 +00:00
|
|
|
indices: [{
|
2021-12-14 09:12:37 +00:00
|
|
|
columns: grouped ? ['date', 'group'] : ['date'],
|
2021-08-15 08:13:23 +00:00
|
|
|
unique: true,
|
2021-12-09 14:58:30 +00:00
|
|
|
}],
|
2021-12-14 09:12:37 +00:00
|
|
|
uniques: [{
|
|
|
|
columns: grouped ? ['date', 'group'] : ['date'],
|
|
|
|
}],
|
|
|
|
relations: {
|
|
|
|
/* TODO
|
|
|
|
group: {
|
|
|
|
target: () => Foo,
|
|
|
|
type: 'many-to-one',
|
|
|
|
onDelete: 'CASCADE',
|
|
|
|
},
|
|
|
|
*/
|
|
|
|
},
|
2019-04-07 12:50:36 +00:00
|
|
|
});
|
2021-12-14 09:12:37 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
hour: createEntity('hour'),
|
|
|
|
day: createEntity('day'),
|
|
|
|
};
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2021-09-11 16:12:23 +00:00
|
|
|
constructor(name: string, schema: SimpleSchema, grouped = false) {
|
2019-04-07 12:50:36 +00:00
|
|
|
this.name = name;
|
|
|
|
this.schema = schema;
|
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
const { hour, day } = Chart.schemaToEntity(name, schema, grouped);
|
|
|
|
this.repositoryForHour = getRepository<Log>(hour);
|
|
|
|
this.repositoryForDay = getRepository<Log>(day);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2019-04-12 16:43:22 +00:00
|
|
|
private getNewLog(latest: T | null): T {
|
2019-04-07 12:50:36 +00: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) {
|
2021-03-18 02:17:05 +00:00
|
|
|
const emptyValue = v.type === 'number' ? 0 : [];
|
|
|
|
nestedProperty.set(log, p, emptyValue);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-04-12 16:43:22 +00:00
|
|
|
flatColumns(this.schema.properties!);
|
2019-04-07 12:50:36 +00:00
|
|
|
return log as T;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2021-12-14 09:12:37 +00:00
|
|
|
private getLatestLog(group: string | null, span: 'hour' | 'day'): Promise<Log | null> {
|
|
|
|
const repository =
|
|
|
|
span === 'hour' ? this.repositoryForHour :
|
|
|
|
span === 'day' ? this.repositoryForDay :
|
|
|
|
new Error('not happen') as never;
|
|
|
|
|
|
|
|
return repository.findOne(group ? {
|
2019-04-07 12:50:36 +00:00
|
|
|
group: group,
|
2021-12-14 09:12:37 +00:00
|
|
|
} : {}, {
|
2019-04-07 12:50:36 +00:00
|
|
|
order: {
|
2021-12-09 14:58:30 +00:00
|
|
|
date: -1,
|
|
|
|
},
|
2019-04-12 16:43:22 +00:00
|
|
|
}).then(x => x || null);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
/**
|
|
|
|
* 現在(=今のHour or Day)のログをデータベースから探して、あればそれを返し、なければ作成して返します。
|
|
|
|
*/
|
2019-04-07 12:50:36 +00:00
|
|
|
@autobind
|
2021-12-14 09:12:37 +00:00
|
|
|
private async claimCurrentLog(group: string | null, span: 'hour' | 'day'): Promise<Log> {
|
2020-03-06 16:04:36 +00:00
|
|
|
const [y, m, d, h] = Chart.getCurrentDate();
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
const current = dateUTC(
|
|
|
|
span === 'hour' ? [y, m, d, h] :
|
|
|
|
span === 'day' ? [y, m, d] :
|
|
|
|
new Error('not happen') as never);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
const repository =
|
|
|
|
span === 'hour' ? this.repositoryForHour :
|
|
|
|
span === 'day' ? this.repositoryForDay :
|
|
|
|
new Error('not happen') as never;
|
|
|
|
|
|
|
|
// 現在(=今のHour or Day)のログ
|
|
|
|
const currentLog = await repository.findOne({
|
2019-07-24 16:36:48 +00:00
|
|
|
date: Chart.dateToTimestamp(current),
|
2021-12-09 14:58:30 +00:00
|
|
|
...(group ? { group: group } : {}),
|
2019-04-07 12:50:36 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// ログがあればそれを返して終了
|
|
|
|
if (currentLog != null) {
|
|
|
|
return currentLog;
|
|
|
|
}
|
|
|
|
|
|
|
|
let log: Log;
|
|
|
|
let data: T;
|
|
|
|
|
|
|
|
// 集計期間が変わってから、初めてのチャート更新なら
|
|
|
|
// 最も最近のログを持ってくる
|
|
|
|
// * 例えば集計期間が「日」である場合で考えると、
|
|
|
|
// * 昨日何もチャートを更新するような出来事がなかった場合は、
|
|
|
|
// * ログがそもそも作られずドキュメントが存在しないということがあり得るため、
|
|
|
|
// * 「昨日の」と決め打ちせずに「もっとも最近の」とします
|
2021-12-14 09:12:37 +00:00
|
|
|
const latest = await this.getLatestLog(group, span);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
if (latest != null) {
|
2021-05-28 00:34:42 +00:00
|
|
|
const obj = Chart.convertFlattenColumnsToObject(latest) as T;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
// 空ログデータを作成
|
2020-01-10 07:04:25 +00:00
|
|
|
data = this.getNewLog(obj);
|
2019-04-07 12:50:36 +00:00
|
|
|
} else {
|
|
|
|
// ログが存在しなかったら
|
2020-02-17 17:27:18 +00:00
|
|
|
// (Misskeyインスタンスを建てて初めてのチャート更新時など)
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
// 初期ログデータを作成
|
2020-01-10 07:04:25 +00:00
|
|
|
data = this.getNewLog(null);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
logger.info(`${this.name + (group ? `:${group}` : '')}(${span}): Initial commit created`);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2020-03-06 13:33:54 +00:00
|
|
|
const date = Chart.dateToTimestamp(current);
|
2021-12-14 09:12:37 +00:00
|
|
|
const lockKey = group ? `${this.name}:${date}:${span}:${group}` : `${this.name}:${date}:${span}`;
|
2020-03-06 13:33:54 +00:00
|
|
|
|
|
|
|
const unlock = await getChartInsertLock(lockKey);
|
2019-04-07 12:50:36 +00:00
|
|
|
try {
|
2020-03-06 13:33:54 +00:00
|
|
|
// ロック内でもう1回チェックする
|
2021-12-14 09:12:37 +00:00
|
|
|
const currentLog = await repository.findOne({
|
2020-03-06 13:33:54 +00:00
|
|
|
date: date,
|
2021-12-09 14:58:30 +00:00
|
|
|
...(group ? { group: group } : {}),
|
2020-03-06 13:33:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// ログがあればそれを返して終了
|
|
|
|
if (currentLog != null) return currentLog;
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
// 新規ログ挿入
|
2021-12-14 09:12:37 +00:00
|
|
|
log = await repository.insert({
|
2020-03-06 13:33:54 +00:00
|
|
|
date: date,
|
2021-12-14 09:12:37 +00:00
|
|
|
...(group ? { group: group } : {}),
|
2021-12-09 14:58:30 +00:00
|
|
|
...Chart.convertObjectToFlattenColumns(data),
|
2021-12-14 09:12:37 +00:00
|
|
|
}).then(x => repository.findOneOrFail(x.identifiers[0]));
|
2020-01-10 06:55:40 +00:00
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
logger.info(`${this.name + (group ? `:${group}` : '')}(${span}): New commit created`);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2020-03-06 13:33:54 +00:00
|
|
|
return log;
|
|
|
|
} finally {
|
|
|
|
unlock();
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2021-03-18 02:17:05 +00:00
|
|
|
protected commit(diff: DeepPartial<T>, group: string | null = null): void {
|
2021-06-30 15:50:19 +00:00
|
|
|
this.buffer.push({
|
2021-03-18 02:17:05 +00:00
|
|
|
diff, group,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2021-11-12 01:52:10 +00:00
|
|
|
public async save(): Promise<void> {
|
2021-06-30 15:50:19 +00:00
|
|
|
if (this.buffer.length === 0) {
|
2021-03-18 02:17:05 +00:00
|
|
|
logger.info(`${this.name}: Write skipped`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-30 15:50:19 +00:00
|
|
|
// TODO: 前の時間のログがbufferにあった場合のハンドリング
|
2021-03-18 02:17:05 +00:00
|
|
|
// 例えば、save が20分ごとに行われるとして、前回行われたのは 01:50 だったとする。
|
2021-06-30 15:50:19 +00:00
|
|
|
// 次に save が行われるのは 02:10 ということになるが、もし 01:55 に新規ログが buffer に追加されたとすると、
|
2021-03-18 02:17:05 +00:00
|
|
|
// そのログは本来は 01:00~ のログとしてDBに保存されて欲しいのに、02:00~ のログ扱いになってしまう。
|
|
|
|
// これを回避するための実装は複雑になりそうなため、一旦保留。
|
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
const update = async (logHour: Log, logDay: Log): Promise<void> => {
|
2021-03-18 02:17:05 +00:00
|
|
|
const finalDiffs = {} as Record<string, number | unknown[]>;
|
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
for (const diff of this.buffer.filter(q => q.group == null || (q.group === logHour.group)).map(q => q.diff)) {
|
2021-03-18 02:17:05 +00:00
|
|
|
const columns = Chart.convertObjectToFlattenColumns(diff);
|
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(columns)) {
|
|
|
|
if (finalDiffs[k] == null) {
|
|
|
|
finalDiffs[k] = v;
|
|
|
|
} else {
|
|
|
|
if (typeof finalDiffs[k] === 'number') {
|
|
|
|
(finalDiffs[k] as number) += v as number;
|
|
|
|
} else {
|
|
|
|
(finalDiffs[k] as unknown[]) = (finalDiffs[k] as unknown[]).concat(v);
|
|
|
|
}
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 02:17:05 +00:00
|
|
|
const query = Chart.convertQuery(finalDiffs);
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
// ログ更新
|
2021-12-14 09:12:37 +00:00
|
|
|
await Promise.all([
|
|
|
|
this.repositoryForHour.createQueryBuilder()
|
|
|
|
.update()
|
|
|
|
.set(query)
|
|
|
|
.where('id = :id', { id: logHour.id })
|
|
|
|
.execute(),
|
|
|
|
this.repositoryForDay.createQueryBuilder()
|
|
|
|
.update()
|
|
|
|
.set(query)
|
|
|
|
.where('id = :id', { id: logDay.id })
|
|
|
|
.execute(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
logger.info(`${this.name + (logHour.group ? `:${logHour.group}` : '')}: Updated`);
|
2021-03-18 02:17:05 +00:00
|
|
|
|
2021-06-30 15:50:19 +00:00
|
|
|
// TODO: この一連の処理が始まった後に新たにbufferに入ったものは消さないようにする
|
2021-12-14 09:12:37 +00:00
|
|
|
this.buffer = this.buffer.filter(q => q.group != null && (q.group !== logHour.group));
|
2019-04-07 12:50:36 +00:00
|
|
|
};
|
|
|
|
|
2021-06-30 15:50:19 +00:00
|
|
|
const groups = removeDuplicates(this.buffer.map(log => log.group));
|
2021-03-18 02:17:05 +00:00
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
await Promise.all(
|
|
|
|
groups.map(group =>
|
|
|
|
Promise.all([
|
|
|
|
this.claimCurrentLog(group, 'hour'),
|
|
|
|
this.claimCurrentLog(group, 'day'),
|
|
|
|
]).then(([logHour, logDay]) =>
|
|
|
|
update(logHour, logDay))));
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2019-09-01 19:41:26 +00:00
|
|
|
@autobind
|
2021-12-14 09:12:37 +00:00
|
|
|
public async resync(group: string | null = null): Promise<void> {
|
2019-09-01 19:41:26 +00:00
|
|
|
const data = await this.fetchActual(group);
|
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
const update = async (logHour: Log, logDay: Log): Promise<void> => {
|
|
|
|
await Promise.all([
|
|
|
|
this.repositoryForHour.createQueryBuilder()
|
|
|
|
.update()
|
|
|
|
.set(Chart.convertObjectToFlattenColumns(data))
|
|
|
|
.where('id = :id', { id: logHour.id })
|
|
|
|
.execute(),
|
|
|
|
this.repositoryForDay.createQueryBuilder()
|
|
|
|
.update()
|
|
|
|
.set(Chart.convertObjectToFlattenColumns(data))
|
|
|
|
.where('id = :id', { id: logDay.id })
|
|
|
|
.execute(),
|
|
|
|
]);
|
2019-09-01 19:41:26 +00:00
|
|
|
};
|
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
return Promise.all([
|
|
|
|
this.claimCurrentLog(group, 'hour'),
|
|
|
|
this.claimCurrentLog(group, 'day'),
|
|
|
|
]).then(([logHour, logDay]) =>
|
|
|
|
update(logHour, logDay));
|
2019-09-01 19:41:26 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
@autobind
|
2019-04-12 16:43:22 +00:00
|
|
|
protected async inc(inc: DeepPartial<T>, group: string | null = null): Promise<void> {
|
2021-03-18 02:17:05 +00:00
|
|
|
await this.commit(inc, group);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2021-03-18 02:17:05 +00:00
|
|
|
public async getChart(span: 'hour' | 'day', amount: number, cursor: Date | null, group: string | null = null): Promise<ArrayValue<T>> {
|
|
|
|
const [y, m, d, h, _m, _s, _ms] = cursor ? Chart.parseDate(subtractTime(addTime(cursor, 1, span), 1)) : Chart.getCurrentDate();
|
|
|
|
const [y2, m2, d2, h2] = cursor ? Chart.parseDate(addTime(cursor, 1, span)) : [] as never;
|
2020-03-06 16:04:36 +00:00
|
|
|
|
2020-03-07 02:23:31 +00:00
|
|
|
const lt = dateUTC([y, m, d, h, _m, _s, _ms]);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
const gt =
|
2021-03-18 02:17:05 +00:00
|
|
|
span === 'day' ? subtractTime(cursor ? dateUTC([y2, m2, d2, 0]) : dateUTC([y, m, d, 0]), amount - 1, 'day') :
|
|
|
|
span === 'hour' ? subtractTime(cursor ? dateUTC([y2, m2, d2, h2]) : dateUTC([y, m, d, h]), amount - 1, 'hour') :
|
2021-12-14 09:12:37 +00:00
|
|
|
new Error('not happen') as never;
|
|
|
|
|
|
|
|
const repository =
|
|
|
|
span === 'hour' ? this.repositoryForHour :
|
|
|
|
span === 'day' ? this.repositoryForDay :
|
|
|
|
new Error('not happen') as never;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
// ログ取得
|
2021-12-14 09:12:37 +00:00
|
|
|
let logs = await repository.find({
|
2019-04-07 12:50:36 +00:00
|
|
|
where: {
|
2021-12-09 14:58:30 +00:00
|
|
|
date: Between(Chart.dateToTimestamp(gt), Chart.dateToTimestamp(lt)),
|
2021-12-14 09:12:37 +00:00
|
|
|
...(group ? { group: group } : {}),
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
|
|
|
order: {
|
2021-12-09 14:58:30 +00:00
|
|
|
date: -1,
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// 要求された範囲にログがひとつもなかったら
|
|
|
|
if (logs.length === 0) {
|
|
|
|
// もっとも新しいログを持ってくる
|
|
|
|
// (すくなくともひとつログが無いと隙間埋めできないため)
|
2021-12-14 09:12:37 +00:00
|
|
|
const recentLog = await repository.findOne(group ? {
|
2019-04-07 12:50:36 +00:00
|
|
|
group: group,
|
2021-12-14 09:12:37 +00:00
|
|
|
} : {}, {
|
2019-04-07 12:50:36 +00:00
|
|
|
order: {
|
2021-12-09 14:58:30 +00:00
|
|
|
date: -1,
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (recentLog) {
|
|
|
|
logs = [recentLog];
|
|
|
|
}
|
|
|
|
|
|
|
|
// 要求された範囲の最も古い箇所に位置するログが存在しなかったら
|
2019-07-24 16:36:48 +00:00
|
|
|
} else if (!isTimeSame(new Date(logs[logs.length - 1].date * 1000), gt)) {
|
2019-04-07 12:50:36 +00:00
|
|
|
// 要求された範囲の最も古い箇所時点での最も新しいログを持ってきて末尾に追加する
|
|
|
|
// (隙間埋めできないため)
|
2021-12-14 09:12:37 +00:00
|
|
|
const outdatedLog = await repository.findOne({
|
2021-12-09 14:58:30 +00:00
|
|
|
date: LessThan(Chart.dateToTimestamp(gt)),
|
2021-12-14 09:12:37 +00:00
|
|
|
...(group ? { group: group } : {}),
|
2019-04-07 12:50:36 +00:00
|
|
|
}, {
|
|
|
|
order: {
|
2021-12-09 14:58:30 +00:00
|
|
|
date: -1,
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (outdatedLog) {
|
|
|
|
logs.push(outdatedLog);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const chart: T[] = [];
|
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
for (let i = (amount - 1); i >= 0; i--) {
|
|
|
|
const current =
|
|
|
|
span === 'hour' ? subtractTime(dateUTC([y, m, d, h]), i, 'hour') :
|
|
|
|
span === 'day' ? subtractTime(dateUTC([y, m, d]), i, 'day') :
|
|
|
|
new Error('not happen') as never;
|
|
|
|
|
|
|
|
const log = logs.find(l => isTimeSame(new Date(l.date * 1000), current));
|
|
|
|
|
|
|
|
if (log) {
|
|
|
|
const data = Chart.convertFlattenColumnsToObject(log);
|
|
|
|
chart.unshift(Chart.countUniqueFields(data) as T);
|
|
|
|
} else {
|
|
|
|
// 隙間埋め
|
|
|
|
const latest = logs.find(l => isTimeBefore(new Date(l.date * 1000), current));
|
|
|
|
const data = latest ? Chart.convertFlattenColumnsToObject(latest) as T : null;
|
|
|
|
chart.unshift(Chart.countUniqueFields(this.getNewLog(data)) as T);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
const res = {} as Record<string, unknown>;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [{ foo: 1, bar: 5 }, { foo: 2, bar: 6 }, { foo: 3, bar: 7 }]
|
|
|
|
* を
|
|
|
|
* { foo: [1, 2, 3], bar: [5, 6, 7] }
|
|
|
|
* にする
|
|
|
|
*/
|
2021-12-14 09:12:37 +00:00
|
|
|
const compact = (x: Obj, path?: string): void => {
|
2019-04-07 12:50:36 +00:00
|
|
|
for (const [k, v] of Object.entries(x)) {
|
|
|
|
const p = path ? `${path}.${k}` : k;
|
2021-03-18 02:17:05 +00:00
|
|
|
if (typeof v === 'object' && !Array.isArray(v)) {
|
|
|
|
compact(v, p);
|
2019-04-07 12:50:36 +00:00
|
|
|
} else {
|
2021-03-18 02:17:05 +00:00
|
|
|
const values = chart.map(s => nestedProperty.get(s, p));
|
2019-07-05 13:32:15 +00:00
|
|
|
nestedProperty.set(res, p, values);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-03-18 02:17:05 +00:00
|
|
|
compact(chart[0]);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-12-14 09:12:37 +00:00
|
|
|
return res as ArrayValue<T>;
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-11 16:12:23 +00:00
|
|
|
export function convertLog(logSchema: SimpleSchema): SimpleSchema {
|
|
|
|
const v: SimpleSchema = JSON.parse(JSON.stringify(logSchema)); // copy
|
2019-04-07 12:50:36 +00:00
|
|
|
if (v.type === 'number') {
|
|
|
|
v.type = 'array';
|
|
|
|
v.items = {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-07 12:50:36 +00:00
|
|
|
};
|
|
|
|
} else if (v.type === 'object') {
|
2019-04-12 16:43:22 +00:00
|
|
|
for (const k of Object.keys(v.properties!)) {
|
|
|
|
v.properties![k] = convertLog(v.properties![k]);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|