statistics/src/main/java/cz/xelfi/quoridor/statistics/resources/Openings.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Jan 2010 22:34:17 +0100
branchstatistics-and-elo
changeset 178 4b78d4f028b3
child 264 d60370059c3c
permissions -rw-r--r--
Initial version of statistics and ELO rating. Donated by Martin Rexa
     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 2010 Martin Rexa
    25  */
    26 
    27 package cz.xelfi.quoridor.statistics.resources;
    28 
    29 import cz.xelfi.quoridor.IllegalPositionException;
    30 import cz.xelfi.quoridor.webidor.Game;
    31 import cz.xelfi.quoridor.webidor.GameId;
    32 import cz.xelfi.quoridor.statistics.OpeningTree;
    33 import cz.xelfi.quoridor.statistics.OpeningTreeNode;
    34 import cz.xelfi.quoridor.statistics.OpeningNodeView;
    35 import cz.xelfi.quoridor.webidor.GameStatus;
    36 import java.util.List;
    37 import javax.ws.rs.GET;
    38 import javax.ws.rs.Path;
    39 import javax.ws.rs.PathParam;
    40 import javax.ws.rs.Produces;
    41 import javax.ws.rs.QueryParam;
    42 import javax.ws.rs.DefaultValue;
    43 import javax.ws.rs.core.MediaType;
    44 
    45 /**
    46  *
    47  * @author Martin Rexa
    48  */
    49 public class Openings {
    50     OpeningTree tree;
    51 
    52     public Openings(){
    53         tree = new OpeningTree();
    54     }
    55 
    56     public void processGame(Game game) {
    57         try{
    58             tree.processGame(game);
    59         }catch (IllegalPositionException e){
    60             e.printStackTrace();
    61         }
    62     }
    63 
    64     @GET
    65     @Path("{nodeId}")
    66     @Produces({ MediaType.APPLICATION_JSON, MediaType.TEXT_XML })
    67     public OpeningNodeView getNode(@QueryParam("loginID") @DefaultValue("") String loginId,
    68                          @PathParam("nodeId") String nodeId){
    69         OpeningTreeNode node = tree.getNode(nodeId);
    70         if(node == null)
    71             node = tree.getRoot();
    72         return node.getView(loginId);
    73     }
    74 
    75     @GET
    76     @Path("{nodeId}.check")
    77     @Produces({ MediaType.TEXT_PLAIN })
    78     public String checkNode(@QueryParam("loginID") @DefaultValue("") String loginId,
    79                          @PathParam("nodeId") String nodeId){
    80         OpeningTreeNode node = tree.getNode(nodeId);
    81         if(node == null)
    82             return "";
    83         if(node.getView(loginId).isEmpty())
    84             return "";
    85         else
    86             return nodeId;
    87     }
    88 
    89     @GET
    90     @Path("{nodeId}/{status}")
    91     @Produces({MediaType.APPLICATION_JSON, MediaType.TEXT_XML })
    92     public List<GameId> listGames(
    93         @DefaultValue("") @QueryParam("loginID") String loginId,
    94         @PathParam("nodeId") String nodeId,
    95         @DefaultValue("") @PathParam("status") String status
    96     ) {
    97         OpeningTreeNode node = tree.getNode(nodeId);
    98         if(node == null)
    99             return null;
   100         if("white".equals(status))
   101             return node.filterGames(loginId, GameStatus.whiteWon);
   102         else if("black".equals(status))
   103             return node.filterGames(loginId, GameStatus.blackWon);
   104         else
   105             return null;
   106     }
   107 }