Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

queue.js 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. 'use strict'
  2. /* eslint-disable no-var */
  3. var reusify = require('reusify')
  4. function fastqueue (context, worker, concurrency) {
  5. if (typeof context === 'function') {
  6. concurrency = worker
  7. worker = context
  8. context = null
  9. }
  10. if (concurrency < 1) {
  11. throw new Error('fastqueue concurrency must be greater than 1')
  12. }
  13. var cache = reusify(Task)
  14. var queueHead = null
  15. var queueTail = null
  16. var _running = 0
  17. var errorHandler = null
  18. var self = {
  19. push: push,
  20. drain: noop,
  21. saturated: noop,
  22. pause: pause,
  23. paused: false,
  24. concurrency: concurrency,
  25. running: running,
  26. resume: resume,
  27. idle: idle,
  28. length: length,
  29. getQueue: getQueue,
  30. unshift: unshift,
  31. empty: noop,
  32. kill: kill,
  33. killAndDrain: killAndDrain,
  34. error: error
  35. }
  36. return self
  37. function running () {
  38. return _running
  39. }
  40. function pause () {
  41. self.paused = true
  42. }
  43. function length () {
  44. var current = queueHead
  45. var counter = 0
  46. while (current) {
  47. current = current.next
  48. counter++
  49. }
  50. return counter
  51. }
  52. function getQueue () {
  53. var current = queueHead
  54. var tasks = []
  55. while (current) {
  56. tasks.push(current.value)
  57. current = current.next
  58. }
  59. return tasks
  60. }
  61. function resume () {
  62. if (!self.paused) return
  63. self.paused = false
  64. for (var i = 0; i < self.concurrency; i++) {
  65. _running++
  66. release()
  67. }
  68. }
  69. function idle () {
  70. return _running === 0 && self.length() === 0
  71. }
  72. function push (value, done) {
  73. var current = cache.get()
  74. current.context = context
  75. current.release = release
  76. current.value = value
  77. current.callback = done || noop
  78. current.errorHandler = errorHandler
  79. if (_running === self.concurrency || self.paused) {
  80. if (queueTail) {
  81. queueTail.next = current
  82. queueTail = current
  83. } else {
  84. queueHead = current
  85. queueTail = current
  86. self.saturated()
  87. }
  88. } else {
  89. _running++
  90. worker.call(context, current.value, current.worked)
  91. }
  92. }
  93. function unshift (value, done) {
  94. var current = cache.get()
  95. current.context = context
  96. current.release = release
  97. current.value = value
  98. current.callback = done || noop
  99. if (_running === self.concurrency || self.paused) {
  100. if (queueHead) {
  101. current.next = queueHead
  102. queueHead = current
  103. } else {
  104. queueHead = current
  105. queueTail = current
  106. self.saturated()
  107. }
  108. } else {
  109. _running++
  110. worker.call(context, current.value, current.worked)
  111. }
  112. }
  113. function release (holder) {
  114. if (holder) {
  115. cache.release(holder)
  116. }
  117. var next = queueHead
  118. if (next) {
  119. if (!self.paused) {
  120. if (queueTail === queueHead) {
  121. queueTail = null
  122. }
  123. queueHead = next.next
  124. next.next = null
  125. worker.call(context, next.value, next.worked)
  126. if (queueTail === null) {
  127. self.empty()
  128. }
  129. } else {
  130. _running--
  131. }
  132. } else if (--_running === 0) {
  133. self.drain()
  134. }
  135. }
  136. function kill () {
  137. queueHead = null
  138. queueTail = null
  139. self.drain = noop
  140. }
  141. function killAndDrain () {
  142. queueHead = null
  143. queueTail = null
  144. self.drain()
  145. self.drain = noop
  146. }
  147. function error (handler) {
  148. errorHandler = handler
  149. }
  150. }
  151. function noop () {}
  152. function Task () {
  153. this.value = null
  154. this.callback = noop
  155. this.next = null
  156. this.release = noop
  157. this.context = null
  158. this.errorHandler = null
  159. var self = this
  160. this.worked = function worked (err, result) {
  161. var callback = self.callback
  162. var errorHandler = self.errorHandler
  163. var val = self.value
  164. self.value = null
  165. self.callback = noop
  166. if (self.errorHandler) {
  167. errorHandler(err, val)
  168. }
  169. callback.call(self.context, err, result)
  170. self.release(self)
  171. }
  172. }
  173. function queueAsPromised (context, worker, concurrency) {
  174. if (typeof context === 'function') {
  175. concurrency = worker
  176. worker = context
  177. context = null
  178. }
  179. function asyncWrapper (arg, cb) {
  180. worker.call(this, arg)
  181. .then(function (res) {
  182. cb(null, res)
  183. }, cb)
  184. }
  185. var queue = fastqueue(context, asyncWrapper, concurrency)
  186. var pushCb = queue.push
  187. var unshiftCb = queue.unshift
  188. queue.push = push
  189. queue.unshift = unshift
  190. return queue
  191. function push (value) {
  192. return new Promise(function (resolve, reject) {
  193. pushCb(value, function (err, result) {
  194. if (err) {
  195. reject(err)
  196. return
  197. }
  198. resolve(result)
  199. })
  200. })
  201. }
  202. function unshift (value) {
  203. return new Promise(function (resolve, reject) {
  204. unshiftCb(value, function (err, result) {
  205. if (err) {
  206. reject(err)
  207. return
  208. }
  209. resolve(result)
  210. })
  211. })
  212. }
  213. }
  214. module.exports = fastqueue
  215. module.exports.promise = queueAsPromised