@entrylabs/bindings
Version:
## 왜 forked 되었나요?
115 lines (100 loc) • 2.79 kB
JavaScript
const path = require('path');
const { app } = require('electron');
const binding = require('bindings')({
module_root: path.resolve(app.getAppPath(), 'node_modules', '@entrylabs', 'bindings'),
bindings: 'bindings.node',
})
const AbstractBinding = require('@serialport/binding-abstract')
const promisify = require('./util').promisify
const serialNumParser = require('./win32-sn-parser')
/**
* The Windows binding layer
*/
class WindowsBinding extends AbstractBinding {
static list() {
return promisify(binding.list)().then(ports => {
// Grab the serial number from the pnp id
ports.forEach(port => {
if (port.pnpId && !port.serialNumber) {
const serialNumber = serialNumParser(port.pnpId)
if (serialNumber) {
port.serialNumber = serialNumber
}
}
})
return ports
})
}
constructor(opt) {
super(opt)
this.bindingOptions = Object.assign({}, opt.bindingOptions || {})
this.fd = null
this.writeOperation = null
}
get isOpen() {
return this.fd !== null
}
open(path, options) {
return super
.open(path, options)
.then(() => {
this.openOptions = Object.assign({}, this.bindingOptions, options)
return promisify(binding.open)(path, this.openOptions)
})
.then(fd => {
this.fd = fd
})
}
close() {
return super.close().then(() => {
const fd = this.fd
this.fd = null
return promisify(binding.close)(fd)
})
}
read(buffer, offset, length) {
return super
.read(buffer, offset, length)
.then(() => promisify(binding.read)(this.fd, buffer, offset, length))
.catch(err => {
if (!this.isOpen) {
err.canceled = true
}
throw err
})
}
write(buffer) {
if (buffer.length > 0) {
this.writeOperation = super
.write(buffer)
.then(() => promisify(binding.write)(this.fd, buffer))
.then(() => {
this.writeOperation = null
})
return this.writeOperation
}
return Promise.resolve()
}
update(options) {
return super.update(options).then(() => promisify(binding.update)(this.fd, options))
}
set(options) {
return super.set(options).then(() => promisify(binding.set)(this.fd, options))
}
get() {
return super.get().then(() => promisify(binding.get)(this.fd))
}
getBaudRate() {
return super.get().then(() => promisify(binding.getBaudRate)(this.fd))
}
drain() {
return super
.drain()
.then(() => Promise.resolve(this.writeOperation))
.then(() => promisify(binding.drain)(this.fd))
}
flush() {
return super.flush().then(() => promisify(binding.flush)(this.fd))
}
}
module.exports = WindowsBinding