/usr/include/sipxtapi/os/linux/OsDateTimeLinux.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | //
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef _OsDateTimeLinux_h_
#define _OsDateTimeLinux_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
#include "os/OsDefs.h"
#include "os/OsDateTime.h"
// DEFINES
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
//:DateTime management functions for Linux
class OsDateTimeLinux : public OsDateTimeBase
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
/* ============================ CREATORS ================================== */
OsDateTimeLinux();
//:Default constructor
OsDateTimeLinux(const unsigned short year, ///< 4-digit year
const unsigned char month,
const unsigned char day,
const unsigned char hour,
const unsigned char minute,
const unsigned char second,
const unsigned int microsecond);
//:Constructor
OsDateTimeLinux(const OsDateTimeLinux& rOsDateTimeLinux);
//:Copy constructor
/// Convert an OsTime to an OsDateTime
OsDateTimeLinux(const OsTime& toTime);
virtual
~OsDateTimeLinux();
//:Destructor
/* ============================ MANIPULATORS ============================== */
OsDateTimeLinux& operator=(const OsDateTimeLinux& rhs);
//:Assignment operator
static void setTime(struct timespec gmt, int tzOffsetSecs,
DstRule dstRule);
//:Set the system time
//!param: (in) gmt - time relative to the beginning of 1970 (GMT)
//!param: (in) tzOffsetSecs - local time offset (seconds relative to GMT)
//!param: (in) dstRule - daylight savings time rule
static void setTimeZone(int tzOffsetSecs, DstRule dstRule);
//:Set the time zone and daylight savings time information
//!param: (in) tzOffsetSecs - local time offset (seconds relative to GMT)
//!param: (in) dstRule - daylight savings time rule
/* ============================ ACCESSORS ================================= */
virtual OsStatus cvtToTimeSinceBoot(OsTime& rTime) const;
//:Convert the OsDateTimeBase value to an OsTime value
// The OsTime value is relative to when the system was booted.
static void getCurTime(OsDateTimeLinux& rDateTime);
//:Return the current time as an OsDateTime value
/// Return the current time as an OsTime value
static void getCurTime(OsTime& rTime);
static void getCurTimeSinceBoot(OsTime& rTime);
//:Return the current time as an OsTime value
// The OsTime value is relative to when the system was booted.
static unsigned long getSecsSinceEpoch(void);
//:Current time as the number of seconds since midnight (0 hour) 01/01/70
static double secondsSinceBoot(void);
//:Get seconds since boot under Linux using /proc/uptime
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
};
/* ============================ INLINE METHODS ============================ */
#endif // _OsDateTimeLinux_h_
|