org.wikipedia.nirvana.statistics.ArchiveItem.java Source code

Java tutorial

Introduction

Here is the source code for org.wikipedia.nirvana.statistics.ArchiveItem.java

Source

/**
 *  @(#)ArchiveItem.java
 *  Copyright  2012 - 2014 Dmitry Trofimovich (KIN)
 *    
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/**
 * WARNING: This file may contain Russian characters.
 * Recommended code page for this file is CP1251 (also called Windows-1251).
 * */

package org.wikipedia.nirvana.statistics;

import java.util.Calendar;

import org.wikipedia.Wiki.Revision;
import org.wikipedia.nirvana.HTTPTools;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties({ "getDateAsInt", "dateAsInt", "getQuarter", "quarter" })
public class ArchiveItem {

    public String article;
    public String user;
    public int year;
    public int month;
    public int day;
    public int size;

    public ArchiveItem(String article, String user, int year, int month, int day) {
        this.article = article;
        this.user = user;
        this.year = year;
        this.month = month;
        this.day = day;
    }

    public ArchiveItem() {
        // default constructor
    }

    public ArchiveItem(Revision r) {
        this.article = HTTPTools.removeEscape(r.getPage());
        this.user = HTTPTools.removeEscape(r.getUser());
        Calendar c = r.getTimestamp();
        this.year = c.get(Calendar.YEAR);
        this.month = c.get(Calendar.MONTH);
        this.day = c.get(Calendar.DAY_OF_MONTH);
        this.size = r.getSize();
    }

    public ArchiveItem(Revision r, int size) {
        this.article = HTTPTools.removeEscape(r.getPage());
        this.user = HTTPTools.removeEscape(r.getUser());
        Calendar c = r.getTimestamp();
        this.year = c.get(Calendar.YEAR);
        this.month = c.get(Calendar.MONTH);
        this.day = c.get(Calendar.DAY_OF_MONTH);
        this.size = size;
    }

    public ArchiveItem(String article, String user, Calendar c) {
        this.article = article;
        this.user = user;
        this.year = c.get(Calendar.YEAR);
        this.month = c.get(Calendar.MONTH);
        this.day = c.get(Calendar.DAY_OF_MONTH);
    }

    //@JsonAnySetter
    //@JsonIgnoreProperties
    public int getDateAsInt() {
        return (year << 16 | month << 8 | day);
    }

    public int getQuarter() {
        return month / 3 + 1;
    }

}