2021-02-12 17:34:05 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {LogItem} from "./LogItem.js";
|
2021-02-12 18:35:51 +05:30
|
|
|
import {LogLevel} from "./LogLevel.js";
|
2021-02-12 17:34:05 +05:30
|
|
|
|
|
|
|
export class BaseLogger {
|
2021-02-12 20:38:07 +05:30
|
|
|
constructor({platform, baseLogLevel, anonymize}) {
|
2021-02-12 17:34:05 +05:30
|
|
|
this._openItems = new Set();
|
|
|
|
this._platform = platform;
|
2021-02-12 20:38:07 +05:30
|
|
|
this._anonymize = anonymize;
|
2021-02-12 18:35:51 +05:30
|
|
|
this._baseLogLevel = baseLogLevel;
|
2021-02-12 17:34:05 +05:30
|
|
|
}
|
|
|
|
|
2021-02-12 23:06:21 +05:30
|
|
|
run(labelOrValues, callback, logLevel = this._baseLogLevel) {
|
2021-02-12 20:38:07 +05:30
|
|
|
const item = new LogItem(labelOrValues, logLevel, this._platform, this._anonymize);
|
2021-02-12 23:06:04 +05:30
|
|
|
this._openItems.add(item);
|
2021-02-12 17:34:05 +05:30
|
|
|
|
|
|
|
const finishItem = () => {
|
2021-02-12 18:35:51 +05:30
|
|
|
const serialized = item.serialize(this._baseLogLevel);
|
|
|
|
if (serialized) {
|
|
|
|
this._persistItem(serialized);
|
|
|
|
}
|
2021-02-12 23:06:04 +05:30
|
|
|
this._openItems.delete(item);
|
2021-02-12 17:34:05 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
try {
|
|
|
|
const result = item.run(callback);
|
|
|
|
if (result instanceof Promise) {
|
|
|
|
return result.then(promiseResult => {
|
|
|
|
finishItem();
|
|
|
|
return promiseResult;
|
|
|
|
}, err => {
|
|
|
|
finishItem();
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
finishItem();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
finishItem();
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-12 18:35:51 +05:30
|
|
|
_finishOpenItems() {
|
|
|
|
for (const openItem of this._openItems) {
|
|
|
|
openItem.finish();
|
|
|
|
const serialized = openItem.serialize(this._baseLogLevel);
|
|
|
|
if (serialized) {
|
|
|
|
this._persistItem(serialized);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this._openItems.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
_persistItem() {
|
2021-02-12 17:34:05 +05:30
|
|
|
throw new Error("not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
async export() {
|
|
|
|
throw new Error("not implemented");
|
|
|
|
}
|
2021-02-12 20:38:07 +05:30
|
|
|
|
2021-02-12 18:35:51 +05:30
|
|
|
// expose log level without needing
|
|
|
|
get level() {
|
|
|
|
return LogLevel;
|
|
|
|
}
|
2021-02-12 17:34:05 +05:30
|
|
|
}
|