mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 09:53:21 +02:00
Restart FrameProducer if it dies unexpectedly.
This commit is contained in:
35
lib/units/device/plugins/screen/util/riskystream.js
Normal file
35
lib/units/device/plugins/screen/util/riskystream.js
Normal file
@@ -0,0 +1,35 @@
|
||||
var util = require('util')
|
||||
|
||||
var EventEmitter = require('eventemitter3').EventEmitter
|
||||
|
||||
function RiskyStream(stream) {
|
||||
this.endListener = function() {
|
||||
this.ended = true
|
||||
this.stream.removeListener('end', this.endListener)
|
||||
|
||||
if (!this.expectingEnd) {
|
||||
this.emit('unexpectedEnd')
|
||||
}
|
||||
|
||||
this.emit('end')
|
||||
}.bind(this)
|
||||
|
||||
this.stream = stream
|
||||
.on('end', this.endListener)
|
||||
this.expectingEnd = false
|
||||
this.ended = false
|
||||
}
|
||||
|
||||
util.inherits(RiskyStream, EventEmitter)
|
||||
|
||||
RiskyStream.prototype.end = function() {
|
||||
this.expectEnd()
|
||||
return this.stream.end()
|
||||
}
|
||||
|
||||
RiskyStream.prototype.expectEnd = function() {
|
||||
this.expectingEnd = true
|
||||
return this
|
||||
}
|
||||
|
||||
module.exports = RiskyStream
|
||||
Reference in New Issue
Block a user