Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

45
LINES

< > BotCompany Repo | #1006326 // jInjectionsTable

JavaX fragment (include)

static int jInjectionsTable_updateInterval = 3000;

static JTable jInjectionsTable() {
  final JTable tbl = sexyTable();
  
  tablePopupMenu(tbl, voidfunc(JPopupMenu menu, final Int row) {
    final int port = parseIntOpt(str(getTableLineAsMap(tbl, row).get("VM")));
    if (port != 0) {
      addMenuItem(menu, "Kill VM", r-thread { killVM(port) });
      addMenuItem(menu, "Restart Program", r-thread { restartVM(port) });
      addMenuItem(menu, "Show VM Output", r-thread {
        thread "Show VM Output" {
          showText("Output of VM " + port, unquote(sendToLocalBot(port, "get output")));
        }
      });
      addMenuItem(menu, "Hide VM", r-thread {
        send(port, "hidden vm yes")
      });
      addMenuItem(menu, "Un-Hide VM / Show Console", r-thread {
        send(port, "show console");
        send(port, "hidden vm no")
      });
      addMenuItem(menu, "Dump heap...", r {
        inputFilePath("Dump heap to where?", new File(javaxCachesDir(), "heap.bin"), voidfunc(File f) {
          pcall-messagebox {
            assertOK(send(port, "dump heap to *", f2s(f)));
            infoBox("Heap dumped to " + fileNamePlusMSize(f));
            if (confirmOKCancel("Start jhat (heap analysis server running on localhost:7000)?")) {
              nohupJavax("#1007494 " + f2s(f));
              infoBox("Tried to start jhat.");
            }
          }
        });
      });
      addMenuItem(menu, "Garbage Collect", r-thread {
        send(port, "gc")
      });
    }
  });
  
  awtCalcRegularly(tbl, jInjectionsTable_updateInterval, 0, r {
    dataToTable(tbl, computerInjectionsData());
  });
  ret tbl;
}

Author comment

Began life as a copy of #1001744

download  show line numbers  debug dex  old transpilations   

Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, sawdedvomwva, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1006326
Snippet name: jInjectionsTable
Eternal ID of this version: #1006326/21
Text MD5: ee66a79d4a052de21d0bc37e6ff5bc31
Author: stefan
Category: javax / gui
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2020-09-30 12:56:06
Source code size: 1680 bytes / 45 lines
Pitched / IR pitched: No / No
Views / Downloads: 503 / 492
Version history: 20 change(s)
Referenced in: [show references]