summaryrefslogtreecommitdiffstats
path: root/sdo-cpp/trunk/runtime/core/src/commonj/sdo/SDODate.cpp
blob: 66c13d19d575eaf6cfc091bf8a284b916f81467b (plain)
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
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 *   
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

/* $Rev$ $Date$ */

#include "commonj/sdo/SDODate.h"

// According to Linux, localtime_r is defined as
// struct tm *localtime_r(const time_t *timep, struct tm *result);
// However, Windows doesn't have localtime_r, and actually varies what it does
// have across dfferent versions. To accommodate this we use a macro that
// resolves to the correct settings on linux and MS VC8. For other platforms
// it will be necessary to modify this file or override the macro for which we
// provide the SDOUserMacros.h file so that any required macro definition can
// supply other includes if they are needed.

#include "commonj/sdo/SDOUserMacros.h"
#ifndef tuscany_localtime_r
#if defined(WIN32)  || defined (_WINDOWS)
  #if _MSC_VER < 1400 // _MSC_VER: 1400 is msvc 8.0, so anything less is pre 8.0
    #define tuscany_localtime_r(value, ignore) localtime(&value);
  #else
    #define tuscany_localtime_r(value, tmp_tm) localtime_s(&tmp_tm, &value);
  #endif
#else
  #define tuscany_localtime_r(value, tmp_tm) localtime_r(&value, &tmp_tm);
#endif
#endif // tuscany_localtime_r

namespace commonj{
namespace sdo{


     SDODate::~SDODate()
     {
     }

     SDODate::SDODate(time_t inval)
     {
         value = inval;
     }

    ///////////////////////////////////////////////////////////////////////////
    //
    ///////////////////////////////////////////////////////////////////////////

    const time_t SDODate::getTime(void) const
    {
        return value;
    }

    const char* SDODate::ascTime(void) const
    {
		struct tm tmp_tm;

		tuscany_localtime_r(value, tmp_tm);

        return asctime(&tmp_tm);
    }

};
};
// end - namespace sdo