|
@@ -5,24 +5,16 @@
|
|
|
*/
|
|
|
|
|
|
import * as Data from './data-model'
|
|
|
-import { Table, Column, ColumnHelpers } from 'mol-base/collections/table'
|
|
|
+import { Database, Table, Column, ColumnHelpers } from 'mol-base/collections/database'
|
|
|
|
|
|
-export function toTypedFrame<Schema extends FrameSchema, Frame extends TypedFrame<Schema> = TypedFrame<Schema>>(schema: Schema, frame: Data.Frame): Frame {
|
|
|
- return createTypedFrame(schema, frame) as Frame;
|
|
|
+export function toDatabase<Schema extends Database.Schema, Frame extends Database<Schema> = Database<Schema>>(schema: Schema, frame: Data.Frame): Frame {
|
|
|
+ return createDatabase(schema, frame) as Frame;
|
|
|
}
|
|
|
|
|
|
export function toTable<Schema extends Table.Schema, R extends Table<Schema> = Table<Schema>>(schema: Schema, category: Data.Category): R {
|
|
|
- return new _TypedCategory(category, schema, true) as any;
|
|
|
+ return new CategoryTable(category, schema, true) as any;
|
|
|
}
|
|
|
|
|
|
-export const Types = Column.Type
|
|
|
-
|
|
|
-export type FrameSchema = { [category: string]: Table.Schema }
|
|
|
-export type TypedFrame<Schema extends FrameSchema> = {
|
|
|
- readonly _header?: string,
|
|
|
- readonly _frame: Data.Frame
|
|
|
-} & { [C in keyof Schema]: Table<Schema[C]> }
|
|
|
-
|
|
|
type ColumnCtor = (field: Data.Field, category: Data.Category, key: string) => Column<any>
|
|
|
|
|
|
function getColumnCtor(t: Column.Type): ColumnCtor {
|
|
@@ -57,23 +49,17 @@ function createColumn<T>(type: Column.Type, field: Data.Field, value: (row: numb
|
|
|
};
|
|
|
}
|
|
|
|
|
|
-class _TypedFrame implements TypedFrame<any> { // tslint:disable-line:class-name
|
|
|
- header = this._frame.header;
|
|
|
- [k: string]: any;
|
|
|
- constructor(public _frame: Data.Frame, schema: FrameSchema) {
|
|
|
- for (const k of Object.keys(schema)) {
|
|
|
- Object.defineProperty(this, k, { value: createTypedCategory(k, schema[k], _frame), enumerable: true, writable: false, configurable: false });
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-class _TypedCategory implements Table<any> { // tslint:disable-line:class-name
|
|
|
- _rowCount = this._category.rowCount;
|
|
|
+class CategoryTable implements Table<any> { // tslint:disable-line:class-name
|
|
|
+ _rowCount: number;
|
|
|
_columns: ReadonlyArray<string>;
|
|
|
+ _schema: any;
|
|
|
[k: string]: any;
|
|
|
- constructor(public _category: Data.Category, schema: Table.Schema, public _isDefined: boolean) {
|
|
|
+
|
|
|
+ constructor(category: Data.Category, schema: Table.Schema, public _isDefined: boolean) {
|
|
|
const fieldKeys = Object.keys(schema);
|
|
|
+ this._rowCount = category.rowCount;
|
|
|
this._columns = fieldKeys;
|
|
|
+ this._schema = schema;
|
|
|
const cache = Object.create(null);
|
|
|
for (const k of fieldKeys) {
|
|
|
const cType = schema[k];
|
|
@@ -81,8 +67,8 @@ class _TypedCategory implements Table<any> { // tslint:disable-line:class-name
|
|
|
Object.defineProperty(this, k, {
|
|
|
get: function() {
|
|
|
if (cache[k]) return cache[k];
|
|
|
- const field = _category.getField(k);
|
|
|
- cache[k] = !!field ? ctor(field, _category, k) : Column.Undefined(_category.rowCount, cType);
|
|
|
+ const field = category.getField(k);
|
|
|
+ cache[k] = !!field ? ctor(field, category, k) : Column.Undefined(category.rowCount, cType);
|
|
|
return cache[k];
|
|
|
},
|
|
|
enumerable: true,
|
|
@@ -92,11 +78,15 @@ class _TypedCategory implements Table<any> { // tslint:disable-line:class-name
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-function createTypedFrame(schema: FrameSchema, frame: Data.Frame): any {
|
|
|
- return new _TypedFrame(frame, schema);
|
|
|
+function createDatabase(schema: Database.Schema, frame: Data.Frame): Database<any> {
|
|
|
+ const tables = Object.create(null);
|
|
|
+ for (const k of Object.keys(schema)) {
|
|
|
+ tables[k] = createTable(k, (schema as any)[k], frame);
|
|
|
+ }
|
|
|
+ return Database.ofTables(frame.header, schema, tables);
|
|
|
}
|
|
|
|
|
|
-function createTypedCategory(key: string, schema: Table.Schema, frame: Data.Frame) {
|
|
|
+function createTable(key: string, schema: Table.Schema, frame: Data.Frame) {
|
|
|
const cat = frame.categories[key[0] === '_' ? key : '_' + key];
|
|
|
- return new _TypedCategory(cat || Data.Category.Empty, schema, !!cat);
|
|
|
+ return new CategoryTable(cat || Data.Category.Empty, schema, !!cat);
|
|
|
}
|