Merge pull request 'Add Storage Cacher' (#11) from dev-mrkbear into master
Reviewed-on: http://git.mrkbear.com/MrKBear/mini-dlpu-v3/pulls/11
This commit is contained in:
commit
9b4cfe95a5
@ -1,13 +1,15 @@
|
|||||||
import { Logger } from "./core/Logger";
|
import { Logger } from "./core/Logger";
|
||||||
import { LevelLogLabel, LifeCycleLogLabel } from "./core/PresetLogLabel";
|
import { LevelLogLabel, LifeCycleLogLabel } from "./core/PresetLogLabel";
|
||||||
|
|
||||||
|
import { Storage } from "./core/Storage";
|
||||||
|
|
||||||
App<IAppOption>({
|
|
||||||
|
App({
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 全局数据
|
* 存储缓存键值
|
||||||
*/
|
*/
|
||||||
globalData: {},
|
storageCache: new Set<string>(),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 小程序加载时
|
* 小程序加载时
|
||||||
@ -15,5 +17,14 @@ App<IAppOption>({
|
|||||||
onLaunch() {
|
onLaunch() {
|
||||||
Logger.log("小程序启动...",
|
Logger.log("小程序启动...",
|
||||||
LevelLogLabel.TraceLabel, LifeCycleLogLabel.OnLaunchLabel);
|
LevelLogLabel.TraceLabel, LifeCycleLogLabel.OnLaunchLabel);
|
||||||
|
|
||||||
|
let s = new Storage("test", {
|
||||||
|
a: new Date(),
|
||||||
|
be: 2
|
||||||
|
});
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
s.set("be", 12);
|
||||||
|
}, 1000)
|
||||||
}
|
}
|
||||||
})
|
})
|
@ -310,4 +310,13 @@ class LifeCycleLogLabel {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export { StackInfo, StackLogLabel, LevelLogLabel, LifeCycleLogLabel, normalLifeStyleGen as colorRadio };
|
const NormalStyle = StackLogLabel.normalStyle;
|
||||||
|
|
||||||
|
export {
|
||||||
|
NormalStyle,
|
||||||
|
StackInfo,
|
||||||
|
StackLogLabel,
|
||||||
|
LevelLogLabel,
|
||||||
|
LifeCycleLogLabel,
|
||||||
|
normalLifeStyleGen as colorRadio,
|
||||||
|
};
|
210
miniprogram/core/Storage.ts
Normal file
210
miniprogram/core/Storage.ts
Normal file
@ -0,0 +1,210 @@
|
|||||||
|
import { LogLabel } from "./LogLabel";
|
||||||
|
import { Logger } from "./Logger";
|
||||||
|
import { LevelLogLabel, colorRadio } from "./PresetLogLabel";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态
|
||||||
|
*/
|
||||||
|
enum StorageState {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 有 waiter 存在的工作状态
|
||||||
|
*/
|
||||||
|
WORK = 1,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 无 waiter 存在的完成状态
|
||||||
|
*/
|
||||||
|
DONE = 2
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 任务等待列表
|
||||||
|
*/
|
||||||
|
class Waiter {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态
|
||||||
|
*/
|
||||||
|
public get state():StorageState {
|
||||||
|
if(this.waiterList.length <= 0) {
|
||||||
|
return StorageState.DONE;
|
||||||
|
} else {
|
||||||
|
return StorageState.WORK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 函数列表
|
||||||
|
*/
|
||||||
|
private waiterList:Function[] = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 添加等待者
|
||||||
|
* @param fn 等待者
|
||||||
|
*/
|
||||||
|
public addWaiter(fn:Function) {
|
||||||
|
this.waiterList.push(fn);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 完成
|
||||||
|
* 清空 waiterList
|
||||||
|
* 并返回合并的 waiterList
|
||||||
|
*/
|
||||||
|
public done():Function {
|
||||||
|
|
||||||
|
// 复制 waiterList 生成闭包
|
||||||
|
let fnList = this.waiterList.concat([]);
|
||||||
|
|
||||||
|
let runAllWaiter = () => {
|
||||||
|
for(let i = 0; i < fnList.length; i++) {
|
||||||
|
fnList[i]();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.waiterList = [];
|
||||||
|
return runAllWaiter;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 存储数据类型
|
||||||
|
*/
|
||||||
|
type IStorageData = {
|
||||||
|
[x:string]:any
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 存储库
|
||||||
|
* @template T 数据类型
|
||||||
|
*
|
||||||
|
* 特点:
|
||||||
|
* 1. 该类封装了 wxStorage 操作
|
||||||
|
* 2. 全异步获取无阻塞
|
||||||
|
* 3. 使用数据缓缓冲区,优化高频存取
|
||||||
|
* 4.
|
||||||
|
*/
|
||||||
|
class Storage<T extends IStorageData> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logger 使用的标签
|
||||||
|
*/
|
||||||
|
public StorageLogLabel:LogLabel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 数据唯一索引
|
||||||
|
*/
|
||||||
|
public key:string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 数据键值的默认数据类型
|
||||||
|
*/
|
||||||
|
private readonly defaultData:T;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 缓存数据
|
||||||
|
*/
|
||||||
|
private cache:T;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* cache 到 storage 等待列表
|
||||||
|
*/
|
||||||
|
private saveWaiter:Waiter = new Waiter();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 将数据从 cache 同步到 storage
|
||||||
|
*/
|
||||||
|
public async save():Promise<void> {
|
||||||
|
|
||||||
|
// 如果没有开始存储
|
||||||
|
// 发起一次异步读取
|
||||||
|
if(this.saveWaiter.state === StorageState.DONE)
|
||||||
|
setTimeout(() => {
|
||||||
|
|
||||||
|
// 获取函数绑定列表
|
||||||
|
let fnList = this.saveWaiter.done();
|
||||||
|
|
||||||
|
wx.setStorage<T>({
|
||||||
|
key: this.key,
|
||||||
|
data: this.cache,
|
||||||
|
|
||||||
|
success: (data) => {
|
||||||
|
Logger.log(`数据保存成功! errMsg: ${ data.errMsg }`,
|
||||||
|
LevelLogLabel.TraceLabel, this.StorageLogLabel);
|
||||||
|
},
|
||||||
|
|
||||||
|
fail: (data) => {
|
||||||
|
Logger.log(`数据保存失败! errMsg: ${ data.errMsg }`,
|
||||||
|
LevelLogLabel.FatalLabel, this.StorageLogLabel);
|
||||||
|
},
|
||||||
|
|
||||||
|
complete: () => {
|
||||||
|
fnList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
return new Promise((r) => {
|
||||||
|
|
||||||
|
// 加入等待队列
|
||||||
|
this.saveWaiter.addWaiter(r);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重置全部数据
|
||||||
|
*/
|
||||||
|
public async reset() {
|
||||||
|
this.cache = this.defaultData;
|
||||||
|
Logger.logMultiple([LevelLogLabel.InfoLabel, this.StorageLogLabel],
|
||||||
|
`正在重置为默认数据... 数据内容:\n`, this.cache
|
||||||
|
);
|
||||||
|
return this.save();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param defaultData 键值默认数据
|
||||||
|
*/
|
||||||
|
public constructor(key:string, defaultData:T) {
|
||||||
|
this.key = key;
|
||||||
|
this.defaultData = defaultData;
|
||||||
|
this.StorageLogLabel = new LogLabel(
|
||||||
|
`Storage:${ this.key }`, colorRadio(34, 230, 258)
|
||||||
|
);
|
||||||
|
|
||||||
|
// 读取数据到缓存
|
||||||
|
this.cache = wx.getStorageSync<T>(this.key);
|
||||||
|
|
||||||
|
// 使用默认值
|
||||||
|
if(!this.cache) {
|
||||||
|
Logger.log(`找不到 Storage 数据!`,
|
||||||
|
LevelLogLabel.InfoLabel, this.StorageLogLabel);
|
||||||
|
this.reset();
|
||||||
|
} else {
|
||||||
|
Logger.logMultiple([LevelLogLabel.InfoLabel, this.StorageLogLabel],
|
||||||
|
`数据成功从 Storage 读取, 数据内容:\n`, this.cache
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取键值对应数据
|
||||||
|
* @param key 键值
|
||||||
|
*/
|
||||||
|
public get<M extends keyof T>(key:M):T[M] {
|
||||||
|
return this.cache[key];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置键值对应数据
|
||||||
|
* @param key 键值
|
||||||
|
*/
|
||||||
|
public async set<M extends keyof T>(key:M, value:T[M]):Promise<void> {
|
||||||
|
this.cache[key] = value;
|
||||||
|
return this.save();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Storage;
|
||||||
|
export { Storage, StorageState, Waiter };
|
@ -1,5 +1,5 @@
|
|||||||
import { Modular, Manager, ILifetime } from "../../core/Module";
|
import { Modular, Manager, ILifetime } from "../../core/Module";
|
||||||
import { LevelLogLabel, LifeCycleLogLabel, colorRadio } from "../../core/PresetLogLabel";
|
import { LevelLogLabel, LifeCycleLogLabel, NormalStyle } from "../../core/PresetLogLabel";
|
||||||
import { LogLabel } from "../../core/LogLabel";
|
import { LogLabel } from "../../core/LogLabel";
|
||||||
import { Logger } from "../../core/Logger";
|
import { Logger } from "../../core/Logger";
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ implements Partial<ILifetime> {
|
|||||||
* 页面日志输出标签
|
* 页面日志输出标签
|
||||||
*/
|
*/
|
||||||
public static readonly StatusBarLabel = new LogLabel(
|
public static readonly StatusBarLabel = new LogLabel(
|
||||||
"StatusBar", colorRadio(255, 230, 222)
|
"StatusBar", NormalStyle
|
||||||
);
|
);
|
||||||
|
|
||||||
data = {
|
data = {
|
||||||
|
Loading…
Reference in New Issue
Block a user