summaryrefslogtreecommitdiff
path: root/src/main/kotlin/WebOS.kt
blob: 5bb788cc7e4cf98e85ebef46b38b5b6c333bf897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
import io.FileService
import io.Path
import io.PrimitiveFileService
import io.PrimitiveINode
import kotlinx.browser.document
import kotlinx.browser.window
import org.w3c.dom.Element
import org.w3c.dom.Node
import org.w3c.dom.asList
import org.w3c.dom.events.Event
import org.w3c.dom.events.KeyboardEvent
import kotlin.properties.Delegates

fun main() {
	console.log("Hello from Kotlin")

	val runner = IORunner.runOnIO {
		println("ON START")
		wait()
		println("WAIT CALLED ONCE")
		val x = getOneKey()
		println("INPUT GET: $x")
		println("EXITING NOW")
	}
	println("runOnIO called -> CALLING WHATEVER")
	runner._CALLED_BY_JS_onWhatever()
	println("CALLED WHATEVER -> CALLING INPUT")
	runner._CALLED_BY_JS_onInput(window.prompt("INPUT") ?: "NO INPUT")
	println("CALLED INPUT")
	return






	val webos = WebOS()
	document.body?.addEventListener("load", {
		document.body?.querySelectorAll(".webosconsole")?.asList()?.forEach {
			if (it !is Element) return@forEach
			webos.registerConsole(it)
		}
	})
}

data class CharacterRun(val text: String, val color: String)

abstract class Activity(val console: Console) {

	open fun handleKeyPress(key: Key) {}
	open fun update() {}
	abstract fun render(columns: Int, rows: Int): List<List<CharacterRun>>
}

class ShellRunner(console: Console) : Activity(console) {

	val history = mutableListOf<String>()

	val shellProgramStack = ArrayDeque<ShellProgram>()

	var lastLine = ""

	fun newLine() {
		history.add(lastLine)
		lastLine = ""
		console.invalidateRender()
	}

	fun println(it: String = "") {
		print(it)
		newLine()
	}

	fun print(it: String) {
		lastLine += it
		console.invalidateRender()
	}

	override fun update() {
		shellProgramStack.lastOrNull()?.update()
	}

	fun getInput(): String? {
		if (inputBuffer.contains("\n")) {
			val r = inputBuffer.substringBefore("\n")
			inputBuffer = inputBuffer.substringAfter("\n")
			return r
		}
		return null
	}

	override fun render(columns: Int, rows: Int): List<List<CharacterRun>> =
		history.map { listOf(CharacterRun(it.take(columns), "white")) }.takeLast(rows - 1) + listOf(
			listOf(
				CharacterRun(
					lastLine + inputBuffer,
					"white"
				)
			)
		)

	var inputBuffer = ""

	override fun handleKeyPress(key: Key) = when (key) {
		is Key.Printable -> {
			inputBuffer += key.char
		}
		is Key.Enter -> {
			inputBuffer += "\n"
		}
		else -> Unit
	}

	fun <T : ShellProgram> openShellProgram(program: (ShellRunner) -> T): ShellRunner = openShellProgram(program(this))

	fun <T : ShellProgram> openShellProgram(program: T): ShellRunner {
		shellProgramStack.addLast(program)
		return this
	}

}

abstract class ShellProgram(val shellRunner: ShellRunner) {

	abstract fun update(): Unit
}

sealed class Key {
	object Alt : Key()
	object AltGraph : Key()
	object CapsLock : Key()
	object Control : Key()
	object Function : Key()
	object FunctionLock : Key()
	object Hyper : Key()
	object Meta : Key()
	object NumLock : Key()
	object Shift : Key()
	object Super : Key()
	object Symbol : Key()
	object SymbolLock : Key()
	object Enter : Key()
	object Tab : Key()
	sealed class Arrow : Key() {
		object Down : Key()
		object Left : Key()
		object Right : Key()
		object Up : Key()
	}

