@@ -32,54 +32,65 @@ export interface MongoBinaryOpts {
32
32
export default class MongoBinary {
33
33
static cache : MongoBinaryCache = { } ;
34
34
35
+ /**
36
+ * Probe if the provided "systemBinary" is an existing path
37
+ * @param systemBinary The Path to probe for an System-Binary
38
+ * @return System Binary path or empty string
39
+ */
35
40
static async getSystemPath ( systemBinary : string ) : Promise < string > {
36
41
let binaryPath = '' ;
37
42
38
43
try {
39
44
await promisify ( fs . access ) ( systemBinary ) ;
40
45
41
- log ( `MongoBinary: found sytem binary path at ${ systemBinary } ` ) ;
46
+ log ( `MongoBinary: found sytem binary path at " ${ systemBinary } " ` ) ;
42
47
binaryPath = systemBinary ;
43
48
} catch ( err ) {
44
- log ( `MongoBinary: can't find system binary at ${ systemBinary } . ${ err . message } ` ) ;
49
+ log ( `MongoBinary: can't find system binary at " ${ systemBinary } ".\n ${ err . message } ` ) ;
45
50
}
46
51
47
52
return binaryPath ;
48
53
}
49
54
50
- static async getCachePath ( version : string ) : Promise < string > {
55
+ /**
56
+ * Check if specified version already exists in the cache
57
+ * @param version The Version to check for
58
+ */
59
+ static getCachePath ( version : string ) : string {
51
60
return this . cache [ version ] ;
52
61
}
53
62
63
+ /**
64
+ * Probe download path and download the binary
65
+ * @param options Options Configuring which binary to download and to which path
66
+ * @returns The BinaryPath the binary has been downloaded to
67
+ */
54
68
static async getDownloadPath ( options : Required < MongoBinaryOpts > ) : Promise < string > {
55
69
const { downloadDir, platform, arch, version, checkMD5 } = options ;
56
- // create downloadDir if not exists
70
+ // create downloadDir
57
71
await mkdirp ( downloadDir ) ;
58
72
73
+ /** Lockfile path */
59
74
const lockfile = path . resolve ( downloadDir , `${ version } .lock` ) ;
60
- // wait lock
75
+ // wait to get a lock
61
76
await new Promise ( ( resolve , reject ) => {
62
77
LockFile . lock (
63
78
lockfile ,
64
79
{
65
- wait : 120000 ,
80
+ wait : 1000 * 12 , // 120 seconds
66
81
pollPeriod : 100 ,
67
- stale : 110000 ,
82
+ stale : 1000 * 11 , // 110 seconds
68
83
retries : 3 ,
69
84
retryWait : 100 ,
70
85
} ,
71
86
( err : any ) => {
72
- if ( err ) {
73
- reject ( err ) ;
74
- } else {
75
- resolve ( ) ;
76
- }
87
+ return err ? reject ( err ) : resolve ( ) ;
77
88
}
78
89
) ;
79
90
} ) ;
80
91
81
- // again check cache, maybe other instance resolve it
82
- if ( ! this . cache [ version ] ) {
92
+ // check cache if it got already added to the cache
93
+ if ( ! this . getCachePath ( version ) ) {
83
94
const downloader = new MongoBinaryDownload ( {
84
95
downloadDir,
85
96
platform,
@@ -90,16 +101,22 @@ export default class MongoBinary {
90
101
this . cache [ version ] = await downloader . getMongodPath ( ) ;
91
102
}
92
103
// remove lock
93
- LockFile . unlock ( lockfile , ( err : any ) => {
104
+ LockFile . unlock ( lockfile , ( err ) => {
94
105
log (
95
106
err
96
107
? `MongoBinary: Error when removing download lock ${ err } `
97
108
: `MongoBinary: Download lock removed`
98
109
) ;
99
110
} ) ;
100
- return this . cache [ version ] ;
111
+ return this . getCachePath ( version ) ;
101
112
}
102
113
114
+ /**
115
+ * Probe all supported paths for an binary and return the binary path
116
+ * @param opts Options configuring which binary to search for
117
+ * @throws {Error } if no valid BinaryPath has been found
118
+ * @return The first found BinaryPath
119
+ */
103
120
static async getPath ( opts : MongoBinaryOpts = { } ) : Promise < string > {
104
121
const legacyDLDir = path . resolve ( os . homedir ( ) , '.cache/mongodb-binaries' ) ;
105
122
@@ -109,6 +126,7 @@ export default class MongoBinary {
109
126
nodeModulesDLDir = path . resolve ( nodeModulesDLDir , '..' , '..' ) ;
110
127
}
111
128
129
+ // "||" is still used here, because it should default if the value is false-y (like an empty string)
112
130
const defaultOptions = {
113
131
downloadDir :
114
132
resolveConfig ( 'DOWNLOAD_DIR' ) ||
@@ -128,17 +146,16 @@ export default class MongoBinary {
128
146
checkMD5 : envToBool ( resolveConfig ( 'MD5_CHECK' ) ?? '' ) ,
129
147
} ;
130
148
149
+ /** Provided Options combined with the Default Options */
131
150
const options = { ...defaultOptions , ...opts } ;
132
- log ( `MongoBinary options: ${ JSON . stringify ( options ) } ` ) ;
133
-
134
- const { version, systemBinary } = options ;
151
+ log ( `MongoBinary options:` , JSON . stringify ( options , null , 2 ) ) ;
135
152
136
153
let binaryPath = '' ;
137
154
138
- if ( systemBinary ) {
139
- binaryPath = await this . getSystemPath ( systemBinary ) ;
155
+ if ( options . systemBinary ) {
156
+ binaryPath = await this . getSystemPath ( options . systemBinary ) ;
140
157
if ( binaryPath ) {
141
- if ( ~ binaryPath . indexOf ( ' ' ) ) {
158
+ if ( binaryPath . indexOf ( ' ' ) >= 0 ) {
142
159
binaryPath = `"${ binaryPath } "` ;
143
160
}
144
161
@@ -147,30 +164,40 @@ export default class MongoBinary {
147
164
. split ( '\n' ) [ 0 ]
148
165
. split ( ' ' ) [ 2 ] ;
149
166
150
- if ( version !== LATEST_VERSION && version !== binaryVersion ) {
167
+ if ( options . version !== LATEST_VERSION && options . version !== binaryVersion ) {
151
168
// we will log the version number of the system binary and the version requested so the user can see the difference
152
169
log (
153
170
'MongoMemoryServer: Possible version conflict\n' +
154
171
` SystemBinary version: ${ binaryVersion } \n` +
155
- ` Requested version: ${ version } \n\n` +
172
+ ` Requested version: ${ options . version } \n\n` +
156
173
' Using SystemBinary!'
157
174
) ;
158
175
}
159
176
}
160
177
}
161
178
162
179
if ( ! binaryPath ) {
163
- binaryPath = await this . getCachePath ( version ) ;
180
+ binaryPath = this . getCachePath ( options . version ) ;
164
181
}
165
182
166
183
if ( ! binaryPath ) {
167
184
binaryPath = await this . getDownloadPath ( options ) ;
168
185
}
169
186
170
- log ( `MongoBinary: Mongod binary path: ${ binaryPath } ` ) ;
187
+ if ( ! binaryPath ) {
188
+ throw new Error (
189
+ `MongoBinary.getPath: could not find an valid binary path! (Got: "${ binaryPath } ")`
190
+ ) ;
191
+ }
192
+
193
+ log ( `MongoBinary: Mongod binary path: "${ binaryPath } "` ) ;
171
194
return binaryPath ;
172
195
}
173
196
197
+ /**
198
+ * Purpose unkown, not used anywhere
199
+ * @param files Array of Strings
200
+ */
174
201
static hasValidBinPath ( files : string [ ] ) : boolean {
175
202
if ( files . length === 1 ) {
176
203
return true ;
0 commit comments