OSDN Git Service

2002-03-08 scott snyder <snyder@fnal.gov>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / config / locale / generic / time_members.cc
1 // std::time_get, std::time_put implementation, GNU version -*- C++ -*-
2
3 // Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library.  This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING.  If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // As a special exception, you may use this file as part of a free software
22 // library without restriction.  Specifically, if other files instantiate
23 // templates or use macros or inline functions from this file, or you compile
24 // this file and link it with other files to produce an executable, this
25 // file does not by itself cause the resulting executable to be covered by
26 // the GNU General Public License.  This exception does not however
27 // invalidate any other reasons why the executable file might be covered by
28 // the GNU General Public License.
29
30 //
31 // ISO C++ 14882: 22.2.5.1.2 - time_get virtual functions
32 // ISO C++ 14882: 22.2.5.3.2 - time_put virtual functions
33 //
34
35 // Written by Benjamin Kosnik <bkoz@redhat.com>
36
37 #include <locale>
38
39 namespace std
40 {
41   template<>
42     void
43     __timepunct<char>::
44     _M_put_helper(char* __s, size_t __maxlen, const char* __format, 
45                   const tm* __tm) const
46     {
47       const char* __old = setlocale(LC_ALL, _M_name_timepunct);
48       strftime(__s, __maxlen, __format, __tm);
49       setlocale(LC_ALL, __old);
50     }
51
52   template<> 
53     void
54     __timepunct<char>::_M_initialize_timepunct(__c_locale)
55     { 
56       // "C" locale
57       _M_date_format = "%m/%d/%Y";
58       _M_date_era_format = "%m/%d/%Y";
59       _M_time_format = "%H:%M:%S";
60       _M_time_era_format = "%H:%M:%S";
61       _M_date_time_format = "";
62       _M_date_time_era_format = "";
63       _M_am = "AM";
64       _M_pm = "PM";
65       _M_am_pm_format = "";
66           
67       // Day names, starting with "C"'s Sunday.
68       _M_day1 = "Sunday";
69       _M_day2 = "Monday";
70       _M_day3 = "Tuesday";
71       _M_day4 = "Wednesday";
72       _M_day5 = "Thursday";
73       _M_day6 = "Friday";
74       _M_day7 = "Saturday";
75
76       // Abbreviated day names, starting with "C"'s Sun.
77       _M_day_a1 = "Sun";
78       _M_day_a2 = "Mon";
79       _M_day_a3 = "Tue";
80       _M_day_a4 = "Wed";
81       _M_day_a5 = "Thu";
82       _M_day_a6 = "Fri";
83       _M_day_a7 = "Sat";
84
85       // Month names, starting with "C"'s January.
86       _M_month01 = "January";
87       _M_month02 = "February";
88       _M_month03 = "March";
89       _M_month04 = "April";
90       _M_month05 = "May";
91       _M_month06 = "June";
92       _M_month07 = "July";
93       _M_month08 = "August";
94       _M_month09 = "September";
95       _M_month10 = "October";
96       _M_month11 = "November";
97       _M_month12 = "December";
98
99       // Abbreviated month names, starting with "C"'s Jan.
100       _M_month_a01 = "Jan";
101       _M_month_a02 = "Feb";
102       _M_month_a03 = "Mar";
103       _M_month_a04 = "Apr";
104       _M_month_a05 = "May";
105       _M_month_a06 = "Jun";
106       _M_month_a07 = "July";
107       _M_month_a08 = "Aug";
108       _M_month_a09 = "Sep";
109       _M_month_a10 = "Oct";
110       _M_month_a11 = "Nov";
111       _M_month_a12 = "Dec";
112     }
113
114 #ifdef _GLIBCPP_USE_WCHAR_T
115   template<>
116     void
117     __timepunct<wchar_t>::
118     _M_put_helper(wchar_t* __s, size_t __maxlen, const wchar_t* __format, 
119                   const tm* __tm) const
120     {
121       const char* __old = setlocale(LC_ALL, _M_name_timepunct);
122       wcsftime(__s, __maxlen, __format, __tm);
123       setlocale(LC_ALL, __old);
124     }
125
126   template<> 
127     void
128     __timepunct<wchar_t>::_M_initialize_timepunct(__c_locale)
129     {
130       // "C" locale
131       _M_date_format = L"%m/%d/%y";
132       _M_date_era_format = L"%m/%d/%y";
133       _M_time_format = L"%H:%M:%S";
134       _M_time_era_format = L"%H:%M:%S";
135       _M_date_time_format = L"";
136       _M_date_time_era_format = L"";
137       _M_am = L"AM";
138       _M_pm = L"PM";
139       _M_am_pm_format = L"";
140
141       // Day names, starting with "C"'s Sunday.
142       _M_day1 = L"Sunday";
143       _M_day2 = L"Monday";
144       _M_day3 = L"Tuesday";
145       _M_day4 = L"Wednesday";
146       _M_day5 = L"Thursday";
147       _M_day6 = L"Friday";
148       _M_day7 = L"Saturday";
149
150       // Abbreviated day names, starting with "C"'s Sun.
151       _M_day_a1 = L"Sun";
152       _M_day_a2 = L"Mon";
153       _M_day_a3 = L"Tue";
154       _M_day_a4 = L"Wed";
155       _M_day_a5 = L"Thu";
156       _M_day_a6 = L"Fri";
157       _M_day_a7 = L"Sat";
158
159       // Month names, starting with "C"'s January.
160       _M_month01 = L"January";
161       _M_month02 = L"February";
162       _M_month03 = L"March";
163       _M_month04 = L"April";
164       _M_month05 = L"May";
165       _M_month06 = L"June";
166       _M_month07 = L"July";
167       _M_month08 = L"August";
168       _M_month09 = L"September";
169       _M_month10 = L"October";
170       _M_month11 = L"November";
171       _M_month12 = L"December";
172
173       // Abbreviated month names, starting with "C"'s Jan.
174       _M_month_a01 = L"Jan";
175       _M_month_a02 = L"Feb";
176       _M_month_a03 = L"Mar";
177       _M_month_a04 = L"Apr";
178       _M_month_a05 = L"May";
179       _M_month_a06 = L"Jun";
180       _M_month_a07 = L"July";
181       _M_month_a08 = L"Aug";
182       _M_month_a09 = L"Sep";
183       _M_month_a10 = L"Oct";
184       _M_month_a11 = L"Nov";
185       _M_month_a12 = L"Dec";
186     }
187 #endif
188 }