Inspector v0.2: snapshot'ed symbols state of another process

For the Compleat Fan
Locked
hartrock
Posts: 136
Joined: Wed Aug 07, 2013 9:37 pm

Inspector v0.2: snapshot'ed symbols state of another process

Post by hartrock »

Inspector v0.2 at Github: https://github.com/hartrock/Inspector#inspector.

Now it is possible to explore another newLISP's symbols state by snapshot'ing it, and viewing the result in the browser after starting Inspector.

Snapshot'ing only needs minimal code:

Code: Select all

#!/usr/bin/env newlisp
(load "modules/Util.lsp")
(load "modules/Introspection.lsp")

;; make snapshot
(set 'filepath "/tmp/snapshot.json")
(define (make-snapshot filepath)
  (write-file filepath
              (Introspection:symbols-to-JSON (Util:symbols-all))))

(make-snapshot filepath)
(println "You may look onto snapshot's symbols by\n"
         "  http:localhost:8080/symbols.html?file="
         filepath "\n.")
Result can be viewn by http://localhost:8080/symbols.html?file ... pshot.json then: see
https://github.com/hartrock/Inspector/b ... sp-process for a screenshot of viewing context folders of a minimal system; and https://github.com/hartrock/Inspector/b ... sp-process for more info.

Locked