chat/client/src/main/java/org/apidesign/html/chatserver/client/ChatClient.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 12 Jan 2014 23:25:42 +0100
branchNbHtml4J
changeset 57 9984b9f7d8c6
parent 15 91219d000cb8
child 83 1b1d3f559196
permissions -rw-r--r--
Adjusting to new naming scheme (which includes netbeans name)
     1 /**
     2  * The MIT License (MIT)
     3  *
     4  * Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     5  *
     6  * Permission is hereby granted, free of charge, to any person obtaining a copy
     7  * of this software and associated documentation files (the "Software"), to deal
     8  * in the Software without restriction, including without limitation the rights
     9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    10  * copies of the Software, and to permit persons to whom the Software is
    11  * furnished to do so, subject to the following conditions:
    12  *
    13  * The above copyright notice and this permission notice shall be included in
    14  * all copies or substantial portions of the Software.
    15  *
    16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    22  * THE SOFTWARE.
    23  */
    24 package org.apidesign.html.chatserver.client;
    25 
    26 import net.java.html.json.ComputedProperty;
    27 import net.java.html.json.Function;
    28 import net.java.html.json.Model;
    29 import net.java.html.json.OnReceive;
    30 import net.java.html.json.Property;
    31 import org.apidesign.html.chatserver.model.Message;
    32 import org.apidesign.html.chatserver.model.Query;
    33 
    34 /**
    35  *
    36  * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    37  */
    38 @Model(className = "ChatModel", properties = {
    39     @Property(name = "user", type = String.class),
    40     @Property(name = "comment", type = String.class),
    41     @Property(name = "msgs", type = Message.class, array = true)
    42 })
    43 class ChatClient {
    44     @ComputedProperty
    45     static boolean sendEnabled(String user, String comment) {
    46         boolean res = user != null && comment != null && !user.isEmpty() && !comment.isEmpty();
    47         return res;
    48     }
    49     
    50     @Function
    51     static void submit(ChatModel m) {
    52         if (!sendEnabled(m.getUser(), m.getComment())) {
    53             return;
    54         }
    55         Message msg = new Message();
    56         msg.setUser(m.getUser());
    57         msg.setComment(m.getComment());
    58         m.postComment(msg);
    59     }
    60     
    61     @OnReceive(url = "/chat", method = "POST", data = Message.class)
    62     static void postComment(ChatModel m, Message addedMessage) {
    63         if (addedMessage.getComment().equals(m.getComment())) {
    64             m.setComment("");
    65         }
    66     }
    67     
    68     @OnReceive(url = "/chat?since=0")
    69     static void initialRead(ChatModel m, Query q) {
    70         m.getMsgs().clear();
    71         m.getMsgs().addAll(q.getMessages());
    72         moreMessages(m);
    73     }
    74     
    75     @OnReceive(url = "/chat?since={since}")
    76     static void updateMsgs(ChatModel m, Query q) {
    77         m.getMsgs().addAll(q.getMessages());
    78         moreMessages(m);
    79     }
    80     
    81     private static void moreMessages(ChatModel m) {
    82         long now = 0;
    83         for (Message msg : m.getMsgs()) {
    84             if (now < msg.getSince()) {
    85                 now = msg.getSince();
    86             }
    87         }
    88         m.updateMsgs("" + (now + 1));
    89     }
    90     
    91     static {
    92         ChatModel chm = new ChatModel();
    93         Message m = new Message();
    94         m.setComment("Waiting for messages from the server...");
    95         m.setUser("system");
    96         chm.getMsgs().add(m);
    97         chm.applyBindings();
    98         try {
    99             // XXX: this should not be in static initializer -
   100             // XXX: prevents unit testing!
   101             chm.initialRead();
   102         } catch (Throwable ex) {
   103         }
   104     }
   105 }