#include #include #include #include "boost/date_time/gregorian/greg_month.hpp" #include "boost/date_time/gregorian/greg_facet.hpp" #include "boost/date_time/date_format_simple.hpp" #include "boost/date_time/gregorian/gregorian.hpp" #include "boost/date_time/testfrmwk.hpp" const char* const de_short_month_names[]={"Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez", "NAM"}; const char* const de_long_month_names[]={"Januar","Februar","Marz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember","NichtDerMonat"}; const char* const de_special_value_names[]={"NichtDatumzeit","-unbegrenztheit", "+unbegrenztheit"}; const char* const de_short_weekday_names[]={"Son", "Mon", "Die","Mit", "Don", "Fre", "Sam"}; const char* const de_long_weekday_names[]={"Sonntag", "Montag", "Dienstag","Mittwoch", "Donnerstag", "Freitag", "Samstag"}; const char* const es_short_month_names[]={"Ene","Feb","Mar","Abr","Pue","Jun","Jul","Ago","Sep","Oct","Nov","Dic", "NAM"}; const char* const es_long_month_names[]={"Enero","Febrero","Marcha","Abril","Pueda","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre","NoAMes"}; const char* const es_special_value_names[]={"NoUnRatoDeLaFacha","-infinito", "+infinito"}; int main() { // std::locale native(""); // std::cout << "native: " << native.name() << std::endl; //#ifndef BOOST_NO_STD_LOCALE #ifndef BOOST_DATE_TIME_NO_LOCALE using namespace boost::gregorian; typedef greg_facet_config facet_config; typedef boost::date_time::all_date_names_put date_facet; typedef boost::date_time::date_names_put date_facet_base; typedef boost::date_time::ostream_month_formatter month_formatter; date_facet gdnp(de_short_month_names, de_long_month_names, de_special_value_names, de_long_weekday_names, de_long_weekday_names, '.', boost::date_time::ymd_order_dmy); std::stringstream ss; std::ostreambuf_iterator coi(ss); gdnp.put_month_short(coi, Oct); check("check german short month: " + ss.str(), ss.str() == std::string("Okt")); ss.str(""); //reset string stream greg_month m(Oct); month_formatter::format_month(m, ss, gdnp); check("check german short month: " + ss.str(), ss.str() == std::string("Okt")); ss.str(""); //reset string stream // month_formatter::format_month(m, ss, gdnp); // check("check german long month: " + ss.str(), // ss.str() == std::string("Oktober")); greg_year_month_day ymd(2002,Oct,1); typedef boost::date_time::ostream_ymd_formatter ymd_formatter; ss.str(""); //reset string stream ymd_formatter::ymd_put(ymd, ss, gdnp); check("check ymd: " + ss.str(), ss.str() == std::string("01.Okt.2002")); typedef boost::date_time::ostream_date_formatter datef; std::stringstream os; date d1(2002, Oct, 1); datef::date_put(d1, os, gdnp); check("ostream low level check string:"+os.str(), os.str() == std::string("01.Okt.2002")); // //Locale tests std::locale global; std::cout << "global: " << global.name() << std::endl; // put a facet into a locale //check for a facet p319 check("no registered facet here", !std::has_facet(global)); std::locale global2(global, new date_facet(de_short_month_names, de_long_month_names, de_special_value_names, de_long_weekday_names, de_long_weekday_names)); check("facet registered here", std::has_facet >(global2)); std::stringstream os2; os2.imbue(global2); datef::date_put(d1, os2); check("check string imbued ostream: "+os2.str(), os2.str() == std::string("2002-Okt-01")); date infin(pos_infin); os2.str(""); //clear stream datef::date_put(infin, os2); check("check string imbued ostream: "+os2.str(), os2.str() == std::string("+unbegrenztheit")); os2.str(""); //clear stream os2 << infin; check("check string imbued ostream: "+os2.str(), os2.str() == std::string("+unbegrenztheit")); date nadt(not_a_date_time); os2.str(""); //clear stream datef::date_put(nadt, os2); check("check string imbued ostream: "+os2.str(), os2.str() == std::string("NichtDatumzeit")); std::stringstream os3; os3 << d1; check("check any old ostream: "+os3.str(), os3.str() == std::string("2002-Oct-01")); std::ofstream f("test_facet_file.out"); f << d1 << std::endl; // // date formatter that takes locale and gets facet from locale std::locale german_dates1(global, new date_facet(de_short_month_names, de_long_month_names, de_special_value_names, de_short_weekday_names, de_long_weekday_names, '.', boost::date_time::ymd_order_dmy, boost::date_time::month_as_integer)); os3.imbue(german_dates1); os3.str(""); os3 << d1; check("check date order: "+os3.str(), os3.str() == std::string("01.10.2002")); std::locale german_dates2(global, new date_facet(de_short_month_names, de_long_month_names, de_special_value_names, de_short_weekday_names, de_long_weekday_names, ' ', boost::date_time::ymd_order_iso, boost::date_time::month_as_short_string)); os3.imbue(german_dates2); os3.str(""); os3 << d1; check("check date order: "+os3.str(), os3.str() == std::string("2002 Okt 01")); std::locale german_dates3(global, new date_facet(de_short_month_names, de_long_month_names, de_special_value_names, de_short_weekday_names, de_long_weekday_names, ' ', boost::date_time::ymd_order_us, boost::date_time::month_as_long_string)); os3.imbue(german_dates3); os3.str(""); os3 << d1; check("check date order: "+os3.str(), os3.str() == std::string("Oktober 01 2002")); date_period dp(d1, date_duration(3)); os3.str(""); os3 << dp; check("check date period: "+os3.str(), os3.str() == std::string("[Oktober 01 2002/Oktober 03 2002]")); #else check("All pass, no tests executed - Locales not supported", true); #endif //BOOST_DATE_TIME_NO_LOCALE printTestStats(); return 0; }