-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathsql-editor-schema.ts
More file actions
78 lines (64 loc) · 2.12 KB
/
sql-editor-schema.ts
File metadata and controls
78 lines (64 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import type {
AdapterIntrospectResult,
AdapterSqlSchemaResult,
SqlEditorDialect,
} from "./adapter";
export function createSqlEditorSchemaFromIntrospection(args: {
defaultSchema?: string;
dialect: SqlEditorDialect;
introspection: AdapterIntrospectResult;
}): AdapterSqlSchemaResult {
const { defaultSchema, dialect, introspection } = args;
const namespace = createSqlEditorNamespace(introspection);
const version = createSqlEditorSchemaVersion(namespace);
return {
defaultSchema,
dialect,
namespace,
version,
};
}
export function createSqlEditorNamespace(
introspection: AdapterIntrospectResult,
): Record<string, Record<string, string[]>> {
const namespace: Record<string, Record<string, string[]>> = {};
for (const [schemaName, schema] of Object.entries(introspection.schemas)) {
const tables: Record<string, string[]> = {};
for (const [tableName, table] of Object.entries(schema.tables)) {
tables[tableName] = Object.keys(table.columns).sort((left, right) =>
left.localeCompare(right),
);
}
namespace[schemaName] = tables;
}
return namespace;
}
export function createSqlEditorSchemaVersion(
namespace: Record<string, Record<string, string[]>>,
): string {
const flattenedEntries: string[] = [];
const sortedSchemaNames = Object.keys(namespace).sort((left, right) =>
left.localeCompare(right),
);
for (const schemaName of sortedSchemaNames) {
const tables = namespace[schemaName] ?? {};
const sortedTableNames = Object.keys(tables).sort((left, right) =>
left.localeCompare(right),
);
for (const tableName of sortedTableNames) {
const columns = [...(tables[tableName] ?? [])].sort((left, right) =>
left.localeCompare(right),
);
flattenedEntries.push(`${schemaName}.${tableName}:${columns.join(",")}`);
}
}
return `schema-${hashText(flattenedEntries.join("|")).toString(36)}`;
}
function hashText(value: string): number {
let hash = 5381;
for (let index = 0; index < value.length; index += 1) {
const charCode = value.charCodeAt(index);
hash = (hash * 33) ^ charCode;
}
return hash >>> 0;
}