This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/logging/BaseLogger.js

110 lines
3.4 KiB
JavaScript
Raw Normal View History

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";
import {LogLevel, LogFilter} from "./LogFilter.js";
2021-02-12 17:34:05 +05:30
export class BaseLogger {
constructor({platform}) {
2021-02-12 17:34:05 +05:30
this._openItems = new Set();
this._platform = platform;
}
2021-02-19 00:16:40 +05:30
log(labelOrValues, logLevel = LogLevel.Info) {
const item = new LogItem(labelOrValues, logLevel, null, this._platform.clock);
item._end = item._start;
this._persistItem(item.serialize(null));
}
run(labelOrValues, callback, logLevel = LogLevel.Info, filterCreator = null) {
2021-02-16 22:59:42 +05:30
const item = new LogItem(labelOrValues, logLevel, null, this._platform.clock);
this._openItems.add(item);
2021-02-12 17:34:05 +05:30
const finishItem = () => {
let filter = new LogFilter();
if (filterCreator) {
try {
2021-02-19 00:16:40 +05:30
filter = filterCreator(filter, item);
} catch (err) {
console.error("Error while creating log filter", err);
}
} else {
// if not filter is specified, filter out anything lower than the initial log level
filter = filter.minLevel(logLevel);
}
try {
const serialized = item.serialize(filter);
if (serialized) {
this._persistItem(serialized);
}
} catch (err) {
console.error("Could not serialize log item", err);
}
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;
}
}
_finishOpenItems() {
for (const openItem of this._openItems) {
openItem.finish();
try {
// for now, serialize with an all-permitting filter
// as the createFilter function would get a distorted image anyway
// about the duration of the item, etc ...
const serialized = openItem.serialize(new LogFilter(), 0);
if (serialized) {
this._persistItem(serialized);
}
} catch (err) {
console.error("Could not serialize log item", err);
}
}
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
// expose log level without needing
get level() {
return LogLevel;
}
2021-02-12 17:34:05 +05:30
}