javaquery/demo-calculator/src/main/java/org/apidesign/bck2brwsr/demo/calc/staticcompilation/Calc.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 28 May 2014 10:47:18 +0200
branchclosure
changeset 1609 752f48257d4a
parent 890 c8810910c311
child 1787 ea12a3bb4b33
permissions -rw-r--r--
All classes loaded through the 'vm' object will have 'invoke' method that can be used to invoke static methods like main(String[]), so our examples no longer need to rely on initialization in static initializers.
jaroslav@142
     1
/**
jaroslav@142
     2
 * Back 2 Browser Bytecode Translator
jaroslav@142
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@142
     4
 *
jaroslav@142
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@142
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@142
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@142
     8
 *
jaroslav@142
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@142
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@142
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@142
    12
 * GNU General Public License for more details.
jaroslav@142
    13
 *
jaroslav@142
    14
 * You should have received a copy of the GNU General Public License
jaroslav@142
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@142
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@142
    17
 */
jaroslav@511
    18
package org.apidesign.bck2brwsr.demo.calc.staticcompilation;
jaroslav@141
    19
jaroslav@879
    20
import java.util.List;
jaroslav@498
    21
import org.apidesign.bck2brwsr.htmlpage.api.ComputedProperty;
jaroslav@435
    22
import org.apidesign.bck2brwsr.htmlpage.api.On;
jaroslav@435
    23
import static org.apidesign.bck2brwsr.htmlpage.api.OnEvent.*;
jaroslav@879
    24
import org.apidesign.bck2brwsr.htmlpage.api.OnFunction;
jaroslav@141
    25
import org.apidesign.bck2brwsr.htmlpage.api.Page;
jaroslav@492
    26
import org.apidesign.bck2brwsr.htmlpage.api.Property;
jaroslav@141
    27
jaroslav@198
    28
/** HTML5 & Java demo showing the power of 
jaroslav@198
    29
 * <a href="http://wiki.apidesign.org/wiki/AnnotationProcessor">annotation processors</a>
jaroslav@198
    30
 * as well as other goodies.
jaroslav@198
    31
 * 
jaroslav@198
    32
 * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@198
    33
 */
jaroslav@492
    34
@Page(xhtml="Calculator.xhtml", properties = {
jaroslav@498
    35
    @Property(name = "memory", type = double.class),
jaroslav@498
    36
    @Property(name = "display", type = double.class),
jaroslav@498
    37
    @Property(name = "operation", type = String.class),
jaroslav@877
    38
    @Property(name = "hover", type = boolean.class),
jaroslav@877
    39
    @Property(name = "history", type = double.class, array = true)
jaroslav@492
    40
})
jaroslav@511
    41
