0
|
1 /*
|
|
2 struct_tm.h
|
|
3
|
|
4 Custom serializer for <time.h> struct tm
|
|
5
|
|
6 #import this file into your gSOAP .h file to enable struct tm
|
|
7 serialization and use the serializable xsd__dateTime type.
|
|
8
|
|
9 To automate the wsdl2h-mapping of xsd:dateTime to struct tm, add this
|
|
10 line to the typemap.dat file:
|
|
11
|
|
12 xsd__dateTime = #import "custom/struct_tm.h" | xsd__dateTime
|
|
13
|
|
14 The typemap.dat file is used by wsdl2h to map types (wsdl2h option -t).
|
|
15
|
|
16 Link your code with custom/struct_tm.c
|
|
17
|
|
18 gSOAP XML Web services tools
|
|
19 Copyright (C) 2000-2007, Robert van Engelen, Genivia Inc., All Rights Reserved.
|
|
20 This part of the software is released under ONE of the following licenses:
|
|
21 GPL, the gSOAP public license, OR Genivia's license for commercial use.
|
|
22 --------------------------------------------------------------------------------
|
|
23 gSOAP public license.
|
|
24
|
|
25 The contents of this file are subject to the gSOAP Public License Version 1.3
|
|
26 (the "License"); you may not use this file except in compliance with the
|
|
27 License. You may obtain a copy of the License at
|
|
28 http://www.cs.fsu.edu/~engelen/soaplicense.html
|
|
29 Software distributed under the License is distributed on an "AS IS" basis,
|
|
30 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
31 for the specific language governing rights and limitations under the License.
|
|
32
|
|
33 The Initial Developer of the Original Code is Robert A. van Engelen.
|
|
34 Copyright (C) 2000-2007, Robert van Engelen, Genivia, Inc., All Rights Reserved.
|
|
35 --------------------------------------------------------------------------------
|
|
36 GPL license.
|
|
37
|
|
38 This program is free software; you can redistribute it and/or modify it under
|
|
39 the terms of the GNU General Public License as published by the Free Software
|
|
40 Foundation; either version 2 of the License, or (at your option) any later
|
|
41 version.
|
|
42
|
|
43 This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
44 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
45 PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
46
|
|
47 You should have received a copy of the GNU General Public License along with
|
|
48 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
49 Place, Suite 330, Boston, MA 02111-1307 USA
|
|
50
|
|
51 Author contact information:
|
|
52 engelen@genivia.com / engelen@acm.org
|
|
53
|
|
54 This program is released under the GPL with the additional exemption that
|
|
55 compiling, linking, and/or using OpenSSL is allowed.
|
|
56 --------------------------------------------------------------------------------
|
|
57 A commercial use license is available from Genivia, Inc., contact@genivia.com
|
|
58 --------------------------------------------------------------------------------
|
|
59 */
|
|
60
|
|
61 #include <time.h>
|
|
62
|
|
63 /** externally declared, replicated here as a copy (gSOAP volatile) */
|
|
64 extern typedef volatile struct tm
|
|
65 { int tm_sec; //< seconds (0 - 60)
|
|
66 int tm_min; //< minutes (0 - 59)
|
|
67 int tm_hour; //< hours (0 - 23)
|
|
68 int tm_mday; //< day of month (1 - 31)
|
|
69 int tm_mon; //< month of year (0 - 11)
|
|
70 int tm_year; //< year - 1900
|
|
71 int tm_wday; //< day of week (Sunday = 0)
|
|
72 int tm_yday; //< day of year (0 - 365)
|
|
73 int tm_isdst; //< is summer time in effect?
|
|
74 char* tm_zone; //< abbreviation of timezone (not used)
|
|
75 } xsd__dateTime;
|