blob: 3aef50a84a12f23a96c97a511fe0e5a899f29002 (
plain) (
blame)
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
|
import kotlinx.cinterop.*
import platform.posix.*
class Loader(path: String) {
private val inputString = read(path)
// TODO: Add preprocessor managing imports and comments
fun preprocess(): String {
return inputString.replace("\n", "")
}
private fun read(path: String): String {
setlocale(LC_CTYPE, "en_US.UTF-8")
val file = fopen(path, "r")
if (file == null) {
perror("Couldn't open file: $path")
}
memScoped {
val bufferLength = 64 * 1024
val buffer = allocArray<ByteVar>(bufferLength)
var content = ""
var nextLine = fgets(buffer, bufferLength, file)?.toKString()
while (nextLine != null) {
content += nextLine
nextLine = fgets(buffer, bufferLength, file)?.toKString()
}
fclose(file)
return content
}
}
}
|