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

41
LINES

< > BotCompany Repo | #711 // "runnable {" (JavaX translator)

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

Libraryless. Click here for Pure Java version (129L/2K/5K).

// Syntax: runnable { doSomething(); }

!592 1000265 // auto-importer, standard function adder 

public class main {
  public static void main(String[] args) throws Exception {
    String s = loadMainJava();
    
    Pattern regex = Pattern.compile("(\\W)(?:runnable|r)\\s*\\{");
    
    for (int i = 0; i < 100; i++) {
      Matcher matcher = regex.matcher(s);
      if (!matcher.find())
        break;

      System.out.println("Iteration " + (i+1));
      int start = matcher.start()+1, end = matcher.end();
      int endOfBlock = findEndOfBlock(s, end);
      
      String listener = "new Runnable() {\n" +
        "public void run() { try {\n" +
        s.substring(end, endOfBlock) + "\n} catch (Exception __e) { throw __e instanceof RuntimeException ? (RuntimeException) __e : new RuntimeException(__e); }}";
      s = s.substring(0, start) + listener + s.substring(endOfBlock);
    }
    
    saveMainJava(s);
  }
  
  // start is the index AFTER the opening bracket
  // returns index OF closing bracket
  static int findEndOfBlock(String s, int start) {
    int level = 1;
    for (int i = start; i < s.length(); i++) {
      if (s.charAt(i) == '{') ++level;
      else if (s.charAt(i) == '}') --level;
      if (level == 0)
        return i;
    }
    return s.length();
  }
}

Author comment

Began life as a copy of #614

download  show line numbers  debug dex  old transpilations   

Travelled to 21 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, ddnzoavkxhuk, dhtvkmknsjym, gwrvuhgaqvyk, hxnwyiuffukg, ishqpsrjomds, jlatgrcjtklg, jtubtzbbkimh, liwcxgsjrgqn, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, teubizvjbppd, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #711
Snippet name: "runnable {" (JavaX translator)
Eternal ID of this version: #711/1
Text MD5: 24eec70f516a8b8c02a054e0f34b5c22
Transpilation MD5: f354894b00855c9da2b85e041aec3c7c
Author: stefan
Category:
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-12-04 23:55:51
Source code size: 1329 bytes / 41 lines
Pitched / IR pitched: No / No
Views / Downloads: 677 / 14330
Referenced in: [show references]