mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-16 21:11:52 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
5
web/node_modules/stream-each/.travis.yml
generated
vendored
Normal file
5
web/node_modules/stream-each/.travis.yml
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- '0.10'
|
||||
- '0.12'
|
||||
- 'stable'
|
21
web/node_modules/stream-each/LICENSE
generated
vendored
Normal file
21
web/node_modules/stream-each/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Mathias Buus
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
41
web/node_modules/stream-each/README.md
generated
vendored
Normal file
41
web/node_modules/stream-each/README.md
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
# stream-each
|
||||
|
||||
Iterate all the data in a stream
|
||||
|
||||
```
|
||||
npm install stream-each
|
||||
```
|
||||
|
||||
[](http://travis-ci.org/mafintosh/stream-each)
|
||||
|
||||
## Usage
|
||||
|
||||
``` js
|
||||
var each = require('stream-each')
|
||||
|
||||
each(stream, function (data, next) {
|
||||
console.log('data from stream', data)
|
||||
// when ready to consume next chunk
|
||||
next()
|
||||
}, function (err) {
|
||||
console.log('no more data')
|
||||
})
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
#### `each(stream, iterator, cb)`
|
||||
|
||||
Iterate the data in the stream by calling the iterator function with `(data, next)`
|
||||
where data is a data chunk and next is a callback. Call next when you are ready to
|
||||
consume the next chunk. Optionally you can call next with an error to destroy the stream
|
||||
|
||||
When the stream ends/errors the callback is called if provided
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
|
||||
## Related
|
||||
|
||||
`stream-each` is part of the [mississippi stream utility collection](https://github.com/maxogden/mississippi) which includes more useful stream modules similar to this one.
|
7
web/node_modules/stream-each/collaborators.md
generated
vendored
Normal file
7
web/node_modules/stream-each/collaborators.md
generated
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
## Collaborators
|
||||
|
||||
stream-each is only possible due to the excellent work of the following collaborators:
|
||||
|
||||
<table><tbody><tr><th align="left">maxogden</th><td><a href="https://github.com/maxogden">GitHub/maxogden</a></td></tr>
|
||||
<tr><th align="left">mafintosh</th><td><a href="https://github.com/mafintosh">GitHub/mafintosh</a></td></tr>
|
||||
</tbody></table>
|
59
web/node_modules/stream-each/index.js
generated
vendored
Normal file
59
web/node_modules/stream-each/index.js
generated
vendored
Normal file
|
@ -0,0 +1,59 @@
|
|||
var eos = require('end-of-stream')
|
||||
var shift = require('stream-shift')
|
||||
|
||||
module.exports = each
|
||||
|
||||
function each (stream, fn, cb) {
|
||||
var want = true
|
||||
var error = null
|
||||
var ended = false
|
||||
var running = false
|
||||
var calling = false
|
||||
|
||||
stream.on('readable', onreadable)
|
||||
onreadable()
|
||||
|
||||
if (cb) eos(stream, {readable: true, writable: false}, done)
|
||||
return stream
|
||||
|
||||
function done (err) {
|
||||
if (!error) error = err
|
||||
ended = true
|
||||
if (!running) cb(error)
|
||||
}
|
||||
|
||||
function onreadable () {
|
||||
if (want) read()
|
||||
}
|
||||
|
||||
function afterRead (err) {
|
||||
running = false
|
||||
|
||||
if (err) {
|
||||
error = err
|
||||
if (ended) return cb(error)
|
||||
stream.destroy(err)
|
||||
return
|
||||
}
|
||||
if (ended) return cb(error)
|
||||
if (!calling) read()
|
||||
}
|
||||
|
||||
function read () {
|
||||
while (!running && !ended) {
|
||||
want = false
|
||||
|
||||
var data = shift(stream)
|
||||
if (ended) return
|
||||
if (data === null) {
|
||||
want = true
|
||||
return
|
||||
}
|
||||
|
||||
running = true
|
||||
calling = true
|
||||
fn(data, afterRead)
|
||||
calling = false
|
||||
}
|
||||
}
|
||||
}
|
29
web/node_modules/stream-each/package.json
generated
vendored
Normal file
29
web/node_modules/stream-each/package.json
generated
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"name": "stream-each",
|
||||
"version": "1.2.3",
|
||||
"description": "Iterate all the data in a stream",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"end-of-stream": "^1.1.0",
|
||||
"stream-shift": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ndjson": "^1.5.0",
|
||||
"standard": "^5.3.1",
|
||||
"tape": "^4.2.1",
|
||||
"through2": "^2.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "standard && tape test.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mafintosh/stream-each.git"
|
||||
},
|
||||
"author": "Mathias Buus (@mafintosh)",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/mafintosh/stream-each/issues"
|
||||
},
|
||||
"homepage": "https://github.com/mafintosh/stream-each"
|
||||
}
|
143
web/node_modules/stream-each/test.js
generated
vendored
Normal file
143
web/node_modules/stream-each/test.js
generated
vendored
Normal file
|
@ -0,0 +1,143 @@
|
|||
var tape = require('tape')
|
||||
var through = require('through2')
|
||||
var ndjson = require('ndjson')
|
||||
var each = require('./')
|
||||
|
||||
tape('each', function (t) {
|
||||
var s = through.obj()
|
||||
s.write('a')
|
||||
s.write('b')
|
||||
s.write('c')
|
||||
s.end()
|
||||
|
||||
s.on('end', function () {
|
||||
t.end()
|
||||
})
|
||||
|
||||
var expected = ['a', 'b', 'c']
|
||||
each(s, function (data, next) {
|
||||
t.same(data, expected.shift())
|
||||
next()
|
||||
})
|
||||
})
|
||||
|
||||
tape('each and callback', function (t) {
|
||||
var s = through.obj()
|
||||
s.write('a')
|
||||
s.write('b')
|
||||
s.write('c')
|
||||
s.end()
|
||||
|
||||
var expected = ['a', 'b', 'c']
|
||||
each(s, function (data, next) {
|
||||
t.same(data, expected.shift())
|
||||
next()
|
||||
}, function () {
|
||||
t.end()
|
||||
})
|
||||
})
|
||||
|
||||
tape('each (write after)', function (t) {
|
||||
var s = through.obj()
|
||||
s.on('end', function () {
|
||||
t.end()
|
||||
})
|
||||
|
||||
var expected = ['a', 'b', 'c']
|
||||
each(s, function (data, next) {
|
||||
t.same(data, expected.shift())
|
||||
next()
|
||||
})
|
||||
|
||||
setTimeout(function () {
|
||||
s.write('a')
|
||||
s.write('b')
|
||||
s.write('c')
|
||||
s.end()
|
||||
}, 100)
|
||||
})
|
||||
|
||||
tape('each error', function (t) {
|
||||
var s = through.obj()
|
||||
s.write('hello')
|
||||
s.on('error', function (err) {
|
||||
t.same(err.message, 'stop')
|
||||
t.end()
|
||||
})
|
||||
|
||||
each(s, function (data, next) {
|
||||
next(new Error('stop'))
|
||||
})
|
||||
})
|
||||
|
||||
tape('each error and callback', function (t) {
|
||||
var s = through.obj()
|
||||
s.write('hello')
|
||||
|
||||
each(s, function (data, next) {
|
||||
next(new Error('stop'))
|
||||
}, function (err) {
|
||||
t.same(err.message, 'stop')
|
||||
t.end()
|
||||
})
|
||||
})
|
||||
|
||||
tape('each with falsey values', function (t) {
|
||||
var s = through.obj()
|
||||
s.write(0)
|
||||
s.write(false)
|
||||
s.write(undefined)
|
||||
s.end()
|
||||
|
||||
s.on('end', function () {
|
||||
t.end()
|
||||
})
|
||||
|
||||
var expected = [0, false]
|
||||
var count = 0
|
||||
each(s, function (data, next) {
|
||||
count++
|
||||
t.same(data, expected.shift())
|
||||
next()
|
||||
}, function () {
|
||||
t.same(count, 2)
|
||||
})
|
||||
})
|
||||
|
||||
tape('huge stack', function (t) {
|
||||
var s = through.obj()
|
||||
|
||||
for (var i = 0; i < 5000; i++) {
|
||||
s.write('foo')
|
||||
}
|
||||
|
||||
s.end()
|
||||
|
||||
each(s, function (data, cb) {
|
||||
if (data !== 'foo') t.fail('bad data')
|
||||
cb()
|
||||
}, function (err) {
|
||||
t.error(err, 'no error')
|
||||
t.end()
|
||||
})
|
||||
})
|
||||
|
||||
tape('cb only once', function (t) {
|
||||
var p = ndjson.parse()
|
||||
var once = true
|
||||
var data = '{"foo":"' + Array(1000).join('x') + '"}\n'
|
||||
|
||||
each(p, ondata, function (err) {
|
||||
t.ok(once, 'only once')
|
||||
t.ok(err, 'had error')
|
||||
once = false
|
||||
t.end()
|
||||
})
|
||||
|
||||
for (var i = 0; i < 1000; i++) p.write(data)
|
||||
p.write('{...}\n')
|
||||
|
||||
function ondata (data, cb) {
|
||||
process.nextTick(cb)
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue