Fix let-bug in Resources.unref() caught by ES6 (another was fixed previously)
[jst_server.git] / Resources.mjs
1 /*
2  * Copyright (C) 2018-2022 Nick Downing <nick@ndcode.org>
3  * SPDX-License-Identifier: MIT
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy
6  * of this software and associated documentation files (the "Software"), to
7  * deal in the Software without restriction, including without limitation the
8  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9  * sell copies of the Software, and to permit persons to whom the Software is
10  * furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  */
23
24 import assert from 'assert'
25
26 class Resources {
27   constructor(diag) {
28     this.map = new Map()
29     this.diag = diag || false
30   }
31
32   async ref(key, factory_func, destroy_func) {
33     let result = this.map.get(key)
34     if (result === undefined) {
35       result = {
36         refs: 0,
37         value: factory_func(), // don't await it here
38         destroy_func: destroy_func
39       }
40       this.map.set(key, result)
41     }
42     result.refs += 1
43     if (this.diag)
44       console.log(`ref ${key} refs -> ${result.refs}`)
45     let value
46     try {
47       value = await result.value
48     }
49     catch (err) {
50       result.refs -= 1
51       console.log(`err ${key} refs-> ${result.refs}`)
52       if (result.refs === 0)
53         this.map.delete(key)
54       throw err
55     }
56     return value
57   }
58
59   async unref(key) {
60     let result = this.map.get(key)
61     assert(result !== undefined && result.refs > 0)
62     result.refs -= 1
63     if (this.diag)
64       console.log(`unref ${key} refs -> ${result.refs}`)
65     if (result.refs === 0) {
66       this.map.delete(key)
67       if (result.destroy_func !== undefined)
68         try {
69           await result.destroy_func(await result.value)
70         }
71         catch (err) {
72           console.error(err.stack || err.message)
73         }
74     }
75   }
76 }
77
78 export default Resources