	object End : Key()
	object Home : Key()
	object PageUp : Key()
	object PageDown : Key()
	object Backspace : Key()
	object Clear : Key()
	object Copy : Key()
	object CrSel : Key()
	object Cut : Key()
	object Delete : Key()
	object EraseEof : Key()
	object ExSel : Key()
	object Insert : Key()
	object Paste : Key()
	object Redo : Key()
	object Undo : Key()
	object Accept : Key()
	object Again : Key()
	object Attn : Key()
	object Cancel : Key()
	object ContextMenu : Key()
	object Escape : Key()
	object Execute : Key()
	object Find : Key()
	object Finish : Key()
	object Help : Key()
	class Printable(val char: Char) : Key()
	class FunctionN(val n: Int) : Key()
	companion object {

		fun from(string: String) = when (string) {
			"Alt" -> Alt
			"AltGraph" -> AltGraph
			"CapsLock" -> CapsLock
			"Control" -> Control
			"Fn" -> Function
			"FnLock" -> FunctionLock
			"Hyper" -> Hyper
			"Meta" -> Meta
			"NumLock" -> NumLock
			"Shift" -> Shift
			"Super" -> Super
			"Symbol" -> Symbol
			"SymbolLock" -> SymbolLock
			"Enter" -> Enter
			"Tab" -> Tab
			"Down" -> Arrow.Down
			"Left" -> Arrow.Left
			"Right" -> Arrow.Right
			"Up" -> Arrow.Up
			"End" -> End
			"Home" -> Home
			"PageUp" -> PageUp
			"PageDown" -> PageDown
			"Backspace" -> Backspace
			"Clear" -> Clear
			"Copy" -> Copy
			"CrSel" -> CrSel
			"Cut" -> Cut
			"Delete" -> Delete
			"EraseEof" -> EraseEof
			"ExSel" -> ExSel
			"Insert" -> Insert
			"Paste" -> Paste
			"Redo" -> Redo
			"Undo" -> Undo
			"Accept" -> Accept
			"Again" -> Again
			"Attn" -> Attn
			"Cancel" -> Cancel
			"ContextMenu" -> ContextMenu
			"Escape" -> Escape
			"Execute" -> Execute
			"Find" -> Find
			"Finish" -> Finish
			"Help" -> Help
			else -> if (string.length == 1)
				Printable(string.first())
			else if (string.first() == 'F')
				FunctionN(string.substring(1).toInt())
			else throw TODO()
		}
	}
}

class Login(shellRunner: ShellRunner) : ShellProgram(shellRunner) {

	override fun update() {
		while (true)
			when (state) {
				0 -> {
					shellRunner.print("Username: ")
					state = 1
				}
				1 -> {
					val inp = shellRunner.getInput() ?: return
					shellRunner.println(inp)
					shellRunner.print("Password: ")
					username = inp
					state = 2
				}
				2 -> {
					val inp = shellRunner.getInput() ?: return
					shellRunner.println(inp)
					shellRunner.println("Login complete)")
					password = inp
					// TODO: check password and set user
					state = 3
				}
				3 -> {
					TODO()
				}
			}

	}

	var state = 0
	var username = ""
	var password = ""

}

class Console(val os: WebOS, val renderElement: Element?) {

	val isVirtual get() = renderElement == null
	val activityStack = ArrayDeque<Activity>()

	var columns: Int = 80
	var rows: Int = 46

	var shouldRerender = true

	var currentUser: User? = null

	private var _workingDirectory: Path.Absolute? = null

	var workingDirectory: Path.Absolute
		get() = _workingDirectory ?: currentUser?.homeDirectory ?: Path.root
		set(value) {
			_workingDirectory = value
		}

	init {
		renderElement?.addEventListener("keydown", ::computeKeypressEvent)
	}

	fun computeKeypressEvent(event: Event) {
		if (!isInFocus()) return
		if (event !is KeyboardEvent) return
		activityStack.lastOrNull()?.handleKeyPress(Key.from(event.key))
	}

	private fun isInFocus(): Boolean = renderElement.containsOrIs(document.activeElement)

	private fun Node?.containsOrIs(node: Node?) = this == node || this?.contains(node) ?: false

	fun <T : Activity> openActivity(activity: (Console) -> T): Console = openActivity(activity(this))

	fun <T : Activity> openActivity(activity: T): Console {
		activityStack.addLast(activity)
		invalidateRender()
		return this
	}

	fun render() {
		if (renderElement == null) return
		if (!shouldRerender) return
		shouldRerender = false
		val x = activityStack.lastOrNull()?.render(columns, rows)
		console.log(x)
	}

	fun invalidateRender() {
		shouldRerender = true
		window.requestAnimationFrame { render() }
	}

	fun resize(newColumns: Int, newRows: Int) {
		invalidateRender()
	}

	// TODO: Handle resizes of the renderElement

	fun update(): Unit {
		activityStack.lastOrNull()?.update()
	}

	var updateInterval by Delegates.notNull<Int>()

	fun start(): Console {
		updateInterval = window.setInterval(::update, 10)
		return openActivity(ShellRunner(this).also { it.openShellProgram(Login(it)) })
	}

	fun destroy() {
		window.clearInterval(updateInterval)
	}

}

class WebOS {

	val hostname: String = "host"
	private val _consoles = mutableListOf<Console>()
	val consoles get() = _consoles.toList()
	val files: FileService<PrimitiveINode> = PrimitiveFileService()
	fun registerConsole(element: Element) {
		_consoles.add(Console(this, element))
	}
}

data class User(
	val name: String,
	val homeDirectory: Path.Absolute,
	val isRoot: Boolean = false,
)