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

43
LINES

< > BotCompany Repo | #1002174 // avg processing time bot

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (1627L/10K/34K).

!752

static class Event {
  long startTime, duration;
  S question, answer;
  S botID;
}

static PersistentLog<Event> data;

p {
  data = new PersistentLog("data.log");
}

synchronized answer {
  if "avg processing time" {
    if (empty(data)) ret "No data yet";
    long avg = round(getAverage(data, "duration"));
    ret avg + " ms per question (" + l(data) + " requests counted)";
  }
  
  if (match("clear avg processing time", s) && getUserName() != null) {
    data.clear();
    ret "OK, log cleared.";
  }
}

static synchronized S answerPriv(S s) {
  new Matches m;
  if (match("log timing *", s, m)) {
    new Event e;
    copyFields(safeUnstructure(m.unq(0)), e);
    
    // mandatory fields
    assertTrue(e.startTime != 0);
    assertTrue(e.duration >= 0);
    assertTrue(!empty(e.question));
    
    data.add(e);
    ret "OK, logged as item " + l(data);
  }
  ret null;
}

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1002174
Snippet name: avg processing time bot
Eternal ID of this version: #1002174/1
Text MD5: dbd75303862a6d8b663f2e09b2e5d6f6
Transpilation MD5: 061ffe3f45e9c11725cc1b1a4ef4c740
Author: stefan
Category: javax
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-01-19 18:02:41
Source code size: 930 bytes / 43 lines
Pitched / IR pitched: No / No
Views / Downloads: 612 / 1687
Referenced in: #3000169 - Answer for stefanreich
#3000174 - Answer for stefanreich
#3000175 - Answer for stefanreich
#3000176 - Answer for stefanreich
#3000177 - Answer for stefanreich
#3000179 - Answer for stefanreich
#3000180 - Answer for stefanreich
#3000181 - Answer for stefanreich
#3000182 - Answer for stefanreich
#3000184 - Answer for stefanreich
#3000185 - Answer for stefanreich
#3000195 - Answer for stefanreich (>> y)
#3000196 - Answer for stefanreich (>> y)
#3000197 - Answer for stefanreich (>> program data sizes)
#3000198 - Answer for stefanreich (>> program data sizes)
#3000199 - Answer for stefanreich (>> program data sizes)
#3000200 - Answer for stefanreich (>> program data sizes)
#3000201 - Answer for stefanreich (>> list all files)
#3000202 - Answer for stefanreich (>> T conversion bot)
#3000203 - Answer for stefanreich (>> timing hello bot)
#3000208 - Answer for bgrgndz (>> list sub bots)
#3000209 - Answer for bgrgndz (>> list sub bots)
#3000238 - Answer for stefanreich (>> t power bot)
#3000369 - Answer for Stefan (>> list sub bots)
#3000376 - Answer for stefanreich (>> list sub bots)
#3000377 - Answer for stefanreich (>> timing eleu?)
#3000380 - Answer for stefanreich (>> list sub bots)
#3000381 - Answer for speedforce (>> list sub bots)
#3000382 - Answer for ferdie (>> t = 1, f = 0)