write_linux.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package door
  2. import (
  3. "bytes"
  4. "log"
  5. "sync"
  6. "syscall"
  7. )
  8. // OS Specific Write
  9. // This assumes that d.writerMutex is locked.
  10. type OSWriter struct {
  11. Mutex sync.Mutex // Writer mutex
  12. Closed bool
  13. Handle int
  14. }
  15. func (ow *OSWriter) Init(d *Door) {
  16. ow.Closed = false
  17. ow.Handle = d.Config.Comm_handle
  18. }
  19. // The low-lever writer function
  20. func (ow *OSWriter) OSWrite(buffer []byte) (int, error) {
  21. if DEBUG_DOOR {
  22. if ow.Mutex.TryLock() {
  23. log.Panic("OSWrite: mutex was NOT locked.")
  24. }
  25. }
  26. n, err := syscall.Write(ow.Handle, buffer)
  27. if (err != nil) || (n != len(buffer)) {
  28. if !ow.Closed {
  29. ow.Closed = true
  30. // Don't need to close reader, it will close itself.
  31. // It knows when the caller is gone before the writer ever will!
  32. }
  33. }
  34. return n, err
  35. }
  36. func (ow *OSWriter) Write(buffer []byte) (int, error) {
  37. ow.Mutex.Lock()
  38. defer ow.Mutex.Unlock()
  39. if ow.Closed {
  40. return 0, ErrDisconnected
  41. }
  42. var output bytes.Buffer
  43. output.Write(buffer)
  44. // Where should this be done? (I think in here)
  45. // TO FIX: TO DO:
  46. /*
  47. if bytes.HasSuffix(buffer, []byte(RestorePos)) {
  48. output.WriteString(Color(d.LastColor))
  49. // output += Color(d.LastColor)
  50. } else {
  51. d.UpdateLastColor(output, &d.LastColor)
  52. }
  53. */
  54. return ow.OSWrite(output.Bytes())
  55. }
  56. func (ow *OSWriter) Stop() {
  57. ow.Mutex.Lock()
  58. defer ow.Mutex.Unlock()
  59. ow.Closed = true
  60. }
  61. // Safe way to check if OSWriter is closed
  62. func (ow *OSWriter) IsClosed() bool {
  63. ow.Mutex.Lock()
  64. defer ow.Mutex.Unlock()
  65. return ow.Closed
  66. }
  67. // deprecated
  68. /*
  69. func (d *Door) OSWrite(buffer []byte) {
  70. if d.WriterClosed {
  71. return
  72. }
  73. if DEBUG_DOOR {
  74. if d.writerMutex.TryLock() {
  75. log.Panicln("OSWrite: writerMutex was NOT locked.")
  76. }
  77. }
  78. n, err := syscall.Write(d.Config.Comm_handle, buffer)
  79. if (err != nil) || (n != len(buffer)) {
  80. if !d.WriterClosed {
  81. d.WriterClosed = true
  82. }
  83. }
  84. }
  85. */
  86. // Deprecated
  87. // This is the writer go routine.
  88. /*
  89. // The parts of interest that I'm holding off on implementing for right now.
  90. if strings.HasSuffix(output, RestorePos) {
  91. output += Color(d.LastColor)
  92. } else {
  93. d.UpdateLastColor(output, &d.LastColor)
  94. }
  95. buffer := []byte(output)
  96. // n, err := low_write(handle, buffer)
  97. n, err := syscall.Write(handle, buffer)
  98. if (err != nil) || (n != len(buffer)) {
  99. log.Println("closeChannel")
  100. Closed = true
  101. d.writerMutex.Lock()
  102. if !d.WriterClosed {
  103. d.WriterClosed = true
  104. // close(d.writerChannel)
  105. }
  106. d.writerMutex.Unlock()
  107. }
  108. */