statistics/src/main/java/cz/xelfi/quoridor/statistics/resources/Elo.java
author Martin Rexa <martin.rexa@centrum.cz>
Wed, 13 Jan 2010 16:57:00 +0100
changeset 216 17893fd11f6e
parent 210 92d4dbc49d7e
child 222 d783bb2a7956
permissions -rw-r--r--
each new elo list should cover games from one day
     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.statistics.EloList;
    30 import cz.xelfi.quoridor.webidor.GameId;
    31 import cz.xelfi.quoridor.webidor.GameStatus;
    32 import javax.ws.rs.GET;
    33 import javax.ws.rs.Path;
    34 import javax.ws.rs.PathParam;
    35 import javax.ws.rs.Produces;
    36 import javax.ws.rs.core.MediaType;
    37 import java.util.ArrayList;
    38 
    39 /**
    40  *
    41  * @author Martin Rexa
    42  */
    43 public final class Elo {
    44     private EloList list;
    45     private ArrayList<EloList> listHistory;
    46     private long now;
    47     private long current;
    48     static long day = 1000 * 60 * 60 * 24;
    49 
    50     public Elo(){
    51         listHistory = new ArrayList<EloList>();
    52         list = new EloList();
    53         listHistory.add(list);
    54         now = System.currentTimeMillis();
    55         current = 0;
    56     }
    57 
    58     public void processGame(GameId gId){
    59         GameStatus status = gId.getStatus();
    60         long modified = gId.getModified();
    61         if(current==0){
    62             current = (modified / day) * day;
    63         }else if(modified - current >= day){
    64             list = new EloList(list);
    65             listHistory.add(0,list);
    66             current = (modified / day) * day;
    67         }
    68 
    69         if(status.equals(GameStatus.whiteWon)){
    70             list.putResult(gId.getWhite(), gId.getBlack(),modified);
    71         }else if(status.equals(GameStatus.blackWon)){
    72             list.putResult(gId.getBlack(), gId.getWhite(),modified);
    73         }
    74     }
    75 
    76     @GET
    77     @Path("list")
    78     @Produces({ MediaType.APPLICATION_JSON, MediaType.TEXT_XML })
    79     public EloList getList(){
    80         return list;
    81     }
    82 
    83     @GET
    84     @Path("list/{id}")
    85     @Produces({ MediaType.APPLICATION_JSON, MediaType.TEXT_XML })
    86     public EloList getHistoryList(@PathParam("id") Integer id){
    87         if(id == null)
    88             return null;
    89         if(id >= listHistory.size())
    90             return null;
    91         return listHistory.get(id);
    92     }
    93 
    94     @GET
    95     @Path("{username}")
    96     @Produces(MediaType.TEXT_PLAIN)
    97     public String getElo(@PathParam("username") String id){
    98         list.getElo(id);
    99         return Double.toString(list.getElo(id));
   100     }
   101 
   102 }