-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
types.js
225 lines (188 loc) · 7.37 KB
/
types.js
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// @flow
/* eslint-disable no-use-before-define, import/exports-last, flowtype/require-types-at-top */
import type {
LoggerType
} from 'roarr';
export type {
LoggerType
};
export opaque type QueryIdType = string;
type MaybePromiseType<T> = T | Promise<T>;
export type FieldType = {|
+columnID: number,
+dataTypeID: number,
+dataTypeModifier: number,
+dataTypeSize: number,
+format: string,
+name: string,
+tableID: number
|};
type QueryResultType<T> = {|
+command: 'DELETE' | 'INSERT' | 'SELECT' | 'UPDATE',
+fields: $ReadOnlyArray<FieldType>,
+oid: number | null,
+rowAsArray: boolean,
+rowCount: number,
+rows: $ReadOnlyArray<T>
|};
// eslint-disable-next-line flowtype/no-weak-types
export type InternalDatabasePoolType = any;
// eslint-disable-next-line flowtype/no-weak-types
export type InternalDatabaseConnectionType = any;
/**
* @property interceptors An array of [Slonik interceptors](https://github.com/gajus/slonik#slonik-interceptors).
*/
export type ClientUserConfigurationType = {|
+interceptors?: $ReadOnlyArray<InterceptorType>
|};
export type ClientConfigurationType = {|
+interceptors: $ReadOnlyArray<InterceptorType>
|};
export type DatabaseConnectionUriType = string;
export type DatabaseConfigurationType =
DatabaseConnectionUriType |
{|
+database?: string,
+host?: string,
+idleTimeoutMillis?: number,
+max?: number,
+password?: string,
+port?: number,
+user?: string
|};
type CommonQueryMethodsType = {|
+any: QueryAnyFunctionType<*>,
+anyFirst: QueryAnyFirstFunctionType<*>,
+many: QueryManyFunctionType<*>,
+manyFirst: QueryManyFirstFunctionType<*>,
+maybeOne: QueryMaybeOneFunctionType<*>,
+maybeOneFirst: QueryMaybeOneFirstFunctionType<*>,
+one: QueryOneFunctionType<*>,
+oneFirst: QueryOneFirstFunctionType<*>,
+query: QueryFunctionType<*>
|};
export type DatabaseTransactionConnectionType = {|
...CommonQueryMethodsType
|};
export type TransactionFunctionType = (connection: DatabaseTransactionConnectionType) => Promise<*>;
export type DatabasePoolConnectionType = {|
...CommonQueryMethodsType,
+transaction: (handler: TransactionFunctionType) => Promise<*>
|};
export type ConnectionRoutineType = (connection: DatabasePoolConnectionType) => Promise<*>;
export type DatabasePoolType = {|
...CommonQueryMethodsType,
+connect: (connectionRoutine: ConnectionRoutineType) => Promise<*>,
+transaction: (handler: TransactionFunctionType) => Promise<*>
|};
/**
* This appears to be the only sane way to have a generic database connection type
* that can be refined, i.e. DatabaseConnectionType => DatabasePoolType.
*/
export type DatabaseConnectionType =
$Shape<{
...DatabasePoolConnectionType,
...DatabasePoolType
}>;
type QueryResultRowColumnType = string | number;
export type QueryResultRowType = {
[key: string]: QueryResultRowColumnType
};
export type QueryType = {|
+sql: string,
+values?: $ReadOnlyArray<PrimitiveValueExpressionType>
|};
/**
* @property log Instance of Roarr logger with query execution context parameters.
* @property originalQuery A copy of the query before `transformQuery` middleware.
* @property queryId Unique query identifier.
* @property sharedContext A context shared between all interceptors. Use this to share information between interceptors.
*/
export type QueryExecutionContextType = {|
+log: LoggerType,
+originalQuery: QueryType,
+queryId: QueryIdType,
// eslint-disable-next-line flowtype/no-weak-types
+sharedContext: Object
|};
export type IdentifierTokenType = {|
names: $ReadOnlyArray<string>,
type: 'IDENTIFIER'
|};
export type RawSqlTokenType = {|
sql: string,
type: 'RAW_SQL',
values: $ReadOnlyArray<PrimitiveValueExpressionType>
|};
export type SetSqlTokenType = {|
members: $ReadOnlyArray<PrimitiveValueExpressionType>,
type: 'SET'
|};
export type MultisetSqlTokenType = {|
sets: $ReadOnlyArray<$ReadOnlyArray<PrimitiveValueExpressionType>>,
type: 'MULTISET'
|};
export type PrimitiveValueExpressionType = string | number | boolean | null;
export type ValueExpressionType =
PrimitiveValueExpressionType |
IdentifierTokenType |
RawSqlTokenType |
SetSqlTokenType |
MultisetSqlTokenType;
export type TaggledTemplateLiteralInvocationType = {|
+sql: string,
+values: $ReadOnlyArray<ValueExpressionType>
|};
export type InternalQueryMethodType<R> = (
log: LoggerType,
connection: InternalDatabaseConnectionType,
clientConfiguration: ClientConfigurationType,
sql: string,
values?: $ReadOnlyArray<PrimitiveValueExpressionType>,
uid?: QueryIdType
) => Promise<R>;
export type InternalQueryAnyFirstFunctionType = InternalQueryMethodType<$ReadOnlyArray<QueryResultRowColumnType>>;
export type InternalQueryAnyFunctionType = InternalQueryMethodType<$ReadOnlyArray<QueryResultRowType>>;
export type InternalQueryFunctionType<T: QueryResultRowType> = InternalQueryMethodType<QueryResultType<T>>;
export type InternalQueryManyFirstFunctionType = InternalQueryMethodType<$ReadOnlyArray<QueryResultRowColumnType>>;
export type InternalQueryManyFunctionType = InternalQueryMethodType<$ReadOnlyArray<QueryResultRowType>>;
export type InternalQueryMaybeOneFirstFunctionType = InternalQueryMethodType<QueryResultRowColumnType | null>;
export type InternalQueryMaybeOneFunctionType = InternalQueryMethodType<QueryResultRowType | null>;
export type InternalQueryOneFirstFunctionType = InternalQueryMethodType<QueryResultRowColumnType>;
export type InternalQueryOneFunctionType = InternalQueryMethodType<QueryResultRowType>;
export type InternalTransactionFunctionType = (
log: LoggerType,
connection: InternalDatabaseConnectionType,
clientConfiguration: ClientConfigurationType,
handler: TransactionFunctionType
) => Promise<*>;
type QueryMethodType<R> = (
sql: TaggledTemplateLiteralInvocationType,
values?: $ReadOnlyArray<PrimitiveValueExpressionType>
) => Promise<R>;
export type QueryAnyFirstFunctionType<T: QueryResultRowColumnType> = QueryMethodType<$ReadOnlyArray<T>>;
export type QueryAnyFunctionType<T: QueryResultRowType> = QueryMethodType<$ReadOnlyArray<T>>;
export type QueryFunctionType<T: QueryResultRowType> = QueryMethodType<T>;
export type QueryManyFirstFunctionType<T: QueryResultRowColumnType> = QueryMethodType<$ReadOnlyArray<T>>;
export type QueryManyFunctionType<T: QueryResultRowType> = QueryMethodType<$ReadOnlyArray<T>>;
export type QueryMaybeOneFirstFunctionType<T: QueryResultRowColumnType> = QueryMethodType<T>;
export type QueryMaybeOneFunctionType<T: QueryResultRowType | null> = QueryMethodType<T>;
export type QueryOneFirstFunctionType<T: QueryResultRowColumnType> = QueryMethodType<T>;
export type QueryOneFunctionType<T: QueryResultRowType> = QueryMethodType<T>;
export type InterceptorType = {|
+afterPoolConnection?: (connection: DatabasePoolConnectionType) => MaybePromiseType<void>,
+afterQueryExecution?: (
queryExecutionContext: QueryExecutionContextType,
query: QueryType,
result: QueryResultType<QueryResultRowType>
) => MaybePromiseType<QueryResultType<QueryResultRowType>>,
+beforePoolConnectionRelease?: (connection: DatabasePoolConnectionType) => MaybePromiseType<void>,
+beforeQueryExecution?: (
queryExecutionContext: QueryExecutionContextType,
query: QueryType
) => MaybePromiseType<QueryResultType<QueryResultRowType>> | MaybePromiseType<void>,
+transformQuery?: (
queryExecutionContext: QueryExecutionContextType,
query: QueryType
) => MaybePromiseType<QueryType>
|};