webidor/src/main/java/cz/xelfi/quoridor/webidor/resources/Games.java
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 28 Jul 2009 14:35:04 +0200
changeset 36 d5ccf73ebbe5
child 37 782d925cb5a1
permissions -rw-r--r--
Separating Games related operations to own class Games
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * The contents of this file are subject to the terms of either the GNU
     5  * General Public License Version 2 only ("GPL") or the Common
     6  * Development and Distribution License("CDDL") (collectively, the
     7  * "License"). You may not use this file except in compliance with the
     8  * License. You can obtain a copy of the License at
     9  * http://www.netbeans.org/cddl-gplv2.html
    10  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    11  * specific language governing permissions and limitations under the
    12  * License.  When distributing the software, include this License Header
    13  * Notice in each file and include the License file at
    14  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    15  * particular file as subject to the "Classpath" exception as provided
    16  * by Sun in the GPL Version 2 section of the License file that
    17  * accompanied this code. If applicable, add the following below the
    18  * License Header, with the fields enclosed by brackets [] replaced by
    19  * your own identifying information:
    20  * "Portions Copyrighted [year] [name of copyright owner]"
    21  *
    22  * Contributor(s):
    23  *
    24  * Portions Copyrighted 2009 Jaroslav Tulach
    25  */
    26 
    27 package cz.xelfi.quoridor.webidor.resources;
    28 
    29 import com.sun.jersey.api.container.httpserver.HttpServerFactory;
    30 import com.sun.jersey.api.core.PackagesResourceConfig;
    31 import com.sun.jersey.api.core.ResourceConfig;
    32 import cz.xelfi.quoridor.IllegalPositionException;
    33 import cz.xelfi.quoridor.webidor.*;
    34 import com.sun.jersey.spi.resource.Singleton;
    35 import com.sun.net.httpserver.HttpServer;
    36 import cz.xelfi.quoridor.Move;
    37 import java.io.IOException;
    38 import java.util.ArrayList;
    39 import java.util.HashMap;
    40 import java.util.List;
    41 import java.util.Map;
    42 import javax.ws.rs.GET;
    43 import javax.ws.rs.POST;
    44 import javax.ws.rs.PUT;
    45 import javax.ws.rs.Path;
    46 import javax.ws.rs.PathParam;
    47 import javax.ws.rs.Produces;
    48 import javax.ws.rs.QueryParam;
    49 import javax.ws.rs.core.MediaType;
    50 
    51 /**
    52  *
    53  * @author Jaroslav Tulach <jtulach@netbeans.org>
    54  */
    55 public final class Games {
    56     private List<Game> games = new ArrayList<Game>();
    57 
    58     @POST
    59     public Game createGame(@QueryParam("white") String user1, @QueryParam("black") String user2) {
    60         Game g = new Game(user1, user2);
    61         games.add(g);
    62         return g;
    63     }
    64 
    65     @PUT
    66     @Path("{id}")
    67     public Game applyMove(@PathParam("id") String id, @QueryParam("player") String player, @QueryParam("move") String move)
    68     throws IllegalPositionException {
    69         Game g = findGame(id);
    70         if (g == null) {
    71             throw new IllegalArgumentException("Unknown game " + id);
    72         }
    73         Move m = Move.valueOf(move);
    74         g.apply(player, m);
    75         return g;
    76     }
    77 
    78     @GET
    79     @Produces(MediaType.APPLICATION_JSON)
    80     public List<Game> getGames() {
    81         return games;
    82     }
    83 
    84     private Game findGame(String id) {
    85         for (Game g : games) {
    86             if (g.getId().equals(id)) {
    87                 return g;
    88             }
    89         }
    90         return null;
    91     }
    92 
    93 
    94     //
    95     // start the server
    96     //
    97 
    98     public static void main(String[] args) throws IOException {
    99 
   100         final String baseUri = "http://localhost:9998/";
   101         final Map<String, String> initParams = new HashMap<String, String>();
   102 
   103         initParams.put("com.sun.jersey.config.property.packages",
   104                 "cz.xelfi.quoridor.webidor.resources");
   105 
   106         System.out.println("Starting HttpServer...");
   107         ResourceConfig rc = new PackagesResourceConfig("cz.xelfi.quoridor.webidor");
   108         HttpServer threadSelector = HttpServerFactory.create(baseUri, rc);
   109         threadSelector.start();
   110         System.out.println(String.format(
   111                     "Jersey app started with WADL available at %sapplication.wadl\n" +
   112             "Try out %shelloworld\nHit enter to stop it...", baseUri, baseUri));
   113             System.in.read();
   114             threadSelector.stop(0);
   115             System.exit(0);
   116     }
   117 
   118 }