mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-25 14:22:40 +00:00
88 lines
2.6 KiB
TypeScript
88 lines
2.6 KiB
TypeScript
![]() |
//
|
||
|
// Copyright © 2020 Anticrm Platform Contributors.
|
||
|
//
|
||
|
// Licensed under the Eclipse Public 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 https://www.eclipse.org/legal/epl-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 type {
|
||
|
Tx,
|
||
|
Storage,
|
||
|
Ref,
|
||
|
Doc,
|
||
|
Class,
|
||
|
DocumentQuery,
|
||
|
FindResult,
|
||
|
FindOptions
|
||
|
} from '@anticrm/core'
|
||
|
import { getResource } from '@anticrm/platform'
|
||
|
import core, { ModelDb, TxDb, Hierarchy, DOMAIN_TX, DefaultTxFactory } from '@anticrm/core'
|
||
|
|
||
|
async function getModel (): Promise<Tx[]> {
|
||
|
return import('./model.tx.json') as unknown as Tx[]
|
||
|
}
|
||
|
|
||
|
class DevStorage implements Storage {
|
||
|
private readonly txFactory: DefaultTxFactory
|
||
|
|
||
|
constructor (
|
||
|
private readonly hierarchy: Hierarchy,
|
||
|
private readonly txdb: TxDb,
|
||
|
private readonly modeldb: ModelDb,
|
||
|
private readonly handler: (tx: Tx) => void) {
|
||
|
this.txFactory = new DefaultTxFactory(core.account.System)
|
||
|
}
|
||
|
|
||
|
async findAll<T extends Doc> (
|
||
|
_class: Ref<Class<T>>,
|
||
|
query: DocumentQuery<T>,
|
||
|
options?: FindOptions<T>
|
||
|
): Promise<FindResult<T>> {
|
||
|
const domain = this.hierarchy.getClass(_class).domain
|
||
|
if (domain === DOMAIN_TX) return await this.txdb.findAll(_class, query, options)
|
||
|
return await this.modeldb.findAll(_class, query, options)
|
||
|
}
|
||
|
|
||
|
async tx (tx: Tx): Promise<void> {
|
||
|
if (tx.objectSpace === core.space.Model) {
|
||
|
this.hierarchy.tx(tx)
|
||
|
}
|
||
|
await Promise.all([this.modeldb.tx(tx), this.txdb.tx(tx)])
|
||
|
// invoke triggers
|
||
|
const triggers = this.hierarchy.getClass(tx.objectClass).triggers
|
||
|
if (triggers !== undefined) {
|
||
|
for (const trigger of triggers) {
|
||
|
const impl = await getResource(trigger)
|
||
|
const txes = await impl(tx, this.txFactory)
|
||
|
for (const tx of txes) {
|
||
|
await Promise.all([this.modeldb.tx(tx), this.txdb.tx(tx)])
|
||
|
this.handler(tx)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export async function connect (handler: (tx: Tx) => void): Promise<Storage> {
|
||
|
const txes = await getModel()
|
||
|
|
||
|
const hierarchy = new Hierarchy()
|
||
|
for (const tx of txes) hierarchy.tx(tx)
|
||
|
|
||
|
const transactions = new TxDb(hierarchy)
|
||
|
const model = new ModelDb(hierarchy)
|
||
|
for (const tx of txes) {
|
||
|
await Promise.all([transactions.tx(tx), model.tx(tx)])
|
||
|
}
|
||
|
|
||
|
return new DevStorage(hierarchy, transactions, model, handler)
|
||
|
}
|