about summary refs log tree commit diff stats
path: root/src/kilo.c
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-10 23:19:05 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-10 23:20:59 -0800
commitf43a1c7da06ce1b72eccb75cae960b4fe2683d34 (patch)
tree0ad789e6bf996e5690b70d90483fd5bcd3ab2ffe /src/kilo.c
parent3d6c80e08e6619d64bf6abca19fad2c1aafba835 (diff)
downloadteliva-f43a1c7da06ce1b72eccb75cae960b4fe2683d34.tar.gz
edit a single hard-coded definition in the image
src/teliva counter.tlv
C-e  # switch to editor
C-e  # save and quit
C-x  # exit

counter.tlv now has the same logical contents, though the whitespace has
changed, and the order of keys is different.

The implementation is utterly ghastly. For one, I'm unnecessarily
interfacing with kilo through the file system.
Diffstat (limited to 'src/kilo.c')
-rw-r--r--src/kilo.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/kilo.c b/src/kilo.c
index e07c3f2..b341a86 100644
--- a/src/kilo.c
+++ b/src/kilo.c
@@ -53,6 +53,9 @@
 #include <stdarg.h>
 #include <fcntl.h>
 #include <signal.h>
+#include <stdio.h>
+
+#include "lua.h"
 
 /* Syntax highlight types */
 #define HL_NORMAL 0
@@ -1264,3 +1267,50 @@ void edit(char* filename, char* message) {
     }
     disableRawMode(STDIN_FILENO);
 }
+
+extern void teliva_get_definition(lua_State *L, const char *name);
+extern void stackDump (lua_State *L);
+extern int dostring (lua_State *L, const char *s, const char *name);
+extern char *Image_name;
+void editString(lua_State *L, char *name) {
+    /* write given definition out to tmp file */
+//?     stackDump(L);
+    teliva_get_definition(L, name);
+//?     stackDump(L);
+    char *contents = lua_tostring(L, -1);
+    int outfd = open("teliva_editbuffer", O_WRONLY|O_CREAT|O_TRUNC, 0644);
+    write(outfd, contents, strlen(contents));
+    close(outfd);
+
+    /* edit tmp file */
+    edit("teliva_editbuffer", "");
+
+    /* read contents of tmp file */
+    char new_contents[8192] = {0};
+    int infd = open("teliva_editbuffer", O_RDONLY);
+    read(infd, new_contents, 8190);  /* TODO: handle overly large file */
+    close(infd);
+
+    /* save contents back into image */
+    lua_pop(L, 1);
+    lua_pushstring(L, new_contents);
+    lua_setfield(L, -2, name);
+
+    /* save teliva_program to disk */
+    int table = lua_gettop(L);
+    FILE* fp = fopen(Image_name, "w");
+    fprintf(fp, "teliva_program = {\n");
+    for (lua_pushnil(L); lua_next(L, table) != 0; lua_pop(L, 1)) {
+      const char* key = lua_tostring(L, -2);
+      const char* value = lua_tostring(L, -1);
+      fprintf(fp, "  %s = [[", key);
+      fprintf(fp, "%s", value);
+      fprintf(fp, "]],\n");
+    }
+    fprintf(fp, "}\n");
+    fclose(fp);
+
+    /* reload binding */
+    dostring(L, new_contents, name);
+    /* TODO: handle error */
+}