microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/common/node/fileSystem.ts
227lines · modeblame
3fb37ad5unknown10 years ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. | |
| 3 | | |
aab2095edigeff10 years ago | 4 | import * as nodeFs from "fs"; |
bc7a32ceJimmy Thomson10 years ago | 5 | import * as path from "path"; |
3fb37ad5unknown10 years ago | 6 | import * as Q from "q"; |
| 7 | | |
| 8 | export class FileSystem { | |
aab2095edigeff10 years ago | 9 | private fs: typeof nodeFs; |
| 10 | | |
| 11 | constructor({ fs = nodeFs } = {}) { | |
| 12 | this.fs = fs; | |
| 13 | } | |
3fb37ad5unknown10 years ago | 14 | |
| 15 | public ensureDirectory(dir: string): Q.Promise<void> { | |
aab2095edigeff10 years ago | 16 | return Q.nfcall(this.fs.stat, dir).then((stat: nodeFs.Stats): void => { |
3fb37ad5unknown10 years ago | 17 | if (stat.isDirectory()) { |
| 18 | return; | |
| 19 | } | |
b3a793eeNisheet Jain10 years ago | 20 | throw new Error(`Expected ${dir} to be a directory`); |
d24fea86Joshua Skelton10 years ago | 21 | }, (err: Error & { code?: string }): Q.Promise<any> => { |
3fb37ad5unknown10 years ago | 22 | if (err && err.code === "ENOENT") { |
aab2095edigeff10 years ago | 23 | return Q.nfcall(this.fs.mkdir, dir); |
3fb37ad5unknown10 years ago | 24 | } |
b3a793eeNisheet Jain10 years ago | 25 | throw err; |
3fb37ad5unknown10 years ago | 26 | }); |
| 27 | } | |
| 28 | | |
| 29 | public ensureFileWithContents(file: string, contents: string): Q.Promise<void> { | |
aab2095edigeff10 years ago | 30 | return Q.nfcall(this.fs.stat, file).then((stat: nodeFs.Stats) => { |
3fb37ad5unknown10 years ago | 31 | if (!stat.isFile()) { |
| 32 | throw new Error(`Expected ${file} to be a file`); | |
| 33 | } | |
1e812de2dlebu10 years ago | 34 | |
| 35 | return this.readFile(file).then(existingContents => { | |
| 36 | if (contents !== existingContents) { | |
| 37 | return this.writeFile(file, contents); | |
| 38 | } | |
5c8365a6Artem Egorov8 years ago | 39 | return Q.resolve(void 0); |
1e812de2dlebu10 years ago | 40 | }); |
d24fea86Joshua Skelton10 years ago | 41 | }, (err: Error & { code?: string }): Q.Promise<any> => { |
3fb37ad5unknown10 years ago | 42 | if (err && err.code === "ENOENT") { |
aab2095edigeff10 years ago | 43 | return Q.nfcall(this.fs.writeFile, file, contents); |
3fb37ad5unknown10 years ago | 44 | } |
b3a793eeNisheet Jain10 years ago | 45 | throw err; |
3fb37ad5unknown10 years ago | 46 | }); |
| 47 | } | |
| 48 | | |
d24fea86Joshua Skelton10 years ago | 49 | /** |
| 50 | * Helper function to check if a file or directory exists | |
| 51 | */ | |
| 52 | public existsSync(filename: string) { | |
3fb37ad5unknown10 years ago | 53 | try { |
aab2095edigeff10 years ago | 54 | this.fs.statSync(filename); |
3fb37ad5unknown10 years ago | 55 | return true; |
| 56 | } catch (error) { | |
| 57 | return false; | |
| 58 | } | |
| 59 | } | |
| 60 | | |
2b1090f9Joshua Skelton10 years ago | 61 | /** |
| 62 | * Helper (asynchronous) function to check if a file or directory exists | |
| 63 | */ | |
| 64 | public exists(filename: string): Q.Promise<boolean> { | |
aab2095edigeff10 years ago | 65 | return Q.nfcall(this.fs.stat, filename) |
b031edc7digeff10 years ago | 66 | .then(function() { |
2b1090f9Joshua Skelton10 years ago | 67 | return Q.resolve(true); |
| 68 | }) | |
| 69 | .catch(function(err) { | |
| 70 | return Q.resolve(false); | |
51769beaJoshua Skelton10 years ago | 71 | }); |
2b1090f9Joshua Skelton10 years ago | 72 | } |
| 73 | | |
db80cd4eJimmy Thomson10 years ago | 74 | /** |
| 75 | * Helper async function to read the contents of a directory | |
| 76 | */ | |
| 77 | public readDir(directory: string): Q.Promise<string[]> { | |
aab2095edigeff10 years ago | 78 | return Q.nfcall<string[]>(this.fs.readdir, directory); |
db80cd4eJimmy Thomson10 years ago | 79 | } |
| 80 | | |
d24fea86Joshua Skelton10 years ago | 81 | /** |
| 82 | * Helper (synchronous) function to create a directory recursively | |
| 83 | */ | |
3d2b4b71Joshua Skelton10 years ago | 84 | public makeDirectoryRecursiveSync(dirPath: string): void { |
d24fea86Joshua Skelton10 years ago | 85 | let parentPath = path.dirname(dirPath); |
| 86 | if (!this.existsSync(parentPath)) { | |
3d2b4b71Joshua Skelton10 years ago | 87 | this.makeDirectoryRecursiveSync(parentPath); |
d24fea86Joshua Skelton10 years ago | 88 | } |
| 89 | | |
aab2095edigeff10 years ago | 90 | this.fs.mkdirSync(dirPath); |
d24fea86Joshua Skelton10 years ago | 91 | } |
| 92 | | |
| 93 | /** | |
| 94 | * Helper function to asynchronously copy a file | |
| 95 | */ | |
2b1090f9Joshua Skelton10 years ago | 96 | public copyFile(from: string, to: string, encoding?: string): Q.Promise<void> { |
d8231ba2Joshua Skelton10 years ago | 97 | let deferred: Q.Deferred<void> = Q.defer<void>(); |
aab2095edigeff10 years ago | 98 | let destFile: nodeFs.WriteStream = this.fs.createWriteStream(to, { encoding: encoding }); |
| 99 | let srcFile: nodeFs.ReadStream = this.fs.createReadStream(from, { encoding: encoding }); | |
d24fea86Joshua Skelton10 years ago | 100 | destFile.on("finish", function(): void { |
2b1090f9Joshua Skelton10 years ago | 101 | deferred.resolve(void 0); |
d24fea86Joshua Skelton10 years ago | 102 | }); |
| 103 | | |
| 104 | destFile.on("error", function(e: Error): void { | |
| 105 | deferred.reject(e); | |
| 106 | }); | |
| 107 | | |
| 108 | srcFile.on("error", function(e: Error): void { | |
| 109 | deferred.reject(e); | |
| 110 | }); | |
| 111 | | |
| 112 | srcFile.pipe(destFile); | |
| 113 | return deferred.promise; | |
| 114 | } | |
| 115 | | |
3fb37ad5unknown10 years ago | 116 | public deleteFileIfExistsSync(filename: string) { |
d24fea86Joshua Skelton10 years ago | 117 | if (this.existsSync(filename)) { |
aab2095edigeff10 years ago | 118 | this.fs.unlinkSync(filename); |
3fb37ad5unknown10 years ago | 119 | } |
| 120 | } | |
| 121 | | |
5d4d4de0digeff10 years ago | 122 | public readFile(filename: string, encoding: string = "utf8"): Q.Promise<string> { |
aab2095edigeff10 years ago | 123 | return Q.nfcall<string>(this.fs.readFile, filename, encoding); |
3fb37ad5unknown10 years ago | 124 | } |
| 125 | | |
4677921cdigeff10 years ago | 126 | public writeFile(filename: string, data: any): Q.Promise<void> { |
aab2095edigeff10 years ago | 127 | return Q.nfcall<void>(this.fs.writeFile, filename, data); |
4677921cdigeff10 years ago | 128 | } |
bc7a32ceJimmy Thomson10 years ago | 129 | |
bc96b26bJimmy Thomson10 years ago | 130 | public unlink(filename: string): Q.Promise<void> { |
aab2095edigeff10 years ago | 131 | return Q.nfcall<void>(this.fs.unlink, filename); |
bc96b26bJimmy Thomson10 years ago | 132 | } |
| 133 | | |
4e7a6f0edlebu10 years ago | 134 | public mkDir(p: string): Q.Promise<void> { |
bc6696cbdigeff10 years ago | 135 | return Q.nfcall<void>(this.fs.mkdir, p); |
| 136 | } | |
| 137 | | |
27710197Vladimir Kotikov8 years ago | 138 | public stat(fsPath: string): Q.Promise<nodeFs.Stats> { |
| 139 | return Q.nfcall<nodeFs.Stats>(this.fs.stat, fsPath); | |
bc6696cbdigeff10 years ago | 140 | } |
| 141 | | |
| 142 | public directoryExists(directoryPath: string): Q.Promise<boolean> { | |
| 143 | return this.stat(directoryPath).then(stats => { | |
| 144 | return stats.isDirectory(); | |
| 145 | }).catch(reason => { | |
| 146 | return reason.code === "ENOENT" | |
| 147 | ? false | |
| 148 | : Q.reject<boolean>(reason); | |
| 149 | }); | |
| 150 | } | |
| 151 | | |
50241c19digeff10 years ago | 152 | |
| 153 | /** | |
| 154 | * Delete 'dirPath' if it's an empty folder. If not fail. | |
| 155 | * | |
| 156 | * @param {dirPath} path to the folder | |
| 157 | * @returns {void} Nothing | |
| 158 | */ | |
bc6696cbdigeff10 years ago | 159 | public rmdir(dirPath: string): Q.Promise<void> { |
| 160 | return Q.nfcall<void>(this.fs.rmdir, dirPath); | |
4e7a6f0edlebu10 years ago | 161 | } |
| 162 | | |
e7f5d062Joshua Skelton10 years ago | 163 | /** |
| 164 | * Recursively copy 'source' to 'target' asynchronously | |
| 165 | * | |
| 166 | * @param {string} source Location to copy from | |
| 167 | * @param {string} target Location to copy to | |
| 168 | * @returns {Q.Promise} A promise which is fulfilled when the copy completes, and is rejected on error | |
| 169 | */ | |
| 170 | public copyRecursive(source: string, target: string): Q.Promise<void> { | |
aab2095edigeff10 years ago | 171 | return Q.nfcall<nodeFs.Stats>(this.fs.stat, source).then(stats => { |
e7f5d062Joshua Skelton10 years ago | 172 | if (stats.isDirectory()) { |
5c8365a6Artem Egorov8 years ago | 173 | return this.exists(target) |
| 174 | .then(exists => { | |
| 175 | return exists ? void 0 : Q.nfcall<void>(this.fs.mkdir, target); | |
| 176 | }) | |
b031edc7digeff10 years ago | 177 | .then(() => { |
aab2095edigeff10 years ago | 178 | return Q.nfcall<string[]>(this.fs.readdir, source); |
b031edc7digeff10 years ago | 179 | }) |
| 180 | .then(contents => { | |
| 181 | Q.all(contents.map((childPath: string): Q.Promise<void> => { | |
| 182 | return this.copyRecursive(path.join(source, childPath), path.join(target, childPath)); | |
| 183 | })); | |
| 184 | }); | |
e7f5d062Joshua Skelton10 years ago | 185 | } else { |
| 186 | return this.copyFile(source, target); | |
| 187 | } | |
| 188 | }); | |
| 189 | } | |
| 190 | | |
4e7a6f0edlebu10 years ago | 191 | public removePathRecursivelyAsync(p: string): Q.Promise<void> { |
e7f5d062Joshua Skelton10 years ago | 192 | return this.exists(p).then(exists => { |
4e7a6f0edlebu10 years ago | 193 | if (exists) { |
aab2095edigeff10 years ago | 194 | return Q.nfcall<nodeFs.Stats>(this.fs.stat, p).then((stats: nodeFs.Stats) => { |
4e7a6f0edlebu10 years ago | 195 | if (stats.isDirectory()) { |
aab2095edigeff10 years ago | 196 | return Q.nfcall<string[]>(this.fs.readdir, p).then((childPaths: string[]) => { |
4e7a6f0edlebu10 years ago | 197 | let result = Q<void>(void 0); |
| 198 | childPaths.forEach(childPath => | |
| 199 | result = result.then<void>(() => this.removePathRecursivelyAsync(path.join(p, childPath)))); | |
| 200 | return result; | |
| 201 | }).then(() => | |
aab2095edigeff10 years ago | 202 | Q.nfcall<void>(this.fs.rmdir, p)); |
4e7a6f0edlebu10 years ago | 203 | } else { |
| 204 | /* file */ | |
aab2095edigeff10 years ago | 205 | return Q.nfcall<void>(this.fs.unlink, p); |
4e7a6f0edlebu10 years ago | 206 | } |
| 207 | }); | |
| 208 | } | |
5c8365a6Artem Egorov8 years ago | 209 | return Q.resolve(void 0); |
4e7a6f0edlebu10 years ago | 210 | }); |
| 211 | } | |
| 212 | | |
8ab8eac0dlebu10 years ago | 213 | public removePathRecursivelySync(p: string): void { |
aab2095edigeff10 years ago | 214 | if (this.fs.existsSync(p)) { |
| 215 | let stats = this.fs.statSync(p); | |
8ab8eac0dlebu10 years ago | 216 | if (stats.isDirectory()) { |
aab2095edigeff10 years ago | 217 | let contents = this.fs.readdirSync(p); |
8ab8eac0dlebu10 years ago | 218 | contents.forEach(childPath => |
| 219 | this.removePathRecursivelySync(path.join(p, childPath))); | |
aab2095edigeff10 years ago | 220 | this.fs.rmdirSync(p); |
8ab8eac0dlebu10 years ago | 221 | } else { |
| 222 | /* file */ | |
aab2095edigeff10 years ago | 223 | this.fs.unlinkSync(p); |
8ab8eac0dlebu10 years ago | 224 | } |
| 225 | } | |
| 226 | } | |
3fb37ad5unknown10 years ago | 227 | } |