remdeshid.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. package remdeshid
  2. import (
  3. "fmt"
  4. "log"
  5. "github.com/tarm/serial"
  6. )
  7. type Config struct {
  8. /* Bindings and callback */
  9. OnWriteError func(error) // Callback for when an error occurs while writing to USBKVM device
  10. OnReadError func(error) // Callback for when an error occurs while reading from USBKVM device
  11. OnDataHandler func([]byte, error) // Callback for when data is received from USBKVM device
  12. /* Serial port configs */
  13. PortName string
  14. BaudRate int
  15. }
  16. // Controller is a struct that represents a HID controller
  17. type Controller struct {
  18. Config *Config
  19. serialPort *serial.Port
  20. serialRunning bool
  21. readStopChan chan bool
  22. writeStopChan chan bool
  23. writeQueue chan []byte
  24. lastScrollTime int64
  25. }
  26. func NewHIDController(config *Config) *Controller {
  27. return &Controller{
  28. Config: config,
  29. serialRunning: false,
  30. }
  31. }
  32. // Connect opens the serial port and starts reading from it
  33. func (c *Controller) Connect() error {
  34. // Open the serial port
  35. config := &serial.Config{
  36. Name: c.Config.PortName,
  37. Baud: c.Config.BaudRate,
  38. Size: 8,
  39. Parity: serial.ParityNone,
  40. }
  41. port, err := serial.OpenPort(config)
  42. if err != nil {
  43. return err
  44. }
  45. c.serialPort = port
  46. c.readStopChan = make(chan bool)
  47. //Start reading from the serial port
  48. go func() {
  49. buf := make([]byte, 128)
  50. for {
  51. select {
  52. case <-c.readStopChan:
  53. return
  54. default:
  55. n, err := port.Read(buf)
  56. if err != nil {
  57. if c.Config.OnReadError != nil {
  58. c.Config.OnReadError(err)
  59. } else {
  60. log.Println(err.Error())
  61. }
  62. c.readStopChan = nil
  63. return
  64. }
  65. if n > 0 {
  66. if c.Config.OnDataHandler != nil {
  67. c.Config.OnDataHandler(buf[:n], nil)
  68. } else {
  69. fmt.Print("Received bytes: ")
  70. for i := 0; i < n; i++ {
  71. fmt.Printf("0x%02X ", buf[i])
  72. }
  73. fmt.Println()
  74. }
  75. }
  76. }
  77. }
  78. }()
  79. //Create a loop to write to the serial port
  80. c.writeStopChan = make(chan bool)
  81. c.writeQueue = make(chan []byte, 1)
  82. c.serialRunning = true
  83. go func() {
  84. for {
  85. select {
  86. case data := <-c.writeQueue:
  87. _, err := port.Write(data)
  88. if err != nil {
  89. if c.Config.OnWriteError != nil {
  90. c.Config.OnWriteError(err)
  91. } else {
  92. log.Println(err.Error())
  93. }
  94. }
  95. case <-c.writeStopChan:
  96. c.serialRunning = false
  97. return
  98. }
  99. }
  100. }()
  101. //Send over an opr queue reset signal
  102. err = c.Send([]byte{OPR_TYPE_DATA_RESET})
  103. if err != nil {
  104. return err
  105. }
  106. //Reset keyboard press state
  107. err = c.Send([]byte{OPR_TYPE_KEYBOARD_WRITE, SUBTYPE_KEYBOARD_SPECIAL_RESET, 0x00})
  108. if err != nil {
  109. return err
  110. }
  111. //Reset mouse press state
  112. err = c.Send([]byte{OPR_TYPE_MOUSE_WRITE, SUBTYPE_MOUSE_RESET, 0x00})
  113. if err != nil {
  114. return err
  115. }
  116. return nil
  117. }
  118. func (c *Controller) Send(data []byte) error {
  119. if !c.serialRunning {
  120. return fmt.Errorf("serial port is not running")
  121. }
  122. c.writeQueue <- data
  123. return nil
  124. }
  125. func (c *Controller) Close() {
  126. if c.readStopChan != nil {
  127. c.readStopChan <- true
  128. }
  129. if c.writeStopChan != nil {
  130. c.writeStopChan <- true
  131. }
  132. c.serialPort.Close()
  133. }