File: print_holidays.cpp

package info (click to toggle)
boost 1.33.1-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 100,948 kB
  • ctags: 145,103
  • sloc: cpp: 573,492; xml: 49,055; python: 15,626; ansic: 13,588; sh: 2,099; yacc: 858; makefile: 660; perl: 427; lex: 111; csh: 6
file content (83 lines) | stat: -rw-r--r-- 2,228 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* Generate a set of dates using a collection of date generators
 * Output looks like:
 * Enter Year: 2002
 * 2002-Jan-01 [Tue]
 * 2002-Jan-21 [Mon]
 * 2002-Feb-12 [Tue]
 * 2002-Jul-04 [Thu]
 * 2002-Sep-02 [Mon]
 * 2002-Nov-28 [Thu]
 * 2002-Dec-25 [Wed]
 * Number Holidays: 7
 */

#include "boost/date_time/gregorian/gregorian.hpp"
#include <algorithm>
#include <functional>
#include <vector>
#include <iostream>
#include <set>

void
print_date(boost::gregorian::date d) 
{
  using namespace boost::gregorian;
#if defined(BOOST_DATE_TIME_NO_LOCALE)
  std::cout << to_simple_string(d) << " [" << d.day_of_week() << "]\n";
#else
  std::cout << d << " [" << d.day_of_week() << "]\n";
#endif
}


int
main() {

  std::cout << "Enter Year: ";
  int year;
  std::cin >> year;

  using namespace boost::gregorian;

  //define a collection of holidays fixed by month and day
  std::vector<year_based_generator*> holidays;
  holidays.push_back(new partial_date(1,Jan)); //Western New Year
  holidays.push_back(new partial_date(4,Jul)); //US Independence Day
  holidays.push_back(new partial_date(25, Dec));//Christmas day


  //define a shorthand for the nth_day_of_the_week_in_month function object
  typedef nth_day_of_the_week_in_month nth_dow;
  
  //US labor day
  holidays.push_back(new nth_dow(nth_dow::first,  Monday,   Sep)); 
  //MLK Day
  holidays.push_back(new nth_dow(nth_dow::third,  Monday,   Jan)); 
  //Pres day
  holidays.push_back(new nth_dow(nth_dow::second, Tuesday,  Feb)); 
  //Thanksgiving
  holidays.push_back(new nth_dow(nth_dow::fourth, Thursday, Nov)); 

  typedef std::set<date> date_set;
  date_set all_holidays;
  
  for(std::vector<year_based_generator*>::iterator it = holidays.begin();
      it != holidays.end(); ++it)
  {
    all_holidays.insert((*it)->get_date(year));
  }

  //print the holidays to the screen
  std::for_each(all_holidays.begin(), all_holidays.end(), print_date);
  std::cout << "Number Holidays: " << all_holidays.size() << std::endl;

  return 0;
}

/*  Copyright 2001-2004: CrystalClear Software, Inc
 *  http://www.crystalclearsoftware.com
 *
 *  Subject to the Boost Software License, Version 1.0.
 * (See accompanying file LICENSE-1.0 or http://www.boost.org/LICENSE-1.0)
 */