byte-data.js 618 B

123456789101112131415161718192021222324252627
  1. var BufferUtil = require('../utils/buffer')
  2. var Mode = require('./mode')
  3. function ByteData (data) {
  4. this.mode = Mode.BYTE
  5. this.data = BufferUtil.from(data)
  6. }
  7. ByteData.getBitsLength = function getBitsLength (length) {
  8. return length * 8
  9. }
  10. ByteData.prototype.getLength = function getLength () {
  11. return this.data.length
  12. }
  13. ByteData.prototype.getBitsLength = function getBitsLength () {
  14. return ByteData.getBitsLength(this.data.length)
  15. }
  16. ByteData.prototype.write = function (bitBuffer) {
  17. for (var i = 0, l = this.data.length; i < l; i++) {
  18. bitBuffer.put(this.data[i], 8)
  19. }
  20. }
  21. module.exports = ByteData