@alwatr/nitrobase-engine 9.1.1 → 9.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.js CHANGED
@@ -1,5 +1,5 @@
1
- /* 📦 @alwatr/nitrobase-engine v9.1.1 */
2
- import{delay as H}from"@alwatr/delay";import{exitHook as k}from"@alwatr/exit-hook";import{getStoreId as U,getStorePath as X}from"@alwatr/nitrobase-helper";import{CollectionReference as V,DocumentReference as Y}from"@alwatr/nitrobase-reference";import{StoreFileType as O,StoreFileExtension as L,Region as D}from"@alwatr/nitrobase-types";import{existsSync as A,readJson as $,resolve as W,unlink as J,writeJson as j}from"@alwatr/node-fs";import{createLogger as G}from"@alwatr/logger";var B=G("@alwatr/nitrobase-engine");q:B.logFileModule?.("alwatr-nitrobase");class Z{config;static version="9.1.1";static rootDbStat__={name:".nitrobase",region:D.Secret,type:O.Collection,extension:L.Json,changeDebounce:40};rootDb__;cacheReferences__={};constructor(q){this.config=q;this.storeChanged_=this.storeChanged_.bind(this),B.logMethodArgs?.("new",q),this.config.defaultChangeDebounce??=40,this.rootDb__=this.loadRootDb__(),k(this.exitHook__.bind(this))}hasStore(q){let z=U(q),K=this.rootDb__.hasItem(z);return B.logMethodFull?.("hasStore",z,K),K}newDocument(q,z){return B.logMethodArgs?.("newDocument",q),this.newStoreFile__({...q,type:O.Document},z)}newCollection(q){return B.logMethodArgs?.("newCollection",q),this.newStoreFile__({...q,type:O.Collection})}newStoreFile__(q,z){B.logMethodArgs?.("newStoreFile__",q),q.changeDebounce??=this.config.defaultChangeDebounce;let K;if(q.type===O.Document){if(z===void 0)throw B.accident("newStoreFile__","document_data_required",q),Error("document_data_required",{cause:q});K=Y.newRefFromData(q,z,this.storeChanged_)}else if(q.type===O.Collection)K=V.newRefFromData(q,this.storeChanged_);else throw B.accident("newStoreFile__","store_file_type_not_supported",q),Error("store_file_type_not_supported",{cause:q});if(this.rootDb__.hasItem(K.id))throw B.accident("newStoreFile__","store_file_already_defined",q),Error("store_file_already_defined",{cause:q});this.rootDb__.addItem(K.id,q),this.cacheReferences__[K.id]=K,this.storeChanged_(K)}async openDocument(q){let z=U(q);if(B.logMethodArgs?.("openDocument",z),Object.hasOwn(this.cacheReferences__,z)){if(!(this.cacheReferences__[z]instanceof Y))throw B.accident("openDocument","document_wrong_type",z),Error("document_wrong_type",{cause:z});return this.cacheReferences__[z]}if(!this.rootDb__.hasItem(z))throw B.accident("openDocument","document_not_found",z),Error("document_not_found",{cause:z});let K=this.rootDb__.getItemData(z);if(K.type!=O.Document)throw B.accident("openDocument","document_wrong_type",z),Error("document_wrong_type",{cause:z});let Q=await this.readContext__(K),M=Y.newRefFromContext(Q,this.storeChanged_);return this.cacheReferences__[z]=M,M}async openCollection(q){let z=U(q);if(B.logMethodArgs?.("openCollection",z),Object.hasOwn(this.cacheReferences__,z)){if(!(this.cacheReferences__[z]instanceof V))throw B.accident("openCollection","collection_wrong_type",z),Error("collection_wrong_type",{cause:z});return this.cacheReferences__[z]}if(!this.rootDb__.hasItem(z))throw B.accident("openCollection","collection_not_found",z),Error("collection_not_found",{cause:z});let K=this.rootDb__.getItemData(z);if(K.type!=O.Collection)throw B.accident("openCollection","collection_wrong_type",z),Error("collection_not_found",{cause:z});let Q=await this.readContext__(K),M=V.newRefFromContext(Q,this.storeChanged_);return this.cacheReferences__[z]=M,M}unloadStore(q){let z=U(q);B.logMethodArgs?.("unloadStore",z);let K=this.cacheReferences__[z];if(K===void 0)return;if(K.hasUnprocessedChanges_===!0)K.updateDelayed_=!1,this.storeChanged_(K);delete this.cacheReferences__[z]}async removeStore(q){let z=U(q);if(B.logMethodArgs?.("removeStore",z),!this.rootDb__.hasItem(z))throw B.accident("removeStore","document_not_found",z),Error("document_not_found",{cause:z});let K=this.cacheReferences__[z];if(K!==void 0)K.freeze=!0,K.updateDelayed_=!1,K.hasUnprocessedChanges_=!1,delete this.cacheReferences__[z];let Q=X(this.rootDb__.getItemData(z));this.rootDb__.removeItem(z),await H.by(0);try{await J(W(this.config.rootPath,Q))}catch(M){B.error("removeStore","remove_file_failed",M,{id:q,path:Q})}}async saveAll(){B.logMethod?.("saveAll");for(let q of Object.values(this.cacheReferences__))if(q.hasUnprocessedChanges_===!0&&q.freeze!==!0)q.updateDelayed_=!1,await this.storeChanged_(q)}async readContext__(q){if(typeof q!=="string")q=X(q);B.logMethodArgs?.("readContext__",q),B.time?.(`readContext__time(${q})`);let z=await $(W(this.config.rootPath,q));return B.timeEnd?.(`readContext__time(${q})`),z}writeContext__(q,z){if(typeof q!=="string")q=X(q);return B.logMethodArgs?.("writeContext__",q),j(W(this.config.rootPath,q),z)}async storeChanged_(q){B.logMethodArgs?.("storeChanged__",q.id);let z=q.getStoreMeta().rev;try{if(await this.writeContext__(q.path,q.getFullContext_()),z===q.getStoreMeta().rev)q.hasUnprocessedChanges_=!1}catch(K){B.error("storeChanged__","write_context_failed",{id:q.id,error:K})}}loadRootDb__(){B.logMethod?.("loadRootDb__");let q=W(this.config.rootPath,X(Z.rootDbStat__));if(!A(q)){if(this.config.errorWhenNotInitialized===!0)throw Error("store_not_found",{cause:"Nitrobase not initialized"});return B.banner("Initialize new alwatr-nitrobase"),V.newRefFromData(Z.rootDbStat__,this.storeChanged_)}let z=$(q,!0);return V.newRefFromContext(z,this.storeChanged_,"root-db")}exitHook__(){B.logMethod?.("exitHook__");for(let q of Object.values(this.cacheReferences__))if(B.logProperty?.(`StoreFile.${q.id}.hasUnprocessedChanges`,q.hasUnprocessedChanges_),q.hasUnprocessedChanges_===!0&&q.freeze!==!0)B.incident?.("exitHook__","rescue_unsaved_context",{id:q.id}),j(W(this.config.rootPath,q.path),q.getFullContext_(),!0),q.hasUnprocessedChanges_=!1}getStoreList(){return B.logMethod?.("getStoreList"),this.rootDb__.values()}}export{Z as AlwatrNitrobase};
1
+ /* 📦 @alwatr/nitrobase-engine v9.2.1 */
2
+ import{delay as H}from"@alwatr/delay";import{exitHook as k}from"@alwatr/exit-hook";import{getStoreId as U,getStorePath as X}from"@alwatr/nitrobase-helper";import{CollectionReference as V,DocumentReference as Y}from"@alwatr/nitrobase-reference";import{StoreFileType as O,StoreFileExtension as L,Region as D}from"@alwatr/nitrobase-types";import{existsSync as A,readJson as $,resolve as W,unlink as J,writeJson as j}from"@alwatr/node-fs";import{createLogger as G}from"@alwatr/logger";var B=G("@alwatr/nitrobase-engine");q:B.logFileModule?.("alwatr-nitrobase");class Z{config;static version="9.2.1";static rootDbStat__={name:".nitrobase",region:D.Secret,type:O.Collection,extension:L.Json,changeDebounce:40};rootDb__;cacheReferences__={};constructor(q){this.config=q;this.storeChanged_=this.storeChanged_.bind(this),B.logMethodArgs?.("new",q),this.config.defaultChangeDebounce??=40,this.rootDb__=this.loadRootDb__(),k(this.exitHook__.bind(this))}hasStore(q){let z=U(q),K=this.rootDb__.hasItem(z);return B.logMethodFull?.("hasStore",z,K),K}newDocument(q,z){return B.logMethodArgs?.("newDocument",q),this.newStoreFile__({...q,type:O.Document},z)}newCollection(q){return B.logMethodArgs?.("newCollection",q),this.newStoreFile__({...q,type:O.Collection})}newStoreFile__(q,z){B.logMethodArgs?.("newStoreFile__",q),q.changeDebounce??=this.config.defaultChangeDebounce;let K;if(q.type===O.Document){if(z===void 0)throw B.accident("newStoreFile__","document_data_required",q),Error("document_data_required",{cause:q});K=Y.newRefFromData(q,z,this.storeChanged_)}else if(q.type===O.Collection)K=V.newRefFromData(q,this.storeChanged_);else throw B.accident("newStoreFile__","store_file_type_not_supported",q),Error("store_file_type_not_supported",{cause:q});if(this.rootDb__.hasItem(K.id))throw B.accident("newStoreFile__","store_file_already_defined",q),Error("store_file_already_defined",{cause:q});this.rootDb__.addItem(K.id,q),this.cacheReferences__[K.id]=K,this.storeChanged_(K)}async openDocument(q){let z=U(q);if(B.logMethodArgs?.("openDocument",z),Object.hasOwn(this.cacheReferences__,z)){if(!(this.cacheReferences__[z]instanceof Y))throw B.accident("openDocument","document_wrong_type",z),Error("document_wrong_type",{cause:z});return this.cacheReferences__[z]}if(!this.rootDb__.hasItem(z))throw B.accident("openDocument","document_not_found",z),Error("document_not_found",{cause:z});let K=this.rootDb__.getItemData(z);if(K.type!=O.Document)throw B.accident("openDocument","document_wrong_type",z),Error("document_wrong_type",{cause:z});let Q=await this.readContext__(K),M=Y.newRefFromContext(Q,this.storeChanged_);return this.cacheReferences__[z]=M,M}async openCollection(q){let z=U(q);if(B.logMethodArgs?.("openCollection",z),Object.hasOwn(this.cacheReferences__,z)){if(!(this.cacheReferences__[z]instanceof V))throw B.accident("openCollection","collection_wrong_type",z),Error("collection_wrong_type",{cause:z});return this.cacheReferences__[z]}if(!this.rootDb__.hasItem(z))throw B.accident("openCollection","collection_not_found",z),Error("collection_not_found",{cause:z});let K=this.rootDb__.getItemData(z);if(K.type!=O.Collection)throw B.accident("openCollection","collection_wrong_type",z),Error("collection_not_found",{cause:z});let Q=await this.readContext__(K),M=V.newRefFromContext(Q,this.storeChanged_);return this.cacheReferences__[z]=M,M}unloadStore(q){let z=U(q);B.logMethodArgs?.("unloadStore",z);let K=this.cacheReferences__[z];if(K===void 0)return;if(K.hasUnprocessedChanges_===!0)K.updateDelayed_=!1,this.storeChanged_(K);delete this.cacheReferences__[z]}async removeStore(q){let z=U(q);if(B.logMethodArgs?.("removeStore",z),!this.rootDb__.hasItem(z))throw B.accident("removeStore","document_not_found",z),Error("document_not_found",{cause:z});let K=this.cacheReferences__[z];if(K!==void 0)K.freeze=!0,K.updateDelayed_=!1,K.hasUnprocessedChanges_=!1,delete this.cacheReferences__[z];let Q=X(this.rootDb__.getItemData(z));this.rootDb__.removeItem(z),await H.by(0);try{await J(W(this.config.rootPath,Q))}catch(M){B.error("removeStore","remove_file_failed",M,{id:q,path:Q})}}async saveAll(){B.logMethod?.("saveAll");for(let q of Object.values(this.cacheReferences__))if(q.hasUnprocessedChanges_===!0&&q.freeze!==!0)q.updateDelayed_=!1,await this.storeChanged_(q)}async readContext__(q){if(typeof q!=="string")q=X(q);B.logMethodArgs?.("readContext__",q),B.time?.(`readContext__time(${q})`);let z=await $(W(this.config.rootPath,q));return B.timeEnd?.(`readContext__time(${q})`),z}writeContext__(q,z){if(typeof q!=="string")q=X(q);return B.logMethodArgs?.("writeContext__",q),j(W(this.config.rootPath,q),z)}async storeChanged_(q){B.logMethodArgs?.("storeChanged__",q.id);let z=q.getStoreMeta().rev;try{if(await this.writeContext__(q.path,q.getFullContext_()),z===q.getStoreMeta().rev)q.hasUnprocessedChanges_=!1}catch(K){B.error("storeChanged__","write_context_failed",{id:q.id,error:K})}}loadRootDb__(){B.logMethod?.("loadRootDb__");let q=W(this.config.rootPath,X(Z.rootDbStat__));if(!A(q)){if(this.config.errorWhenNotInitialized===!0)throw Error("store_not_found",{cause:"Nitrobase not initialized"});return B.banner("Initialize new alwatr-nitrobase"),V.newRefFromData(Z.rootDbStat__,this.storeChanged_)}let z=$(q,!0);return V.newRefFromContext(z,this.storeChanged_,"root-db")}exitHook__(){B.logMethod?.("exitHook__");for(let q of Object.values(this.cacheReferences__))if(B.logProperty?.(`StoreFile.${q.id}.hasUnprocessedChanges`,q.hasUnprocessedChanges_),q.hasUnprocessedChanges_===!0&&q.freeze!==!0)B.incident?.("exitHook__","rescue_unsaved_context",{id:q.id}),j(W(this.config.rootPath,q.path),q.getFullContext_(),!0),q.hasUnprocessedChanges_=!1}getStoreList(){return B.logMethod?.("getStoreList"),this.rootDb__.values()}}export{Z as AlwatrNitrobase};
3
3
 
