001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
package horstmann.ch03_day1;
public class Day
{
  /**
      Constructs a day with a given year, month, and day
      of the Julian/Gregorian calendar. The Julian calendar
      is used for all days before October 15, 1582
      @param aYear a year != 0
      @param aMonth a month between 1 and 12
      @param aDate a date between 1 and 31
   */
  public Day(int aYear, int aMonth, int aDate)
  {
    year = aYear;
    month = aMonth;
    date = aDate;
  }

  /**
      Returns the year of this day
      @return the year
   */
  public int getYear()
  {
    return year;
  }

  /**
      Returns the month of this day
      @return the month
   */
  public int getMonth()
  {
    return month;
  }

  /**
      Returns the day of the month of this day
      @return the day of the month
   */
  public int getDate()
  {
    return date;
  }

  /**
      Returns a day that is a certain number of days away from
      this day
      @param n the number of days, can be negative
      @return a day that is n days away from this one
   */
  public Day addDays(int n)
  {
    Day result = this;
    while (n > 0)
    {
      result = result.nextDay();
      n--;
    }
    while (n < 0)
    {
      result = result.previousDay();
      n++;
    }
    return result;
  }

  /**
      Returns the number of days between this day and another
      day
      @param other the other day
      @return the number of days that this day is away from
      the other (>0 if this day comes later)
   */
  public int daysFrom(Day other)
  {
    int n = 0;
    Day d = this;
    while (d.compareTo(other) > 0)
    {
      d = d.previousDay();
      n++;
    }
    while (d.compareTo(other) < 0)
    {
      d = d.nextDay();
      n--;
    }
    return n;
  }

  /**
      Compares this day with another day.
      @param other the other day
      @return a positive number if this day comes after the
      other day, a negative number if this day comes before
      the other day, and zero if the days are the same
   */
  private int compareTo(Day other)
  {
    if (year > other.year) return 1;
    if (year < other.year) return -1;
    if (month > other.month) return 1;
    if (month < other.month) return -1;
    return date - other.date;
  }

  /**
      Computes the next day.
      @return the day following this day
   */
  private Day nextDay()
  {
    int y = year;
    int m = month;
    int d = date;

    if (y == GREGORIAN_START_YEAR
        && m == GREGORIAN_START_MONTH
        && d == JULIAN_END_DAY)
      d = GREGORIAN_START_DAY;
    else if (d < daysPerMonth(y, m))
      d++;
    else
    {
      d = 1;
      m++;
      if (m > DECEMBER)
      {
        m = JANUARY;
        y++;
        if (y == 0) y++;
      }
    }
    return new Day(y, m, d);
  }

  /**
      Computes the previous day.
      @return the day preceding this day
   */
  private Day previousDay()
  {
    int y = year;
    int m = month;
    int d = date;

    if (y == GREGORIAN_START_YEAR
        && m == GREGORIAN_START_MONTH
        && d == GREGORIAN_START_DAY)
      d = JULIAN_END_DAY;
    else if (d > 1)
      d--;
    else
    {
      m--;
      if (m < JANUARY)
      {
        m = DECEMBER;
        y--;
        if (y == 0) y--;
      }
      d = daysPerMonth(y, m);
    }
    return new Day(y, m, d);
  }

  /**
      Gets the days in a given month
      @param y the year
      @param m the month
      @return the last day in the given month
   */
  private static int daysPerMonth(int y, int m)
  {
    int days = DAYS_PER_MONTH[m - 1];
    if (m == FEBRUARY && isLeapYear(y))
      days++;
    return days;
  }

  /**
      Tests if a year is a leap year
      @param y the year
      @return true if y is a leap year
   */
  private static boolean isLeapYear(int y)
  {
    if (y % 4 != 0) return false;
    if (y < GREGORIAN_START_YEAR) return true;
    return (y % 100 != 0) || (y % 400 == 0);
  }

  private int year;
  private int month;
  private int date;

  private static final int[] DAYS_PER_MONTH
  = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };

  private static final int GREGORIAN_START_YEAR = 1582;
  private static final int GREGORIAN_START_MONTH = 10;
  private static final int GREGORIAN_START_DAY = 15;
  private static final int JULIAN_END_DAY = 4;

  private static final int JANUARY = 1;
  private static final int FEBRUARY = 2;
  private static final int DECEMBER = 12;
}