main.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package main
  2. import (
  3. "embed"
  4. "flag"
  5. "io/fs"
  6. "log"
  7. "net/http"
  8. "os"
  9. "os/signal"
  10. "syscall"
  11. "imuslab.com/remdeskvm/remdeskd/mod/remdeshid"
  12. "imuslab.com/remdeskvm/remdeskd/mod/usbcapture"
  13. )
  14. const development = true
  15. var (
  16. usbKVMDeviceName = flag.String("usbkvm", "/dev/ttyUSB0", "USB KVM device file path")
  17. usbKVMBaudRate = flag.Int("baudrate", 115200, "USB KVM baud rate")
  18. captureDeviceName = flag.String("capture", "/dev/video0", "Video capture device file path")
  19. usbKVM *remdeshid.Controller
  20. videoCapture *usbcapture.Instance
  21. )
  22. /* Web Server Static Files */
  23. //go:embed www
  24. var embeddedFiles embed.FS
  25. var webfs http.FileSystem
  26. func init() {
  27. // Initiate the web server static files
  28. if development {
  29. webfs = http.Dir("./www")
  30. } else {
  31. // Embed the ./www folder and trim the prefix
  32. subFS, err := fs.Sub(embeddedFiles, "www")
  33. if err != nil {
  34. log.Fatal(err)
  35. }
  36. webfs = http.FS(subFS)
  37. }
  38. // Initiate the HID controller
  39. usbKVM = remdeshid.NewHIDController(&remdeshid.Config{
  40. PortName: *usbKVMDeviceName,
  41. BaudRate: *usbKVMBaudRate,
  42. })
  43. }
  44. func main() {
  45. //Start the HID controller
  46. err := usbKVM.Connect()
  47. if err != nil {
  48. log.Fatal(err)
  49. }
  50. // Initiate the video capture device
  51. videoCapture, err = usbcapture.NewInstance(&usbcapture.Config{
  52. DeviceName: *captureDeviceName,
  53. })
  54. if err != nil {
  55. log.Fatalf("Failed to create video capture instance: %v", err)
  56. }
  57. //Get device information for debug
  58. usbcapture.PrintV4L2FormatInfo(*captureDeviceName)
  59. //Start the video capture device
  60. err = videoCapture.StartVideoCapture(&usbcapture.CaptureResolution{
  61. Width: 1920,
  62. Height: 1080,
  63. FPS: 25,
  64. })
  65. if err != nil {
  66. log.Fatal(err)
  67. }
  68. // Handle program exit to close the HID controller
  69. c := make(chan os.Signal, 1)
  70. signal.Notify(c, os.Interrupt, syscall.SIGTERM)
  71. go func() {
  72. <-c
  73. log.Println("Shutting down usbKVM...")
  74. //usbKVM.Close() //To fix close stuck layer
  75. log.Println("Shutting down capture device...")
  76. videoCapture.Close()
  77. os.Exit(0)
  78. }()
  79. // Start the web server
  80. http.Handle("/", http.FileServer(webfs))
  81. http.HandleFunc("/hid", usbKVM.HIDWebSocketHandler)
  82. http.HandleFunc("/stream", videoCapture.ServeVideoStream)
  83. addr := ":9000"
  84. log.Printf("Serving on http://localhost%s\n", addr)
  85. log.Fatal(http.ListenAndServe(addr, nil))
  86. }