ide/editor/src/main/java/org/apidesign/bck2brwsr/ide/editor/ManglingSink.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 13 Feb 2013 12:08:00 +0100
branchide
changeset 717 58ce0cd13d26
permissions -rw-r--r--
Igor's dejsni files and tests. Modified to compile.
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.ide.editor;
    19 
    20 /**
    21  * An implementation of {@linkplain JsniCommentTokenizer.Sink} that generates B2B
    22  */
    23 class ManglingSink implements JsniCommentTokenizer.Sink {
    24 
    25     final StringBuilder out = new StringBuilder();
    26 
    27     public void javascript(String s) {
    28         out.append(s);
    29     }
    30 
    31     public void method(String clazz, String method, String signature) {
    32         out.append(mangle(clazz, method, signature));
    33     }
    34 
    35     public void field(String clazz, String field) {
    36 //        out.append(field);
    37         out.append('_').append(field).append('(').append(')');
    38     }
    39 
    40 
    41     @Override
    42     public String toString() {
    43         return out.toString();
    44     }
    45 
    46 
    47     static String mangle(String clazz, String method, String signature) {
    48         final StringBuilder builder = new StringBuilder();
    49         builder.append(method);
    50         builder.append("__");
    51         builder.append(mangle(JNIHelper.signature(JNIHelper.method(clazz, method, signature).getReturnType())));
    52         builder.append(mangle(signature));
    53         return builder.toString();
    54     }
    55 
    56 
    57     static String mangle(String txt) {
    58         final StringBuilder sb = new StringBuilder();
    59         for (int i = 0; i < txt.length(); i++) {
    60             final char ch = txt.charAt(i);
    61             switch (ch) {
    62                 case '/': sb.append('_'); break;
    63                 case '_': sb.append("_1"); break;
    64                 case ';': sb.append("_2"); break;
    65                 case '[': sb.append("_3"); break;
    66                 default: sb.append(ch); break;
    67             }
    68         }
    69         return sb.toString();
    70     }
    71 }