308de726ad20ee49d2b191ad5e83c9f4938871df
[framework/web/wrt-plugins-common.git] / src / modules / tizen / DEPRACATED / System / Date.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 #include "Date.h"
17 #include <cstddef>
18 #include <commons/Exception.h>
19
20 namespace {
21 const std::size_t MAX_BUFFER_SIZE = 80;
22 } // anonymous
23
24 namespace WrtPlugins {
25 namespace Platform {
26 namespace System {
27 Api::System::IDate::Format Date::m_defualtFormat = "%c";
28
29 Date::Date()
30 {
31     m_timestamp = time(NULL);
32 }
33
34 std::string Date::toString() const
35 {
36     return toString(m_defualtFormat);
37 }
38
39 std::string Date::toString(const Format& format) const
40 {
41     if (format.empty()) {
42         ThrowMsg(Commons::PlatformException, "Format is not set.");
43     }
44
45     char buffer[MAX_BUFFER_SIZE] = { 0 };
46     struct tm* tm = std::localtime(&m_timestamp);
47     if (std::strftime(buffer, MAX_BUFFER_SIZE, format.c_str(), tm) == 0) {
48         ThrowMsg(Commons::PlatformException, "Could not get date string.");
49     }
50
51     return buffer;
52 }
53 } // System
54 } // Platform
55 } // WrtPlugins