| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- System.register(["cc"], function (_export, _context) {
- "use strict";
- var _cclegacy, __checkObsolete__, __checkObsoleteInNamespace__, log, Logger, _crd, LogType, names;
- _export("Logger", void 0);
- return {
- setters: [function (_cc) {
- _cclegacy = _cc.cclegacy;
- __checkObsolete__ = _cc.__checkObsolete__;
- __checkObsoleteInNamespace__ = _cc.__checkObsoleteInNamespace__;
- log = _cc.log;
- }],
- execute: function () {
- _crd = true;
- _cclegacy._RF.push({}, "479cdJANP5KaJgU+8z0DdSE", "Logger", undefined);
- /** 日志类型 */
- __checkObsolete__(['log']);
- _export("LogType", LogType = /*#__PURE__*/function (LogType) {
- LogType[LogType["Net"] = 1] = "Net";
- LogType[LogType["Model"] = 2] = "Model";
- LogType[LogType["Business"] = 4] = "Business";
- LogType[LogType["View"] = 8] = "View";
- LogType[LogType["Config"] = 16] = "Config";
- LogType[LogType["Trace"] = 32] = "Trace";
- return LogType;
- }({}));
- names = {
- "1": "网络日志",
- "2": "数据日志",
- "4": "业务日志",
- "8": "视图日志",
- "16": "配置日志",
- "32": "标准日志"
- };
- /**
- * 日志管理
- * @help https://gitee.com/dgflash/oops-framework/wikis/pages?sort_id=12037904&doc_id=2873565
- * @example
- oops.log.trace("默认标准日志");
- oops.log.logConfig("灰色配置日志");
- oops.log.logNet("橙色网络日志");
- oops.log.logModel("紫色数据日志");
- oops.log.logBusiness("蓝色业务日志");
- oops.log.logView("绿色视图日志");
- */
- _export("Logger", Logger = class Logger {
- constructor() {
- this.tags = 0;
- this.lc = null;
- }
- static get instance() {
- if (this._instance == null) {
- this._instance = new Logger();
- this._instance.init();
- }
- return this._instance;
- }
- /** 设置界面日志控制台 */
- setLoggerConsole(lc) {
- this.lc = lc;
- }
- init() {
- this.tags = LogType.Net | LogType.Model | LogType.Business | LogType.View | LogType.Config | LogType.Trace;
- }
- /**
- * 设置显示的日志类型,默认值为不显示任何类型日志
- * @example
- oops.log.setTags(LogType.View|LogType.Business)
- */
- setTags(tag = null) {
- if (tag) {
- this.tags = tag;
- }
- }
- /**
- * 记录开始计时
- * @param describe 标题描述
- * @example
- oops.log.start();
- ...
- 省略N行代码
- ...
- oops.log.end();
- */
- start(describe = "Time") {
- console.time(describe);
- }
- /**
- * 打印范围内时间消耗
- * @param describe 标题描述
- * @example
- oops.log.start();
- ...
- 省略N行代码
- ...
- oops.log.end();
- */
- end(describe = "Time") {
- console.timeEnd(describe);
- }
- /**
- * 打印表格
- * @param msg 日志消息
- * @param describe 标题描述
- * @example
- var object:any = {uid:1000, name:"oops"};
- oops.log.table(object);
- */
- table(msg, describe) {
- if (!this.isOpen(LogType.Trace)) {
- return;
- }
- console.table(msg);
- }
- /**
- * 打印标准日志
- * @param msg 日志消息
- */
- trace(msg, color = "#000000") {
- this.print(LogType.Trace, msg, color);
- }
- /**
- * 打印网络层日志
- * @param msg 日志消息
- * @param describe 标题描述
- */
- logNet(msg, describe) {
- this.orange(LogType.Net, msg, describe);
- }
- /**
- * 打印数据层日志
- * @param msg 日志消息
- * @param describe 标题描述
- */
- logModel(msg, describe) {
- this.violet(LogType.Model, msg, describe);
- }
- /**
- * 打印业务层日志
- * @param msg 日志消息
- * @param describe 标题描述
- */
- logBusiness(msg, describe) {
- this.blue(LogType.Business, msg, describe);
- }
- /**
- * 打印视图日志
- * @param msg 日志消息
- * @param describe 标题描述
- */
- logView(msg, describe) {
- this.green(LogType.View, msg, describe);
- }
- /** 打印配置日志 */
- logConfig(msg, describe) {
- this.gray(LogType.Config, msg, describe);
- } // 橙色
- orange(tag, msg, describe) {
- this.print(tag, msg, "#ee7700", describe);
- } // 紫色
- violet(tag, msg, describe) {
- this.print(tag, msg, "#800080", describe);
- } // 蓝色
- blue(tag, msg, describe) {
- this.print(tag, msg, "#3a5fcd", describe);
- } // 绿色
- green(tag, msg, describe) {
- this.print(tag, msg, "#008000", describe);
- } // 灰色
- gray(tag, msg, describe) {
- this.print(tag, msg, "#808080", describe);
- }
- isOpen(tag) {
- return (this.tags & tag) != 0;
- }
- /**
- * 输出日志
- * @param tag 日志类型
- * @param msg 日志内容
- * @param color 日志文本颜色
- * @param describe 日志标题描述
- */
- print(tag, msg, color, describe) {
- // 标记没有打开,不打印该日志
- if (!this.isOpen(tag)) {
- return;
- }
- const type = names[tag];
- if (this.lc == null) {
- const backLog = console.log || log;
- color = "color:" + color + ";";
- if (describe) {
- backLog.call(null, "%c%s%s%s:%s%o", color, this.getDateString(), '[' + type + ']', this.stack(5), describe, msg);
- } else {
- backLog.call(null, "%c%s%s%s:%o", color, this.getDateString(), '[' + type + ']', this.stack(5), msg);
- }
- } else {
- this.lc.trace(`${this.getDateString()}[${type}]${msg}`, color);
- }
- }
- stack(index) {
- const e = new Error();
- const lines = e.stack.split("\n");
- const result = [];
- lines.forEach(line => {
- line = line.substring(7);
- var lineBreak = line.split(" ");
- if (lineBreak.length < 2) {
- result.push(lineBreak[0]);
- } else {
- result.push({
- [lineBreak[0]]: lineBreak[1]
- });
- }
- });
- let list = [];
- let splitList = [];
- if (index < result.length - 1) {
- let value;
- for (let a in result[index]) {
- splitList = a.split(".");
- if (splitList.length == 2) {
- list = splitList.concat();
- } else {
- value = result[index][a];
- const start = value.lastIndexOf("/");
- const end = value.lastIndexOf(".");
- if (start > -1 && end > -1) {
- const r = value.substring(start + 1, end);
- list.push(r);
- } else {
- list.push(value);
- }
- }
- }
- }
- if (list.length == 1) {
- return "[" + list[0] + ".ts]";
- } else if (list.length == 2) {
- return "[" + list[0] + ".ts->" + list[1] + "]";
- }
- return "";
- }
- getDateString() {
- let d = new Date();
- let str = d.getHours().toString();
- let timeStr = "";
- timeStr += (str.length == 1 ? "0" + str : str) + ":";
- str = d.getMinutes().toString();
- timeStr += (str.length == 1 ? "0" + str : str) + ":";
- str = d.getSeconds().toString();
- timeStr += (str.length == 1 ? "0" + str : str) + ":";
- str = d.getMilliseconds().toString();
- if (str.length == 1) str = "00" + str;
- if (str.length == 2) str = "0" + str;
- timeStr += str;
- timeStr = "[" + timeStr + "]";
- return timeStr;
- }
- });
- Logger._instance = void 0;
- _cclegacy._RF.pop();
- _crd = false;
- }
- };
- });
- //# sourceMappingURL=c30b6a3023fe9a249c23e0924d3ea27caecdaa0e.js.map
|