door.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. /*
  2. Package door: a go implementation of a BBS door for linux and Windows
  3. that uses door32.sys, understand CP437 and unicode (if available),
  4. detects screen size, and supports TheDraw Fonts.
  5. import (
  6. "door"
  7. )
  8. int main() {
  9. d = door.Door{}
  10. d.Init() // Process commandline switches, initialize door, detect screen size.
  11. d.Write("Welcome to my awesome door, written in "+door.ColorText("BLINK BOLD WHITE")+"go"+door.Reset+"."+door.CRNL)
  12. d.Write("Press a key...")
  13. d.Key()
  14. d.Write(door.CRNL)
  15. }
  16. */
  17. package door
  18. import (
  19. "flag"
  20. "fmt"
  21. "log"
  22. "os"
  23. "path/filepath"
  24. "runtime/debug"
  25. "sync"
  26. "time"
  27. "golang.org/x/term"
  28. )
  29. // debugging output - enable here
  30. const DEBUG_DOOR bool = false
  31. // For debugging input reader routines.
  32. const DEBUG_INPUT bool = false
  33. const DEBUG_OUTPUT bool = false
  34. // See door_test.go for DEBUG test const
  35. const SavePos = "\x1b[s" // Save Cursor Position
  36. const RestorePos = "\x1b[u" // Restore Cursor Position
  37. const CRNL = "\r\n" // BBS Line Ending
  38. const Clrscr = "\x1b[0m\x1b[2J\x1b[H" // Clear screen, home cursor
  39. const HideCursor = "\x1b[?25l" // Hide Cursor
  40. const ShowCursor = "\x1b[?25h" // Show Cursor
  41. const Reset string = "\x1b[0m" // ANSI Color Reset
  42. const CURSOR_POS = "\x1b[6n"
  43. const SAVE_POS = "\x1b[s"
  44. const RESTORE_POS = "\x1b[u"
  45. // Move these into the door structure, instead of having globals.
  46. var Unicode bool // Unicode support detected
  47. var CP437 bool // CP437 support detected
  48. var Full_CP437 bool // Full CP437 support detected (handles control codes properly)
  49. var Height int // Screen height detected
  50. var Width int // Screen width detected
  51. var Inactivity time.Duration = time.Duration(120) * time.Second // Inactivity timeout
  52. type ColorRender func(string) string
  53. type Updater func() string
  54. type CursorPos struct {
  55. X, Y int
  56. }
  57. type Mouse struct {
  58. Button int8
  59. X int8
  60. Y int8
  61. }
  62. type MouseMode int
  63. const (
  64. Off MouseMode = 0
  65. X10 MouseMode = 9
  66. Normal MouseMode = 1000
  67. Button MouseMode = 1002
  68. AnyEvent MouseMode = 1003
  69. )
  70. type ReaderData struct {
  71. R rune
  72. Ex Extended
  73. Err error
  74. }
  75. /*
  76. type noCopy struct{}
  77. func (*noCopy) Lock() {}
  78. func (*noCopy) Unlock() {}
  79. noCopy noCopy
  80. */
  81. type Door struct {
  82. Config DropfileConfig
  83. READFD int
  84. WRITEFD int
  85. Disconnected bool // int32 // atomic bool // Has User disconnected/Hung up?
  86. TimeOut time.Time // Fixed point in time, when time expires
  87. StartTime time.Time // Time when User started door
  88. Pushback FIFOBuffer[rune] // Key buffer
  89. LastColor []int // Track the last color sent for restore color
  90. ReaderClosed bool // Reader close
  91. readerChannel chan ReaderData // Reading from the User
  92. readerMutex sync.Mutex // Reader close mutex
  93. ReaderCanClose bool // We can close the reader (in tests)
  94. WriterClosed bool // Writer closed
  95. writerChannel chan string // Writing to the User
  96. writerMutex sync.RWMutex
  97. LastMouse []Mouse // Store Mouse information
  98. LastCursor []CursorPos // Store Cursor pos information
  99. mcMutex sync.Mutex // Lock for LastMouse, LastCursor
  100. wg sync.WaitGroup
  101. tio_default *term.State // Terminal State to restore
  102. Mouse MouseMode // Mouse mode enabled
  103. }
  104. func (d *Door) SafeWriterClose() {
  105. d.writerMutex.Lock()
  106. defer d.writerMutex.Unlock()
  107. if !d.WriterClosed {
  108. d.WriterClosed = true
  109. close(d.writerChannel)
  110. }
  111. }
  112. func (d *Door) WriterIsClosed() bool {
  113. d.writerMutex.RLock()
  114. defer d.writerMutex.RUnlock()
  115. return d.WriterClosed
  116. }
  117. /*
  118. Enable mouse support
  119. 9 : X10 Support
  120. 1000: Normal
  121. 1002: Button Event
  122. 1003: Any-Event
  123. */
  124. func (d *Door) EnableMouse(mode MouseMode) {
  125. if d.Mouse != Off {
  126. // Disable current mode first
  127. d.DisableMouse()
  128. }
  129. d.Mouse = mode
  130. if d.Mouse != Off {
  131. d.Write(fmt.Sprintf("\x1b[?%dh", int(d.Mouse)))
  132. }
  133. }
  134. // Disable mouse support
  135. func (d *Door) DisableMouse() {
  136. if d.Mouse != Off {
  137. d.Write(fmt.Sprintf("\x1b[?%dl", int(d.Mouse)))
  138. }
  139. d.Mouse = Off
  140. }
  141. func (d *Door) AddMouse(mouse Mouse) {
  142. d.mcMutex.Lock()
  143. defer d.mcMutex.Unlock()
  144. d.LastMouse = append(d.LastMouse, mouse)
  145. }
  146. func (d *Door) GetMouse() (Mouse, bool) {
  147. d.mcMutex.Lock()
  148. defer d.mcMutex.Unlock()
  149. return ArrayDelete(&d.LastMouse, 0)
  150. }
  151. func (d *Door) GetCursorPos() (CursorPos, bool) {
  152. d.mcMutex.Lock()
  153. if DEBUG_DOOR {
  154. log.Printf("LastCursor %p/%p %d, %d\n", d, &d.LastCursor, len(d.LastCursor), cap(d.LastCursor))
  155. }
  156. defer d.mcMutex.Unlock()
  157. if DEBUG_DOOR {
  158. log.Printf("LastCursor: %#v\n", d.LastCursor)
  159. }
  160. return ArrayDelete(&d.LastCursor, 0)
  161. }
  162. func (d *Door) AddCursorPos(cursor CursorPos) {
  163. d.mcMutex.Lock()
  164. if DEBUG_DOOR {
  165. log.Printf("LastCursor %p/%p %d, %d\n", d, &d.LastCursor, len(d.LastCursor), cap(d.LastCursor))
  166. }
  167. defer d.mcMutex.Unlock()
  168. d.LastCursor = append(d.LastCursor, cursor)
  169. if DEBUG_DOOR {
  170. log.Printf("LastCursor now %d, %d\n", len(d.LastCursor), cap(d.LastCursor))
  171. log.Printf("AddCursor: %#v\n", d.LastCursor)
  172. }
  173. }
  174. func (d *Door) ClearMouseCursor() {
  175. d.mcMutex.Lock()
  176. defer d.mcMutex.Unlock()
  177. if DEBUG_DOOR {
  178. log.Println("ClearMouseCursor")
  179. }
  180. d.LastMouse = make([]Mouse, 0, 2)
  181. d.LastCursor = make([]CursorPos, 0, 3)
  182. }
  183. // Return the amount of time left as time.Duration
  184. func (d *Door) TimeLeft() time.Duration {
  185. return time.Until(d.TimeOut)
  186. }
  187. func (d *Door) TimeUsed() time.Duration {
  188. return time.Since(d.StartTime)
  189. }
  190. func (d *Door) Disconnect() bool {
  191. return d.Disconnected // atomic.LoadInt32(&d.Disconnected) != 0
  192. }
  193. func (d *Door) Detect() bool {
  194. // detect is destructive ... make it non-destructive
  195. // destructive: clears/trashes the screen.
  196. var detect string = "\r\x03\x04" + CURSOR_POS + "\b \b\b \b" +
  197. "\r\u2615" + CURSOR_POS + "\b \b\b \b\b \b" +
  198. SAVE_POS + "\x1b[999C\x1b[999B" + CURSOR_POS + RESTORE_POS
  199. // hot beverage is 3 bytes long -- need 3 "\b \b" to erase.
  200. d.Write(detect)
  201. var info []CursorPos = make([]CursorPos, 0, 3)
  202. var done bool
  203. for !done {
  204. _, ex, err := d.WaitKey(time.Second)
  205. log.Println("WaitKey:", ex, err)
  206. if ex == CURSOR {
  207. cursor, ok := d.GetCursorPos()
  208. if ok {
  209. info = append(info, cursor)
  210. if len(info) == 3 {
  211. done = true
  212. }
  213. }
  214. }
  215. if err != nil {
  216. done = true
  217. }
  218. }
  219. if len(info) != 3 {
  220. // Detection FAILED.
  221. log.Println("Detect FAILED:", info)
  222. return false
  223. }
  224. // Ok! Let's see what we've got...
  225. var valid bool
  226. // Where did I get these numbers from?
  227. // linux term (telnet/ssh) [0].X = 1, [1].X = 3
  228. // VS Code terminal: 1, 3
  229. // https://docs.python.org/3/library/unicodedata.html
  230. // \u2615 is a fullwidth (2 char) unicode symbol!
  231. // SO, [1].X == 3 // and not 2.
  232. // syncterm [0].X = 3, [1].X = 4
  233. // Magiterm [0].X = 3, [1].X = 4
  234. // cp437 + telnet [0].X = 1, [1].X = 4 FullCP437 = False
  235. // ^ Fails FullCP437 test - characters codes ignored.
  236. // cp437plus + telnet 3, 4. (Has FullCP437 support.)
  237. // if (info[0].X == 1 || info[0].X == 3) &&
  238. // (info[1].X == 2 || info[1].X == 3) {
  239. // Breakdown by detected type:
  240. // Unicode \x03 \x04 (control codes ignored)
  241. // Unicode \u2615 = fullwidth takes up 2 characters
  242. // CP437 \x03 \x04 Hearts Diamonds Symbols 2 characters
  243. // ^ Only works for FullCP437
  244. // CP437 \u2615 = b'\xe2\x98\x95' 3 bytes
  245. // So info[1].X = 4
  246. if info[0].X == 1 && info[1].X == 3 {
  247. Unicode = true
  248. valid = true
  249. } else {
  250. // info[1].X = 4
  251. Unicode = false
  252. CP437 = true
  253. valid = true
  254. }
  255. if info[0].X == 3 {
  256. Full_CP437 = true
  257. }
  258. if !valid {
  259. log.Println("Detect FAILED (not valid):", info)
  260. return false
  261. }
  262. Width, Height = info[2].X, info[2].Y
  263. // Putty doesn't seem to restoring the cursor position (when detecting).
  264. d.Write(Goto(1, info[0].Y))
  265. log.Printf("Unicode: %t, CP437: %t, Full %t, Screen %v\n", Unicode, CP437, Full_CP437, info[2])
  266. return true
  267. }
  268. // Initialize door framework. Parse commandline, read dropfile,
  269. // detect terminal capabilities.
  270. func (d *Door) Init(doorname string) {
  271. var dropfile string
  272. d.Pushback = NewFIFOBuffer[rune](5)
  273. // Get path to binary, and chdir to it.
  274. var binaryPath string
  275. binaryPath, _ = os.Executable()
  276. binaryPath = filepath.Dir(binaryPath)
  277. _ = os.Chdir(binaryPath)
  278. flag.StringVar(&dropfile, "d", "", "Path to dropfile")
  279. flag.Parse()
  280. if len(dropfile) == 0 {
  281. flag.PrintDefaults()
  282. os.Exit(2)
  283. }
  284. d.ReadDropfile(dropfile)
  285. if d.Config.Comm_type == 0 {
  286. // RAW MODE
  287. d.tio_default, _ = term.MakeRaw(d.READFD)
  288. }
  289. // Logfile will be doorname - node #
  290. var logfilename string = fmt.Sprintf("%s-%d.log", doorname, d.Config.Node)
  291. var logf *os.File
  292. var err error
  293. logf, err = os.OpenFile(logfilename, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0666)
  294. if err != nil {
  295. log.Panicf("Error creating log file %s: %v", logfilename, err)
  296. }
  297. // Set logging output to logfilename.
  298. log.SetOutput(logf)
  299. log.SetFlags(log.Ldate | log.Ltime | log.Lshortfile)
  300. log.Printf("Loading dropfile %s\n", dropfile)
  301. log.Printf("BBS %s, User %s / Handle %s / File %d\n", d.Config.BBSID, d.Config.Real_name, d.Config.Handle, d.Config.Comm_handle)
  302. d.readerChannel = make(chan ReaderData, 16) // was 8 ?
  303. d.writerChannel = make(chan string) // unbuffered
  304. d.ClearMouseCursor()
  305. d.setupChannels()
  306. d.Detect()
  307. if Unicode {
  308. BOXES = BOXES_UNICODE
  309. BARS = BARS_UNICODE
  310. } else {
  311. BOXES = BOXES_CP437
  312. BARS = BARS_CP437
  313. }
  314. }
  315. func (d *Door) Close() {
  316. defer func() {
  317. if err := recover(); err != nil {
  318. log.Println("door.Close FAILURE:", err)
  319. // This displays stack trace stderr
  320. debug.PrintStack()
  321. }
  322. }()
  323. d.DisableMouse()
  324. log.Println("Closing...")
  325. close(d.writerChannel)
  326. log.Println("wg.Wait()")
  327. d.wg.Wait()
  328. log.Println("Closed.")
  329. if d.Config.Comm_type == 0 {
  330. // Linux - restore console settings to default/original.
  331. term.Restore(d.READFD, d.tio_default)
  332. }
  333. }
  334. // Goto X, Y - Position the cursor using ANSI Escape Codes
  335. //
  336. // Example:
  337. //
  338. // d.Write(door.Goto(1, 5) + "Now at X=1, Y=5.")
  339. func Goto(x int, y int) string {
  340. return fmt.Sprintf("\x1b[%d;%dH", y, x)
  341. }