4
- //# debugId=98AEB8E70931DE6764756E2164756E21
4
+ //# debugId=DD26742C9F6FB4E364756E2164756E21
5
5
  //# sourceMappingURL=main.js.map
package/dist/main.js.map CHANGED
@@ -6,6 +6,6 @@
6
6
  "import {createLogger} from '@alwatr/logger';\n\n\nexport const logger = /* #__PURE__ */ createLogger(__package_name__);\n"
7
7
  ],
8
8
  "mappings": "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",
9
- "debugId": "98AEB8E70931DE6764756E2164756E21",
9
+ "debugId": "DD26742C9F6FB4E364756E2164756E21",
10
10
  "names": []
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwatr/nitrobase-engine",
3
- "version": "9.1.1",
3
+ "version": "9.2.1",
4
4
  "description": "Nitrobase is a blazingly fast, lightweight database built on JSON. It stores data entirely in memory for lightning-quick access, while also providing a JSON file backup for persistence. You can easily serve your data over the web using our high-performance accelerated Nginx server.",
5
5
  "license": "MPL-2.0",
6
6
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
@@ -21,20 +21,20 @@
21
21
  },
22
22
  "sideEffects": false,
23
23
  "dependencies": {
24
- "@alwatr/delay": "9.1.1",
25
- "@alwatr/exit-hook": "9.1.1",
26
- "@alwatr/logger": "9.1.1",
27
- "@alwatr/nitrobase-helper": "^9.1.1",
28
- "@alwatr/nitrobase-reference": "^9.1.1",
29
- "@alwatr/nitrobase-types": "^9.1.1",
30
- "@alwatr/node-fs": "9.1.1",
24
+ "@alwatr/delay": "9.2.1",
25
+ "@alwatr/exit-hook": "9.2.1",
26
+ "@alwatr/logger": "9.2.1",
27
+ "@alwatr/nitrobase-helper": "^9.2.1",
28
+ "@alwatr/nitrobase-reference": "^9.2.1",
29
+ "@alwatr/nitrobase-types": "^9.2.1",
30
+ "@alwatr/node-fs": "9.2.1",
31
31
  "@alwatr/type-helper": "9.1.1"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@alwatr/nano-build": "9.1.1",
35
35
  "@alwatr/tsconfig-base": "9.1.1",
36
36
  "@alwatr/type-helper": "workspace:*",
37
- "@types/node": "^25.5.0",
37
+ "@types/node": "^24.12.2",
38
38
  "typescript": "^6.0.2"
39
39
  },
40
40
  "scripts": {
@@ -77,5 +77,5 @@
77
77
  "typescript"
78
78
  ],
79
79
  "prettier": "@alwatr/nanolib/prettier-config",
80
- "gitHead": "38fb79dd8b6cf48108ae6492ecd7a285c7633e9b"
80
+ "gitHead": "b9dc0cb8b04b16216d44fbe9a9682f2a57926167"
81
81
  }