blob: a213c8c24d36f51247f578b2e85cdb6c2c9fe467 (
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
81
82
83
84
85
86
87
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// System_Time.h
//
// = AUTHOR
// Prashant Jain, Tim H. Harrison and Douglas C. Schmidt
//
// ============================================================================
#ifndef ACE_SYSTEM_TIME_H
#define ACE_SYSTEM_TIME_H
#include "ace/OS.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Memory_Pool.h"
#include "ace/Malloc_T.h"
class ACE_Export ACE_Date_Time
{
// = TITLE
// This class holds internally date and time and has interfaces
// for getting month or compares of times and dates, etc.
public:
};
class ACE_Export ACE_System_Time
{
// = TITLE
// Defines the timer services of the OS interface to access the
// system time either on the local host or on the central time
// server in the network.
public:
enum Sync_Mode { Jump, Adjust };
// enumeration types to specify mode of synchronization with master
// clock. Jump will set local system time directly (thus possibly
// producing time gaps or ambiguous local system times. Adjust will
// smoothly slow down or speed up the local system clock to reach
// the system time of the master clock.
ACE_System_Time (LPCTSTR poolname = ACE_DEFAULT_BACKING_STORE);
// Default constructor.
~ACE_System_Time (void);
// Default destructor.
static int get_local_system_time (ACE_UINT32 &time_out);
// Get the local system time, i.e., the value returned by
// <ACE_OS::time>.
static int get_local_system_time (ACE_Time_Value &time_out);
// Get the local system time, i.e., the value returned by
// <ACE_OS::time>.
int get_master_system_time (ACE_UINT32 &time_out);
// Get the system time of the central time server.
int get_master_system_time (ACE_Time_Value &time_out);
// Get the system time of the central time server.
int sync_local_system_time (ACE_System_Time::Sync_Mode mode);
// synchronize local system time with the central time server using
// specified mode.
private:
typedef ACE_Malloc <ACE_MMAP_MEMORY_POOL, ACE_Null_Mutex> MALLOC;
typedef ACE_Allocator_Adapter<MALLOC> ALLOCATOR;
ALLOCATOR *shmem_;
// Our allocator (used for obtaining system time from shared memory).
long *delta_time_;
// Pointer to delta time kept in shared memory.
};
#endif /* ACE_SYSTEM_TIME_H */
|