|
| 1 | +/** |
| 2 | + * Copyright (c) Facebook, Inc. and its affiliates. |
| 3 | + * |
| 4 | + * This source code is licensed under the MIT license found in the |
| 5 | + * LICENSE file in the root directory of this source tree. |
| 6 | + * |
| 7 | + * @flow |
| 8 | + */ |
| 9 | + |
| 10 | +import type {Wakeable} from 'shared/ReactTypes'; |
| 11 | + |
| 12 | +import {unstable_getCacheForType} from 'react'; |
| 13 | +import {Pool as PostgresPool} from 'pg'; |
| 14 | +import {prepareValue} from 'pg/lib/utils'; |
| 15 | + |
| 16 | +const Pending = 0; |
| 17 | +const Resolved = 1; |
| 18 | +const Rejected = 2; |
| 19 | + |
| 20 | +type PendingResult = {| |
| 21 | + status: 0, |
| 22 | + value: Wakeable, |
| 23 | +|}; |
| 24 | + |
| 25 | +type ResolvedResult = {| |
| 26 | + status: 1, |
| 27 | + value: mixed, |
| 28 | +|}; |
| 29 | + |
| 30 | +type RejectedResult = {| |
| 31 | + status: 2, |
| 32 | + value: mixed, |
| 33 | +|}; |
| 34 | + |
| 35 | +type Result = PendingResult | ResolvedResult | RejectedResult; |
| 36 | + |
| 37 | +function toResult(thenable): Result { |
| 38 | + const result: Result = { |
| 39 | + status: Pending, |
| 40 | + value: thenable, |
| 41 | + }; |
| 42 | + thenable.then( |
| 43 | + value => { |
| 44 | + if (result.status === Pending) { |
| 45 | + const resolvedResult = ((result: any): ResolvedResult); |
| 46 | + resolvedResult.status = Resolved; |
| 47 | + resolvedResult.value = value; |
| 48 | + } |
| 49 | + }, |
| 50 | + err => { |
| 51 | + if (result.status === Pending) { |
| 52 | + const rejectedResult = ((result: any): RejectedResult); |
| 53 | + rejectedResult.status = Rejected; |
| 54 | + rejectedResult.value = err; |
| 55 | + } |
| 56 | + }, |
| 57 | + ); |
| 58 | + return result; |
| 59 | +} |
| 60 | + |
| 61 | +function readResult(result: Result) { |
| 62 | + if (result.status === Resolved) { |
| 63 | + return result.value; |
| 64 | + } else { |
| 65 | + throw result.value; |
| 66 | + } |
| 67 | +} |
| 68 | + |
| 69 | +export function Pool(options: mixed) { |
| 70 | + this.pool = new PostgresPool(options); |
| 71 | + // Unique function per instance because it's used for cache identity. |
| 72 | + this.createResultMap = function() { |
| 73 | + return new Map(); |
| 74 | + }; |
| 75 | +} |
| 76 | + |
| 77 | +Pool.prototype.query = function(query: string, values?: Array<mixed>) { |
| 78 | + const pool = this.pool; |
| 79 | + const outerMap = unstable_getCacheForType(this.createResultMap); |
| 80 | + |
| 81 | + let innerMap: Map<any, any> = outerMap; |
| 82 | + let key = query; |
| 83 | + if (values != null) { |
| 84 | + // If we have parameters, each becomes as a nesting layer for Maps. |
| 85 | + // We want to find (or create as needed) the innermost Map, and return that. |
| 86 | + for (let i = 0; i < values.length; i++) { |
| 87 | + let nextMap = innerMap.get(key); |
| 88 | + if (nextMap === undefined) { |
| 89 | + nextMap = new Map(); |
| 90 | + innerMap.set(key, nextMap); |
| 91 | + } |
| 92 | + innerMap = nextMap; |
| 93 | + // Postgres bindings convert everything to strings: |
| 94 | + // https://node-postgres.com/features/queries#parameterized-query |
| 95 | + // We reuse their algorithm instead of reimplementing. |
| 96 | + key = prepareValue(values[i]); |
| 97 | + } |
| 98 | + } |
| 99 | + |
| 100 | + let entry: Result | void = innerMap.get(key); |
| 101 | + if (!entry) { |
| 102 | + const thenable = pool.query(query, values); |
| 103 | + entry = toResult(thenable); |
| 104 | + innerMap.set(key, entry); |
| 105 | + } |
| 106 | + return readResult(entry); |
| 107 | +}; |
0 commit comments