remdeshid.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. }
  25. func NewHIDController(config *Config) *Controller {
  26. return &Controller{
  27. Config: config,
  28. serialRunning: false,
  29. }
  30. }
  31. // Connect opens the serial port and starts reading from it
  32. func (c *Controller) Connect() error {
  33. // Open the serial port
  34. config := &serial.Config{
  35. Name: c.Config.PortName,
  36. Baud: c.Config.BaudRate,
  37. Size: 8,
  38. Parity: serial.ParityNone,
  39. }
  40. port, err := serial.OpenPort(config)
  41. if err != nil {
  42. return err
  43. }
  44. c.serialPort = port
  45. c.readStopChan = make(chan bool)
  46. //Start reading from the serial port
  47. go func() {
  48. buf := make([]byte, 128)
  49. for {
  50. select {
  51. case <-c.readStopChan:
  52. return
  53. default:
  54. n, err := port.Read(buf)
  55. if err != nil {
  56. if c.Config.OnReadError != nil {
  57. c.Config.OnReadError(err)
  58. } else {
  59. log.Println(err.Error())
  60. }
  61. return
  62. }
  63. if n > 0 {
  64. if c.Config.OnDataHandler != nil {
  65. c.Config.OnDataHandler(buf[:n], nil)
  66. } else {
  67. fmt.Print("Received bytes: ")
  68. for i := 0; i < n; i++ {
  69. fmt.Printf("0x%02X ", buf[i])
  70. }
  71. fmt.Println()
  72. }
  73. }
  74. }
  75. }
  76. }()
  77. //Create a loop to write to the serial port
  78. c.writeStopChan = make(chan bool)
  79. c.writeQueue = make(chan []byte, 10)
  80. c.serialRunning = true
  81. go func() {
  82. for {
  83. select {
  84. case data := <-c.writeQueue:
  85. _, err := port.Write(data)
  86. if err != nil {
  87. if c.Config.OnWriteError != nil {
  88. c.Config.OnWriteError(err)
  89. } else {
  90. log.Println(err.Error())
  91. }
  92. }
  93. case <-c.writeStopChan:
  94. c.serialRunning = false
  95. return
  96. }
  97. }
  98. }()
  99. //Send over an opr queue reset signal
  100. err = c.Send([]byte{OPR_TYPE_DATA_RESET})
  101. if err != nil {
  102. return err
  103. }
  104. //Reset keyboard press state
  105. err = c.Send([]byte{OPR_TYPE_KEYBOARD_WRITE, SUBTYPE_KEYBOARD_SPECIAL_RESET, 0x00})
  106. if err != nil {
  107. return err
  108. }
  109. //Reset mouse press state
  110. err = c.Send([]byte{OPR_TYPE_MOUSE_WRITE, SUBTYPE_MOUSE_RESET, 0x00})
  111. if err != nil {
  112. return err
  113. }
  114. return nil
  115. }
  116. func (c *Controller) Send(data []byte) error {
  117. if !c.serialRunning {
  118. return fmt.Errorf("serial port is not running")
  119. }
  120. c.writeQueue <- data
  121. return nil
  122. }
  123. func (c *Controller) Close() {
  124. if c.readStopChan != nil {
  125. c.readStopChan <- true
  126. }
  127. if c.writeStopChan != nil {
  128. c.writeStopChan <- true
  129. }
  130. c.serialPort.Close()
  131. }