Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-08-30 22:50:52 +0400
committerisaacs <i@izs.me>2012-08-30 22:50:52 +0400
commitd02e2bdba1f8684905ba591c42a5ede87ed4becf (patch)
treecc1f3896852fb28f6b103b311cc70349b9f61e19 /node_modules/fstream
parentd801c98c853f0ec2604b0ada8886c073f49ee713 (diff)
fstream@0.1.19
Diffstat (limited to 'node_modules/fstream')
-rw-r--r--node_modules/fstream/examples/filter-pipe.js131
-rw-r--r--node_modules/fstream/examples/pipe.js115
-rw-r--r--node_modules/fstream/examples/reader.js54
-rw-r--r--node_modules/fstream/examples/symlink-write.js24
-rw-r--r--node_modules/fstream/lib/abstract.js4
-rw-r--r--node_modules/fstream/lib/dir-reader.js1
-rw-r--r--node_modules/fstream/package.json17
7 files changed, 332 insertions, 14 deletions
diff --git a/node_modules/fstream/examples/filter-pipe.js b/node_modules/fstream/examples/filter-pipe.js
new file mode 100644
index 000000000..c6b55b3e0
--- /dev/null
+++ b/node_modules/fstream/examples/filter-pipe.js
@@ -0,0 +1,131 @@
+var fstream = require("../fstream.js")
+var path = require("path")
+
+var r = fstream.Reader({ path: path.dirname(__dirname)
+ , filter: function () {
+ return !this.basename.match(/^\./) &&
+ !this.basename.match(/^node_modules$/)
+ !this.basename.match(/^deep-copy$/)
+ !this.basename.match(/^filter-copy$/)
+ }
+ })
+
+// this writer will only write directories
+var w = fstream.Writer({ path: path.resolve(__dirname, "filter-copy")
+ , type: "Directory"
+ , filter: function () {
+ return this.type === "Directory"
+ }
+ })
+
+var indent = ""
+var escape = {}
+
+r.on("entry", appears)
+r.on("ready", function () {
+ console.error("ready to begin!", r.path)
+})
+
+function appears (entry) {
+ console.error(indent + "a %s appears!", entry.type, entry.basename, typeof entry.basename)
+ if (foggy) {
+ console.error("FOGGY!")
+ var p = entry
+ do {
+ console.error(p.depth, p.path, p._paused)
+ } while (p = p.parent)
+
+ throw new Error("\033[mshould not have entries while foggy")
+ }
+ indent += "\t"
+ entry.on("data", missile(entry))
+ entry.on("end", runaway(entry))
+ entry.on("entry", appears)
+}
+
+var foggy
+function missile (entry) {
+ if (entry.type === "Directory") {
+ var ended = false
+ entry.once("end", function () { ended = true })
+ return function (c) {
+ // throw in some pathological pause()/resume() behavior
+ // just for extra fun.
+ process.nextTick(function () {
+ if (!foggy && !ended) { // && Math.random() < 0.3) {
+ console.error(indent +"%s casts a spell", entry.basename)
+ console.error("\na slowing fog comes over the battlefield...\n\033[32m")
+ entry.pause()
+ entry.once("resume", liftFog)
+ foggy = setTimeout(liftFog, 1000)
+
+ function liftFog (who) {
+ if (!foggy) return
+ if (who) {
+ console.error("%s breaks the spell!", who && who.path)
+ } else {
+ console.error("the spell expires!")
+ }
+ console.error("\033[mthe fog lifts!\n")
+ clearTimeout(foggy)
+ foggy = null
+ if (entry._paused) entry.resume()
+ }
+
+ }
+ })
+ }
+ }
+
+ return function (c) {
+ var e = Math.random() < 0.5
+ console.error(indent + "%s %s for %d damage!",
+ entry.basename,
+ e ? "is struck" : "fires a chunk",
+ c.length)
+ }
+}
+
+function runaway (entry) { return function () {
+ var e = Math.random() < 0.5
+ console.error(indent + "%s %s",
+ entry.basename,
+ e ? "turns to flee" : "is vanquished!")
+ indent = indent.slice(0, -1)
+}}
+
+
+w.on("entry", attacks)
+//w.on("ready", function () { attacks(w) })
+function attacks (entry) {
+ console.error(indent + "%s %s!", entry.basename,
+ entry.type === "Directory" ? "calls for backup" : "attacks")
+ entry.on("entry", attacks)
+}
+
+ended = false
+var i = 1
+r.on("end", function () {
+ if (foggy) clearTimeout(foggy)
+ console.error("\033[mIT'S OVER!!")
+ console.error("A WINNAR IS YOU!")
+
+ console.log("ok " + (i ++) + " A WINNAR IS YOU")
+ ended = true
+ // now go through and verify that everything in there is a dir.
+ var p = path.resolve(__dirname, "filter-copy")
+ var checker = fstream.Reader({ path: p })
+ checker.checker = true
+ checker.on("child", function (e) {
+ var ok = e.type === "Directory"
+ console.log((ok ? "" : "not ") + "ok " + (i ++) +
+ " should be a dir: " +
+ e.path.substr(checker.path.length + 1))
+ })
+})
+
+process.on("exit", function () {
+ console.log((ended ? "" : "not ") + "ok " + (i ++) + " ended")
+})
+
+r.pipe(w)
diff --git a/node_modules/fstream/examples/pipe.js b/node_modules/fstream/examples/pipe.js
new file mode 100644
index 000000000..648ec8493
--- /dev/null
+++ b/node_modules/fstream/examples/pipe.js
@@ -0,0 +1,115 @@
+var fstream = require("../fstream.js")
+var path = require("path")
+
+var r = fstream.Reader({ path: path.dirname(__dirname)
+ , filter: function () {
+ return !this.basename.match(/^\./) &&
+ !this.basename.match(/^node_modules$/)
+ !this.basename.match(/^deep-copy$/)
+ }
+ })
+
+var w = fstream.Writer({ path: path.resolve(__dirname, "deep-copy")
+ , type: "Directory"
+ })
+
+var indent = ""
+var escape = {}
+
+r.on("entry", appears)
+r.on("ready", function () {
+ console.error("ready to begin!", r.path)
+})
+
+function appears (entry) {
+ console.error(indent + "a %s appears!", entry.type, entry.basename, typeof entry.basename, entry)
+ if (foggy) {
+ console.error("FOGGY!")
+ var p = entry
+ do {
+ console.error(p.depth, p.path, p._paused)
+ } while (p = p.parent)
+
+ throw new Error("\033[mshould not have entries while foggy")
+ }
+ indent += "\t"
+ entry.on("data", missile(entry))
+ entry.on("end", runaway(entry))
+ entry.on("entry", appears)
+}
+
+var foggy
+function missile (entry) {
+ if (entry.type === "Directory") {
+ var ended = false
+ entry.once("end", function () { ended = true })
+ return function (c) {
+ // throw in some pathological pause()/resume() behavior
+ // just for extra fun.
+ process.nextTick(function () {
+ if (!foggy && !ended) { // && Math.random() < 0.3) {
+ console.error(indent +"%s casts a spell", entry.basename)
+ console.error("\na slowing fog comes over the battlefield...\n\033[32m")
+ entry.pause()
+ entry.once("resume", liftFog)
+ foggy = setTimeout(liftFog, 10)
+
+ function liftFog (who) {
+ if (!foggy) return
+ if (who) {
+ console.error("%s breaks the spell!", who && who.path)
+ } else {
+ console.error("the spell expires!")
+ }
+ console.error("\033[mthe fog lifts!\n")
+ clearTimeout(foggy)
+ foggy = null
+ if (entry._paused) entry.resume()
+ }
+
+ }
+ })
+ }
+ }
+
+ return function (c) {
+ var e = Math.random() < 0.5
+ console.error(indent + "%s %s for %d damage!",
+ entry.basename,
+ e ? "is struck" : "fires a chunk",
+ c.length)
+ }
+}
+
+function runaway (entry) { return function () {
+ var e = Math.random() < 0.5
+ console.error(indent + "%s %s",
+ entry.basename,
+ e ? "turns to flee" : "is vanquished!")
+ indent = indent.slice(0, -1)
+}}
+
+
+w.on("entry", attacks)
+//w.on("ready", function () { attacks(w) })
+function attacks (entry) {
+ console.error(indent + "%s %s!", entry.basename,
+ entry.type === "Directory" ? "calls for backup" : "attacks")
+ entry.on("entry", attacks)
+}
+
+ended = false
+r.on("end", function () {
+ if (foggy) clearTimeout(foggy)
+ console.error("\033[mIT'S OVER!!")
+ console.error("A WINNAR IS YOU!")
+
+ console.log("ok 1 A WINNAR IS YOU")
+ ended = true
+})
+
+process.on("exit", function () {
+ console.log((ended ? "" : "not ") + "ok 2 ended")
+})
+
+r.pipe(w)
diff --git a/node_modules/fstream/examples/reader.js b/node_modules/fstream/examples/reader.js
new file mode 100644
index 000000000..9aa1a9538
--- /dev/null
+++ b/node_modules/fstream/examples/reader.js
@@ -0,0 +1,54 @@
+var fstream = require("../fstream.js")
+var tap = require("tap")
+var fs = require("fs")
+var path = require("path")
+var children = -1
+var dir = path.dirname(__dirname)
+
+var gotReady = false
+var ended = false
+
+tap.test("reader test", function (t) {
+
+ var r = fstream.Reader({ path: dir
+ , filter: function () {
+ // return this.parent === r
+ return this.parent === r || this === r
+ }
+ })
+
+ r.on("ready", function () {
+ gotReady = true
+ children = fs.readdirSync(dir).length
+ console.error("Setting expected children to "+children)
+ t.equal(r.type, "Directory", "should be a directory")
+ })
+
+ r.on("entry", function (entry) {
+ children --
+ if (!gotReady) {
+ t.fail("children before ready!")
+ }
+ t.equal(entry.dirname, r.path, "basename is parent dir")
+ })
+
+ r.on("error", function (er) {
+ t.fail(er)
+ t.end()
+ process.exit(1)
+ })
+
+ r.on("end", function () {
+ t.equal(children, 0, "should have seen all children")
+ ended = true
+ })
+
+ var closed = false
+ r.on("close", function () {
+ t.ok(ended, "saw end before close")
+ t.notOk(closed, "close should only happen once")
+ closed = true
+ t.end()
+ })
+
+})
diff --git a/node_modules/fstream/examples/symlink-write.js b/node_modules/fstream/examples/symlink-write.js
new file mode 100644
index 000000000..d7816d24d
--- /dev/null
+++ b/node_modules/fstream/examples/symlink-write.js
@@ -0,0 +1,24 @@
+var fstream = require("../fstream.js")
+ , closed = false
+
+fstream
+ .Writer({ path: "path/to/symlink"
+ , linkpath: "./file"
+ , isSymbolicLink: true
+ , mode: "0755" // octal strings supported
+ })
+ .on("close", function () {
+ closed = true
+ var fs = require("fs")
+ var s = fs.lstatSync("path/to/symlink")
+ var isSym = s.isSymbolicLink()
+ console.log((isSym?"":"not ") +"ok 1 should be symlink")
+ var t = fs.readlinkSync("path/to/symlink")
+ var isTarget = t === "./file"
+ console.log((isTarget?"":"not ") +"ok 2 should link to ./file")
+ })
+ .end()
+
+process.on("exit", function () {
+ console.log((closed?"":"not ")+"ok 3 should be closed")
+})
diff --git a/node_modules/fstream/lib/abstract.js b/node_modules/fstream/lib/abstract.js
index 5675d4a1b..11ef0e28f 100644
--- a/node_modules/fstream/lib/abstract.js
+++ b/node_modules/fstream/lib/abstract.js
@@ -54,9 +54,7 @@ Abstract.prototype.warn = function (msg, code) {
}
Abstract.prototype.info = function (msg, code) {
- var me = this
- if (!me.listeners("info")) return
- me.emit("info", msg, code)
+ this.emit("info", msg, code)
}
Abstract.prototype.error = function (msg, code, th) {
diff --git a/node_modules/fstream/lib/dir-reader.js b/node_modules/fstream/lib/dir-reader.js
index 6a418c0bc..dd9883b22 100644
--- a/node_modules/fstream/lib/dir-reader.js
+++ b/node_modules/fstream/lib/dir-reader.js
@@ -135,6 +135,7 @@ DirReader.prototype._read = function () {
if (entry._paused) entry.once("resume", function () {
me.emit("entryStat", entry, props)
})
+ else me.emit("entryStat", entry, props)
})
entry.on("ready", function EMITCHILD () {
diff --git a/node_modules/fstream/package.json b/node_modules/fstream/package.json
index 2be498e09..7091e17e1 100644
--- a/node_modules/fstream/package.json
+++ b/node_modules/fstream/package.json
@@ -6,7 +6,7 @@
},
"name": "fstream",
"description": "Advanced file system stream things",
- "version": "0.1.18",
+ "version": "0.1.19",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/fstream.git"
@@ -28,15 +28,10 @@
"test": "tap examples/*.js"
},
"license": "BSD",
- "_npmUser": {
- "name": "isaacs",
- "email": "i@izs.me"
+ "readme": "Like FS streams, but with stat on them, and supporting directories and\nsymbolic links, as well as normal files. Also, you can use this to set\nthe stats on a file, even if you don't change its contents, or to create\na symlink, etc.\n\nSo, for example, you can \"write\" a directory, and it'll call `mkdir`. You\ncan specify a uid and gid, and it'll call `chown`. You can specify a\n`mtime` and `atime`, and it'll call `utimes`. You can call it a symlink\nand provide a `linkpath` and it'll call `symlink`.\n\nNote that it won't automatically resolve symbolic links. So, if you\ncall `fstream.Reader('/some/symlink')` then you'll get an object\nthat stats and then ends immediately (since it has no data). To follow\nsymbolic links, do this: `fstream.Reader({path:'/some/symlink', follow:\ntrue })`.\n\nThere are various checks to make sure that the bytes emitted are the\nsame as the intended size, if the size is set.\n\n## Examples\n\n```javascript\nfstream\n .Writer({ path: \"path/to/file\"\n , mode: 0755\n , size: 6\n })\n .write(\"hello\\n\")\n .end()\n```\n\nThis will create the directories if they're missing, and then write\n`hello\\n` into the file, chmod it to 0755, and assert that 6 bytes have\nbeen written when it's done.\n\n```javascript\nfstream\n .Writer({ path: \"path/to/file\"\n , mode: 0755\n , size: 6\n , flags: \"a\"\n })\n .write(\"hello\\n\")\n .end()\n```\n\nYou can pass flags in, if you want to append to a file.\n\n```javascript\nfstream\n .Writer({ path: \"path/to/symlink\"\n , linkpath: \"./file\"\n , SymbolicLink: true\n , mode: \"0755\" // octal strings supported\n })\n .end()\n```\n\nIf isSymbolicLink is a function, it'll be called, and if it returns\ntrue, then it'll treat it as a symlink. If it's not a function, then\nany truish value will make a symlink, or you can set `type:\n'SymbolicLink'`, which does the same thing.\n\nNote that the linkpath is relative to the symbolic link location, not\nthe parent dir or cwd.\n\n```javascript\nfstream\n .Reader(\"path/to/dir\")\n .pipe(fstream.Writer(\"path/to/other/dir\"))\n```\n\nThis will do like `cp -Rp path/to/dir path/to/other/dir`. If the other\ndir exists and isn't a directory, then it'll emit an error. It'll also\nset the uid, gid, mode, etc. to be identical. In this way, it's more\nlike `rsync -a` than simply a copy.\n",
+ "_id": "fstream@0.1.19",
+ "dist": {
+ "shasum": "0ff93e775ff9a6b847666e0241604c13093469c4"
},
- "_id": "fstream@0.1.18",
- "optionalDependencies": {},
- "_engineSupported": true,
- "_npmVersion": "1.1.13",
- "_nodeVersion": "v0.7.7-pre",
- "_defaultsLoaded": true,
- "_from": "fstream@~0.1.17"
+ "_from": "../fstream"
}