public class Calc {
jaroslav@1609
    42
    public static void main(String... args) throws Exception {
jaroslav@879
    43
        new Calculator().applyBindings().setOperation("plus");
jaroslav@510
    44
    }
jaroslav@505
    45
    
jaroslav@435
    46
    @On(event = CLICK, id="clear")
jaroslav@510
    47
    static void clear(Calculator c) {
jaroslav@510
    48
        c.setMemory(0);
jaroslav@510
    49
        c.setOperation(null);
jaroslav@510
    50
        c.setDisplay(0);
jtulach@197
    51
    }
jtulach@197
    52
    
jaroslav@435
    53
    @On(event = CLICK, id= { "plus", "minus", "mul", "div" })
jaroslav@830
    54
    static void applyOp(Calculator c, String id) {
jaroslav@510
    55
        c.setMemory(c.getDisplay());
jaroslav@830
    56
        c.setOperation(id);
jaroslav@510
    57
        c.setDisplay(0);
jtulach@197
    58
    }
jaroslav@498
    59
jaroslav@498
    60
    @On(event = MOUSE_OVER, id= { "result" })
jaroslav@830
    61
    static void attemptingIn(Calculator c) {
jaroslav@510
    62
        c.setHover(true);
jaroslav@498
    63
    }
jaroslav@498
    64
    @On(event = MOUSE_OUT, id= { "result" })
jaroslav@830
    65
    static void attemptingOut(Calculator c) {
jaroslav@510
    66
        c.setHover(false);
jaroslav@498
    67
    }
jtulach@197
    68
    
jaroslav@435
    69
    @On(event = CLICK, id="result")
jaroslav@510
    70
    static void computeTheValue(Calculator c) {
jaroslav@877
    71
        final double newValue = compute(
jaroslav@510
    72
            c.getOperation(), 
jaroslav@510
    73
            c.getMemory(), 
jaroslav@510
    74
            c.getDisplay()
jaroslav@877
    75
        );
jaroslav@877
    76
        c.setDisplay(newValue);
jaroslav@890
    77
        if (!c.getHistory().contains(newValue)) {
jaroslav@890
    78
            c.getHistory().add(newValue);
jaroslav@890
    79
        }
jaroslav@510
    80
        c.setMemory(0);
jaroslav@498
    81
    }
jaroslav@498
    82
    
jaroslav@879
    83
    @OnFunction
jaroslav@879
    84
    static void recoverMemory(Calculator c, double data) {
jaroslav@879
    85
        c.setDisplay(data);
jaroslav@879
    86
    }
jaroslav@879
    87
jaroslav@879
    88
    @OnFunction
jaroslav@879
    89
    static void removeMemory(Calculator c, double data) {
jaroslav@879
    90
        c.getHistory().remove(data);
jaroslav@879
    91
    }
jaroslav@879
    92
    
jaroslav@498
    93
    private static double compute(String op, double memory, double display) {
jaroslav@498
    94
        switch (op) {
jaroslav@498
    95
            case "plus": return memory + display;
jaroslav@498
    96
            case "minus": return memory - display;
jaroslav@498
    97
            case "mul": return memory * display;
jaroslav@498
    98
            case "div": return memory / display;
jaroslav@498
    99
            default: throw new IllegalStateException(op);
jtulach@197
   100
        }
jtulach@197
   101
    }
jtulach@197
   102
    
jaroslav@435
   103
    @On(event = CLICK, id={"n0", "n1", "n2", "n3", "n4", "n5", "n6", "n7", "n8", "n9"}) 
jaroslav@830
   104
    static void addDigit(String id, Calculator c) {
jaroslav@830
   105
        id = id.substring(1);
jaroslav@492
   106
        
jaroslav@510
   107
        double v = c.getDisplay();
jaroslav@492
   108
        if (v == 0.0) {
jaroslav@830
   109
            c.setDisplay(Integer.parseInt(id));
jtulach@197
   110
        } else {
jaroslav@495
   111
            String txt = Double.toString(v);
jaroslav@495
   112
            if (txt.endsWith(".0")) {
jaroslav@495
   113
                txt = txt.substring(0, txt.length() - 2);
jaroslav@495
   114
            }
jaroslav@830
   115
            txt = txt + id;
jaroslav@510
   116
            c.setDisplay(Double.parseDouble(txt));
jtulach@197
   117
        }
jaroslav@141
   118
    }
jaroslav@498
   119
jaroslav@498
   120
    @ComputedProperty
jaroslav@498
   121
    public static String displayPreview(
jaroslav@498
   122
        double display, boolean hover, double memory, String operation
jaroslav@498
   123
    ) {
jaroslav@498
   124
        if (!hover) {
jaroslav@498
   125
            return "Type numbers and perform simple operations! Press '=' to get result.";
jaroslav@498
   126
        }
jaroslav@498
   127
        return "Attempt to compute " + memory + " " + operation + " " + display + " = " + compute(operation, memory, display);
jaroslav@498
   128
    }
jaroslav@879
   129
    
jaroslav@879
   130
    @ComputedProperty
jaroslav@879
   131
    static boolean emptyHistory(List<?> history) {
jaroslav@879
   132
        return history.isEmpty();
jaroslav@879
   133
    }
jaroslav@141
   134
}