statistics/src/main/java/cz/xelfi/quoridor/statistics/resources/Elo.java
author Martin Rexa <martin.rexa@centrum.cz>
Mon, 18 Jan 2010 10:29:53 +0100
changeset 222 d783bb2a7956
parent 216 17893fd11f6e
child 264 d60370059c3c
permissions -rw-r--r--
Fixed list history
     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 import java.util.Calendar;
    39 import java.util.GregorianCalendar;
    40 
    41 /**
    42  *
    43  * @author Martin Rexa
    44  */
    45 public final class Elo {
    46     private EloList list;
    47     private ArrayList<EloList> listHistory;
    48     private boolean firstGame;
    49     static long day = 1000 * 60 * 60 * 24;
    50 
    51     public Elo(){
    52         listHistory = new ArrayList<EloList>();
    53         list = new EloList();
    54         listHistory.add(list);
    55         firstGame = true;
    56     }
    57 
    58     public void processGame(GameId gId){
    59         GameStatus status = gId.getStatus();
    60         splitList(gId.getModified());
    61         if(status.equals(GameStatus.whiteWon)){
    62             list.putResult(gId.getWhite(), gId.getBlack());
    63         }else if(status.equals(GameStatus.blackWon)){
    64             list.putResult(gId.getBlack(), gId.getWhite());
    65         }
    66     }
    67 
    68     private void splitList(long gameModified){
    69         if(firstGame){
    70             firstGame = false;
    71             list.setEndDate(computeListEndDate(gameModified));
    72         }else{
    73             if(gameModified > list.getEndDate()){
    74                 list = new EloList(list);
    75                 listHistory.add(0,list);
    76                 list.setEndDate(computeListEndDate(gameModified));
    77             }
    78         }
    79     }
    80 
    81     private long computeListEndDate(long modified){
    82         Calendar now = new GregorianCalendar();
    83         Calendar cModified = new GregorianCalendar();
    84         cModified.setTimeInMillis(modified);
    85         Calendar result = new GregorianCalendar();
    86         result.clear();
    87         result.set(Calendar.YEAR, cModified.get(Calendar.YEAR));
    88         result.set(Calendar.MONTH, cModified.get(Calendar.MONTH)+1);
    89         return result.getTimeInMillis()-1;
    90     }
    91 
    92     @GET
    93     @Path("list")
    94     @Produces({ MediaType.APPLICATION_JSON, MediaType.TEXT_XML })
    95     public EloList getList(){
    96         return list;
    97     }
    98 
    99     @GET
   100     @Path("list/{id}")
   101     @Produces({ MediaType.APPLICATION_JSON, MediaType.TEXT_XML })
   102     public EloList getHistoryList(@PathParam("id") Integer id){
   103         if(id == null)
   104             return null;
   105         if(id >= listHistory.size())
   106             return null;
   107         return listHistory.get(id);
   108     }
   109 
   110     @GET
   111     @Path("{username}")
   112     @Produces(MediaType.TEXT_PLAIN)
   113     public String getElo(@PathParam("username") String id){
   114         list.getElo(id);
   115         return Double.toString(list.getElo(id));
   116     }
   117 
   118 }