door.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  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. "bufio"
  20. "flag"
  21. "fmt"
  22. "log"
  23. "os"
  24. "path/filepath"
  25. "runtime/debug"
  26. "strconv"
  27. "sync"
  28. "time"
  29. "golang.org/x/term"
  30. )
  31. // debugging output - enable here
  32. const DEBUG_DOOR bool = false
  33. // For debugging input reader routines.
  34. const DEBUG_INPUT bool = false
  35. const DEBUG_OUTPUT bool = false
  36. // See door_test.go for DEBUG test const
  37. const SavePos = "\x1b[s" // Save Cursor Position
  38. const RestorePos = "\x1b[u" // Restore Cursor Position
  39. const CRNL = "\r\n" // BBS Line Ending
  40. const Clrscr = "\x1b[0m\x1b[2J\x1b[H" // Clear screen, home cursor
  41. const HideCursor = "\x1b[?25l" // Hide Cursor
  42. const ShowCursor = "\x1b[?25h" // Show Cursor
  43. const Reset string = "\x1b[0m" // ANSI Color Reset
  44. const CURSOR_POS = "\x1b[6n"
  45. const SAVE_POS = "\x1b[s"
  46. const RESTORE_POS = "\x1b[u"
  47. // Move these into the door structure, instead of having globals.
  48. var Unicode bool // Unicode support detected
  49. var CP437 bool // CP437 support detected
  50. var Full_CP437 bool // Full CP437 support detected (handles control codes properly)
  51. var Height int // Screen height detected
  52. var Width int // Screen width detected
  53. var Inactivity time.Duration = time.Duration(120) * time.Second // Inactivity timeout
  54. type ColorRender func(string) string
  55. type Updater func() string
  56. type CursorPos struct {
  57. X, Y int
  58. }
  59. type Mouse struct {
  60. Button int8
  61. X int8
  62. Y int8
  63. }
  64. type MouseMode int
  65. const (
  66. Off MouseMode = 0
  67. X10 MouseMode = 9
  68. Normal MouseMode = 1000
  69. Button MouseMode = 1002
  70. AnyEvent MouseMode = 1003
  71. )
  72. /*
  73. door32.sys:
  74. 0 Line 1 : Comm type (0=local, 1=serial, 2=telnet)
  75. 0 Line 2 : Comm or socket handle
  76. 38400 Line 3 : Baud rate
  77. Mystic 1.07 Line 4 : BBSID (software name and version)
  78. 1 Line 5 : User record position (1-based)
  79. James Coyle Line 6 : User's real name
  80. g00r00 Line 7 : User's handle/alias
  81. 255 Line 8 : User's security level
  82. 58 Line 9 : User's time left (in minutes)
  83. 1 Line 10: Emulation *See Below
  84. 1 Line 11: Current node number
  85. */
  86. // Door32 information
  87. type DropfileConfig struct {
  88. Comm_type int // Comm type (0 local, 2 telnet "linux fd")
  89. Comm_handle int // Handle to use to talk to the user
  90. Baudrate int // (not used)
  91. BBSID string // BBS Software name
  92. User_number int // User number
  93. Real_name string // User's Real Name
  94. Handle string // User's Handle/Nick
  95. Security_level int // Security Level (if given)
  96. Time_left int // Time Left (minutes)
  97. Emulation int // (not used)
  98. Node int // BBS Node number
  99. }
  100. type ReaderData struct {
  101. R rune
  102. Ex Extended
  103. Err error
  104. }
  105. /*
  106. type noCopy struct{}
  107. func (*noCopy) Lock() {}
  108. func (*noCopy) Unlock() {}
  109. noCopy noCopy
  110. */
  111. type Door struct {
  112. Config DropfileConfig
  113. READFD int
  114. WRITEFD int
  115. Disconnected bool // int32 // atomic bool // Has User disconnected/Hung up?
  116. TimeOut time.Time // Fixed point in time, when time expires
  117. StartTime time.Time // Time when User started door
  118. Pushback FIFOBuffer[rune] // Key buffer
  119. LastColor []int // Track the last color sent for restore color
  120. ReaderClosed bool // Reader close
  121. readerChannel chan ReaderData // Reading from the User
  122. readerMutex sync.Mutex // Reader close mutex
  123. ReaderCanClose bool // We can close the reader (in tests)
  124. WriterClosed bool // Writer closed
  125. writerChannel chan string // Writing to the User
  126. writerMutex sync.RWMutex
  127. LastMouse []Mouse // Store Mouse information
  128. LastCursor []CursorPos // Store Cursor pos information
  129. mcMutex sync.Mutex // Lock for LastMouse, LastCursor
  130. wg sync.WaitGroup
  131. tio_default *term.State // Terminal State to restore
  132. Mouse MouseMode // Mouse mode enabled
  133. }
  134. func (d *Door) SafeWriterClose() {
  135. d.writerMutex.Lock()
  136. defer d.writerMutex.Unlock()
  137. if !d.WriterClosed {
  138. d.WriterClosed = true
  139. close(d.writerChannel)
  140. }
  141. }
  142. func (d *Door) WriterIsClosed() bool {
  143. d.writerMutex.RLock()
  144. defer d.writerMutex.RUnlock()
  145. return d.WriterClosed
  146. }
  147. /*
  148. Enable mouse support
  149. 9 : X10 Support
  150. 1000: Normal
  151. 1002: Button Event
  152. 1003: Any-Event
  153. */
  154. func (d *Door) EnableMouse(mode MouseMode) {
  155. if d.Mouse != Off {
  156. // Disable current mode first
  157. d.DisableMouse()
  158. }
  159. d.Mouse = mode
  160. if d.Mouse != Off {
  161. d.Write(fmt.Sprintf("\x1b[?%dh", int(d.Mouse)))
  162. }
  163. }
  164. // Disable mouse support
  165. func (d *Door) DisableMouse() {
  166. if d.Mouse != Off {
  167. d.Write(fmt.Sprintf("\x1b[?%dl", int(d.Mouse)))
  168. }
  169. d.Mouse = Off
  170. }
  171. func (d *Door) AddMouse(mouse Mouse) {
  172. d.mcMutex.Lock()
  173. defer d.mcMutex.Unlock()
  174. d.LastMouse = append(d.LastMouse, mouse)
  175. }
  176. func (d *Door) GetMouse() (Mouse, bool) {
  177. d.mcMutex.Lock()
  178. defer d.mcMutex.Unlock()
  179. return ArrayDelete(&d.LastMouse, 0)
  180. }
  181. func (d *Door) GetCursorPos() (CursorPos, bool) {
  182. d.mcMutex.Lock()
  183. if DEBUG_DOOR {
  184. log.Printf("LastCursor %p/%p %d, %d\n", d, &d.LastCursor, len(d.LastCursor), cap(d.LastCursor))
  185. }
  186. defer d.mcMutex.Unlock()
  187. if DEBUG_DOOR {
  188. log.Printf("LastCursor: %#v\n", d.LastCursor)
  189. }
  190. return ArrayDelete(&d.LastCursor, 0)
  191. }
  192. func (d *Door) AddCursorPos(cursor CursorPos) {
  193. d.mcMutex.Lock()
  194. if DEBUG_DOOR {
  195. log.Printf("LastCursor %p/%p %d, %d\n", d, &d.LastCursor, len(d.LastCursor), cap(d.LastCursor))
  196. }
  197. defer d.mcMutex.Unlock()
  198. d.LastCursor = append(d.LastCursor, cursor)
  199. if DEBUG_DOOR {
  200. log.Printf("LastCursor now %d, %d\n", len(d.LastCursor), cap(d.LastCursor))
  201. log.Printf("AddCursor: %#v\n", d.LastCursor)
  202. }
  203. }
  204. func (d *Door) ClearMouseCursor() {
  205. d.mcMutex.Lock()
  206. defer d.mcMutex.Unlock()
  207. if DEBUG_DOOR {
  208. log.Println("ClearMouseCursor")
  209. }
  210. d.LastMouse = make([]Mouse, 0, 2)
  211. d.LastCursor = make([]CursorPos, 0, 3)
  212. }
  213. // Return the amount of time left as time.Duration
  214. func (d *Door) TimeLeft() time.Duration {
  215. return time.Until(d.TimeOut)
  216. }
  217. func (d *Door) TimeUsed() time.Duration {
  218. return time.Since(d.StartTime)
  219. }
  220. func (d *Door) Disconnect() bool {
  221. return d.Disconnected // atomic.LoadInt32(&d.Disconnected) != 0
  222. }
  223. // Read the BBS door file. We only support door32.sys.
  224. func (d *Door) ReadDropfile(filename string) {
  225. var file *os.File
  226. var err error
  227. file, err = os.Open(filename)
  228. if err != nil {
  229. log.Panicf("Open(%s): %s\n", filename, err)
  230. }
  231. defer file.Close()
  232. var lines []string
  233. // read line by line
  234. // The scanner handles DOS and linux file endings.
  235. var scanner *bufio.Scanner = bufio.NewScanner(file)
  236. for scanner.Scan() {
  237. line := scanner.Text()
  238. lines = append(lines, line)
  239. }
  240. d.Config.Comm_type, err = strconv.Atoi(lines[0])
  241. if err != nil {
  242. log.Panicf("Door32 Comm Type (expected integer): %s\n", err)
  243. }
  244. d.Config.Comm_handle, err = strconv.Atoi(lines[1])
  245. if err != nil {
  246. log.Panicf("Door32 Comm Handle (expected integer): %s\n", err)
  247. }
  248. d.Config.Baudrate, err = strconv.Atoi(lines[2])
  249. if err != nil {
  250. log.Panicf("Door32 Baudrate (expected integer): %s\n", err)
  251. }
  252. d.Config.BBSID = lines[3]
  253. d.Config.User_number, err = strconv.Atoi(lines[4])
  254. if err != nil {
  255. log.Panicf("Door32 User Number (expected integer): %s\n", err)
  256. }
  257. d.Config.Real_name = lines[5]
  258. d.Config.Handle = lines[6]
  259. d.Config.Security_level, err = strconv.Atoi(lines[7])
  260. if err != nil {
  261. log.Panicf("Door32 Security Level (expected integer): %s\n", err)
  262. }
  263. d.Config.Time_left, err = strconv.Atoi(lines[8])
  264. if err != nil {
  265. log.Panicf("Door32 Time Left (expected integer): %s\n", err)
  266. }
  267. d.Config.Emulation, err = strconv.Atoi(lines[9])
  268. if err != nil {
  269. log.Panicf("Door32 Emulation (expected integer): %s\n", err)
  270. }
  271. d.Config.Node, err = strconv.Atoi(lines[10])
  272. if err != nil {
  273. log.Panicf("Door32 Node Number (expected integer): %s\n", err)
  274. }
  275. if d.Config.Comm_type == 0 {
  276. d.READFD = 0
  277. d.WRITEFD = 1
  278. // RAW MODE
  279. d.tio_default, _ = term.MakeRaw(d.READFD)
  280. } else if d.Config.Comm_type == 2 {
  281. d.READFD = d.Config.Comm_handle
  282. d.WRITEFD = d.Config.Comm_handle
  283. } else {
  284. log.Panicf("Unsupported Comm type %d\n", d.Config.Comm_type)
  285. }
  286. d.StartTime = time.Now()
  287. // Calculate when time expires.
  288. d.TimeOut = time.Now().Add(time.Duration(d.Config.Time_left) * time.Minute)
  289. }
  290. func (d *Door) Detect() bool {
  291. // detect is destructive ... make it non-destructive
  292. // destructive: clears/trashes the screen.
  293. var detect string = "\r\x03\x04" + CURSOR_POS + "\b \b\b \b" +
  294. "\r\u2615" + CURSOR_POS + "\b \b\b \b\b \b" +
  295. SAVE_POS + "\x1b[999C\x1b[999B" + CURSOR_POS + RESTORE_POS
  296. // hot beverage is 3 bytes long -- need 3 "\b \b" to erase.
  297. d.Write(detect)
  298. var info []CursorPos = make([]CursorPos, 0, 3)
  299. var done bool
  300. for !done {
  301. _, ex, err := d.WaitKey(time.Second)
  302. log.Println("WaitKey:", ex, err)
  303. if ex == CURSOR {
  304. cursor, ok := d.GetCursorPos()
  305. if ok {
  306. info = append(info, cursor)
  307. if len(info) == 3 {
  308. done = true
  309. }
  310. }
  311. }
  312. if err != nil {
  313. done = true
  314. }
  315. }
  316. if len(info) != 3 {
  317. // Detection FAILED.
  318. log.Println("Detect FAILED:", info)
  319. return false
  320. }
  321. // Ok! Let's see what we've got...
  322. var valid bool
  323. // Where did I get these numbers from?
  324. // linux term (telnet/ssh) [0].X = 1, [1].X = 3
  325. // VS Code terminal: 1, 3
  326. // https://docs.python.org/3/library/unicodedata.html
  327. // \u2615 is a fullwidth (2 char) unicode symbol!
  328. // SO, [1].X == 3 // and not 2.
  329. // syncterm [0].X = 3, [1].X = 4
  330. // Magiterm [0].X = 3, [1].X = 4
  331. // cp437 + telnet [0].X = 1, [1].X = 4 FullCP437 = False
  332. // ^ Fails FullCP437 test - characters codes ignored.
  333. // cp437plus + telnet 3, 4. (Has FullCP437 support.)
  334. // if (info[0].X == 1 || info[0].X == 3) &&
  335. // (info[1].X == 2 || info[1].X == 3) {
  336. // Breakdown by detected type:
  337. // Unicode \x03 \x04 (control codes ignored)
  338. // Unicode \u2615 = fullwidth takes up 2 characters
  339. // CP437 \x03 \x04 Hearts Diamonds Symbols 2 characters
  340. // ^ Only works for FullCP437
  341. // CP437 \u2615 = b'\xe2\x98\x95' 3 bytes
  342. // So info[1].X = 4
  343. if info[0].X == 1 && info[1].X == 3 {
  344. Unicode = true
  345. valid = true
  346. } else {
  347. // info[1].X = 4
  348. Unicode = false
  349. CP437 = true
  350. valid = true
  351. }
  352. if info[0].X == 3 {
  353. Full_CP437 = true
  354. }
  355. if !valid {
  356. log.Println("Detect FAILED (not valid):", info)
  357. return false
  358. }
  359. Width, Height = info[2].X, info[2].Y
  360. // Putty doesn't seem to restoring the cursor position (when detecting).
  361. d.Write(Goto(1, info[0].Y))
  362. log.Printf("Unicode: %t, CP437: %t, Full %t, Screen %v\n", Unicode, CP437, Full_CP437, info[2])
  363. return true
  364. }
  365. // Initialize door framework. Parse commandline, read dropfile,
  366. // detect terminal capabilities.
  367. func (d *Door) Init(doorname string) {
  368. var dropfile string
  369. d.Pushback = NewFIFOBuffer[rune](5)
  370. // Get path to binary, and chdir to it.
  371. var binaryPath string
  372. binaryPath, _ = os.Executable()
  373. binaryPath = filepath.Dir(binaryPath)
  374. _ = os.Chdir(binaryPath)
  375. flag.StringVar(&dropfile, "d", "", "Path to dropfile")
  376. flag.Parse()
  377. if len(dropfile) == 0 {
  378. flag.PrintDefaults()
  379. os.Exit(2)
  380. }
  381. d.ReadDropfile(dropfile)
  382. // Logfile will be doorname - node #
  383. var logfilename string = fmt.Sprintf("%s-%d.log", doorname, d.Config.Node)
  384. var logf *os.File
  385. var err error
  386. logf, err = os.OpenFile(logfilename, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0666)
  387. if err != nil {
  388. log.Panicf("Error creating log file %s: %v", logfilename, err)
  389. }
  390. // Set logging output to logfilename.
  391. log.SetOutput(logf)
  392. log.SetFlags(log.Ldate | log.Ltime | log.Lshortfile)
  393. log.Printf("Loading dropfile %s\n", dropfile)
  394. 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)
  395. d.readerChannel = make(chan ReaderData, 16) // was 8 ?
  396. d.writerChannel = make(chan string) // unbuffered
  397. d.ClearMouseCursor()
  398. d.setupChannels()
  399. d.Detect()
  400. if Unicode {
  401. BOXES = BOXES_UNICODE
  402. BARS = BARS_UNICODE
  403. } else {
  404. BOXES = BOXES_CP437
  405. BARS = BARS_CP437
  406. }
  407. }
  408. func (d *Door) Close() {
  409. defer func() {
  410. if err := recover(); err != nil {
  411. log.Println("door.Close FAILURE:", err)
  412. // This displays stack trace stderr
  413. debug.PrintStack()
  414. }
  415. }()
  416. d.DisableMouse()
  417. log.Println("Closing...")
  418. close(d.writerChannel)
  419. log.Println("wg.Wait()")
  420. d.wg.Wait()
  421. log.Println("Closed.")
  422. if d.Config.Comm_type == 0 {
  423. // Linux - restore console settings to default/original.
  424. term.Restore(d.READFD, d.tio_default)
  425. }
  426. }
  427. // Goto X, Y - Position the cursor using ANSI Escape Codes
  428. //
  429. // Example:
  430. //
  431. // d.Write(door.Goto(1, 5) + "Now at X=1, Y=5.")
  432. func Goto(x int, y int) string {
  433. return fmt.Sprintf("\x1b[%d;%dH", y, x)
  434. }