write_linux.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. TranslateNL bool
  15. TranslateToUnicode bool
  16. nlBuffer *bytes.Buffer
  17. uniBuffer *bytes.Buffer
  18. }
  19. func (ow *OSWriter) Init(d *Door) {
  20. ow.Closed = false
  21. ow.Handle = d.Config.Comm_handle
  22. ow.TranslateNL = true // Yes, translate NL => CR+NL
  23. ow.nlBuffer = &bytes.Buffer{}
  24. }
  25. func (ow *OSWriter) CP437toUnicode(output []byte) []byte {
  26. if ow.uniBuffer == nil {
  27. ow.uniBuffer = &bytes.Buffer{}
  28. }
  29. return ow.uniBuffer.Bytes()
  30. }
  31. func (ow *OSWriter) NewLines(output []byte) []byte {
  32. var pos, nextpos int
  33. ow.nlBuffer.Reset()
  34. for pos != -1 {
  35. nextpos = bytes.Index(output[pos:], []byte{'\n'})
  36. if nextpos != -1 {
  37. nextpos += pos
  38. // Something to do
  39. ow.nlBuffer.Write(output[pos:nextpos])
  40. nextpos++
  41. pos = nextpos
  42. ow.nlBuffer.Write([]byte("\r\n"))
  43. } else {
  44. ow.nlBuffer.Write(output[pos:])
  45. pos = nextpos // -1
  46. }
  47. }
  48. // log.Printf(">> %q\n", ow.nlBuffer.Bytes())
  49. return ow.nlBuffer.Bytes()
  50. }
  51. // The low-lever writer function
  52. func (ow *OSWriter) OSWrite(buffer []byte) (int, error) {
  53. var buff []byte = buffer
  54. if DEBUG_DOOR {
  55. if ow.Mutex.TryLock() {
  56. log.Panic("OSWrite: mutex was NOT locked.")
  57. }
  58. }
  59. // Filters (!)
  60. if ow.TranslateNL {
  61. buff = ow.NewLines(buff)
  62. }
  63. n, err := syscall.Write(ow.Handle, buff)
  64. if (err != nil) || (n != len(buff)) {
  65. if !ow.Closed {
  66. ow.Closed = true
  67. // Don't need to close reader, it will close itself.
  68. // It knows when the caller is gone before the writer ever will!
  69. }
  70. }
  71. return n, err
  72. }
  73. func (ow *OSWriter) Write(buffer []byte) (int, error) {
  74. ow.Mutex.Lock()
  75. defer ow.Mutex.Unlock()
  76. if ow.Closed {
  77. return 0, ErrDisconnected
  78. }
  79. // var output bytes.Buffer
  80. // output.Write(buffer)
  81. // Where should this be done? (I think in here)
  82. // TO FIX: TO DO:
  83. /*
  84. if bytes.HasSuffix(buffer, []byte(RestorePos)) {
  85. output.WriteString(Color(d.LastColor))
  86. // output += Color(d.LastColor)
  87. } else {
  88. d.UpdateLastColor(output, &d.LastColor)
  89. }
  90. */
  91. return ow.OSWrite(buffer)
  92. }
  93. func (ow *OSWriter) Stop() {
  94. ow.Mutex.Lock()
  95. defer ow.Mutex.Unlock()
  96. ow.Closed = true
  97. }
  98. // Safe way to check if OSWriter is closed
  99. func (ow *OSWriter) IsClosed() bool {
  100. ow.Mutex.Lock()
  101. defer ow.Mutex.Unlock()
  102. return ow.Closed
  103. }
  104. // deprecated
  105. /*
  106. func (d *Door) OSWrite(buffer []byte) {
  107. if d.WriterClosed {
  108. return
  109. }
  110. if DEBUG_DOOR {
  111. if d.writerMutex.TryLock() {
  112. log.Panicln("OSWrite: writerMutex was NOT locked.")
  113. }
  114. }
  115. n, err := syscall.Write(d.Config.Comm_handle, buffer)
  116. if (err != nil) || (n != len(buffer)) {
  117. if !d.WriterClosed {
  118. d.WriterClosed = true
  119. }
  120. }
  121. }
  122. */
  123. // Deprecated
  124. // This is the writer go routine.
  125. /*
  126. // The parts of interest that I'm holding off on implementing for right now.
  127. if strings.HasSuffix(output, RestorePos) {
  128. output += Color(d.LastColor)
  129. } else {
  130. d.UpdateLastColor(output, &d.LastColor)
  131. }
  132. buffer := []byte(output)
  133. // n, err := low_write(handle, buffer)
  134. n, err := syscall.Write(handle, buffer)
  135. if (err != nil) || (n != len(buffer)) {
  136. log.Println("closeChannel")
  137. Closed = true
  138. d.writerMutex.Lock()
  139. if !d.WriterClosed {
  140. d.WriterClosed = true
  141. // close(d.writerChannel)
  142. }
  143. d.writerMutex.Unlock()
  144. }
  145. */