mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-09 19:17:38 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
95 lines
1.9 KiB
C++
95 lines
1.9 KiB
C++
//
|
|
// Timezone_WINCE.cpp
|
|
//
|
|
// $Id: //poco/1.4/Foundation/src/Timezone_WINCE.cpp#1 $
|
|
//
|
|
// Library: Foundation
|
|
// Package: DateTime
|
|
// Module: Timezone
|
|
//
|
|
// Copyright (c) 2004-2010, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Timezone.h"
|
|
#include "Poco/UnicodeConverter.h"
|
|
#include "Poco/Exception.h"
|
|
#include "Poco/UnWindows.h"
|
|
#include <ctime>
|
|
#if _WIN32_WCE >= 0x800
|
|
#include "time.h"
|
|
#else
|
|
#include "wce_time.h"
|
|
#endif
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
int Timezone::utcOffset()
|
|
{
|
|
TIME_ZONE_INFORMATION tzInfo;
|
|
DWORD dstFlag = GetTimeZoneInformation(&tzInfo);
|
|
return -tzInfo.Bias*60;
|
|
}
|
|
|
|
|
|
int Timezone::dst()
|
|
{
|
|
TIME_ZONE_INFORMATION tzInfo;
|
|
DWORD dstFlag = GetTimeZoneInformation(&tzInfo);
|
|
return dstFlag == TIME_ZONE_ID_DAYLIGHT ? -tzInfo.DaylightBias*60 : 0;
|
|
}
|
|
|
|
|
|
bool Timezone::isDst(const Timestamp& timestamp)
|
|
{
|
|
std::time_t time = timestamp.epochTime();
|
|
#if _WIN32_WCE >= 0x800
|
|
struct std::tm* tms = localtime(&time);
|
|
#else
|
|
struct std::tm* tms = wceex_localtime(&time);
|
|
#endif
|
|
if (!tms) throw SystemException("cannot get local time DST flag");
|
|
return tms->tm_isdst > 0;
|
|
}
|
|
|
|
|
|
std::string Timezone::name()
|
|
{
|
|
std::string result;
|
|
TIME_ZONE_INFORMATION tzInfo;
|
|
DWORD dstFlag = GetTimeZoneInformation(&tzInfo);
|
|
WCHAR* ptr = dstFlag == TIME_ZONE_ID_DAYLIGHT ? tzInfo.DaylightName : tzInfo.StandardName;
|
|
UnicodeConverter::toUTF8(ptr, result);
|
|
return result;
|
|
}
|
|
|
|
|
|
std::string Timezone::standardName()
|
|
{
|
|
std::string result;
|
|
TIME_ZONE_INFORMATION tzInfo;
|
|
DWORD dstFlag = GetTimeZoneInformation(&tzInfo);
|
|
WCHAR* ptr = tzInfo.StandardName;
|
|
UnicodeConverter::toUTF8(ptr, result);
|
|
return result;
|
|
}
|
|
|
|
|
|
std::string Timezone::dstName()
|
|
{
|
|
std::string result;
|
|
TIME_ZONE_INFORMATION tzInfo;
|
|
DWORD dstFlag = GetTimeZoneInformation(&tzInfo);
|
|
WCHAR* ptr = tzInfo.DaylightName;
|
|
UnicodeConverter::toUTF8(ptr, result);
|
|
return result;
|
|
}
|
|
|
|
|
|
} // namespace Poco
|