serverside/src/main/java/org/apidesign/bck2brwsr/demo/serverside/ChatServerResource.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 05 May 2013 15:38:59 +0200
changeset 6 ecb1ef414295
child 8 3e9cf87d5af3
permissions -rw-r--r--
Launcher also starts Jersey resource and binds it to /chat/
     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.bck2brwsr.demo.serverside;
    25 
    26 import java.io.Closeable;
    27 import java.lang.reflect.Field;
    28 import java.util.ArrayList;
    29 import java.util.List;
    30 import java.util.concurrent.Callable;
    31 import javax.ws.rs.Consumes;
    32 import javax.ws.rs.GET;
    33 import javax.ws.rs.PUT;
    34 import javax.ws.rs.Path;
    35 import javax.ws.rs.Produces;
    36 import javax.ws.rs.core.MediaType;
    37 import net.java.html.json.Context;
    38 import org.apidesign.bck2brwsr.launcher.Launcher;
    39 import org.glassfish.grizzly.http.server.HttpServer;
    40 import org.glassfish.grizzly.http.server.ServerConfiguration;
    41 import org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpContainer;
    42 import org.glassfish.jersey.server.ContainerFactory;
    43 import org.glassfish.jersey.server.ResourceConfig;
    44 
    45 /** Server side of the chat application.
    46  */
    47 @Path("/")
    48 public final class ChatServerResource {
    49     public static void main(String... args) throws Exception {
    50         ResourceConfig rc = new ResourceConfig(ChatServerResource.class);
    51         GrizzlyHttpContainer c = ContainerFactory.createContainer(GrizzlyHttpContainer.class, rc);
    52         Closeable s = Launcher.showURL(
    53             "bck2brwsr", ChatClient.class.getClassLoader(),
    54             "/org/apidesign/bck2brwsr/demo/serverside/chat.html"
    55         );
    56         Launcher l = (Launcher) s;
    57         Callable<?> f = (Callable<?>) l;
    58         HttpServer server = (HttpServer) f.call();
    59         ServerConfiguration conf = server.getServerConfiguration();
    60         conf.addHttpHandler(c, "/chat");
    61         System.in.read();
    62         s.close();
    63     }
    64     
    65     private List<Message> msgs = new ArrayList<>();
    66     {
    67         Message welcome = new Message(Context.findDefault(Message.class));
    68         welcome.setUser("system");
    69         welcome.setComment("Welcome and enjoy!");
    70         msgs.add(welcome);
    71     }
    72     
    73     @Produces(MediaType.APPLICATION_JSON)
    74     @GET public Query getResources() {
    75         Query q = new Query(Context.findDefault(Query.class));
    76         q.getMessages().addAll(msgs);
    77         return q;
    78     }
    79     
    80     @Consumes(MediaType.APPLICATION_JSON)
    81     @PUT public void publish(Message msg) {
    82         if (msg != null) {
    83             msgs.add(msg);
    84         }
    85     }
    86 }