File: TimeSpan.cpp

package info (click to toggle)
dasher 4.11%2Bgit20130508.adc653-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 40,248 kB
  • ctags: 5,158
  • sloc: xml: 185,479; cpp: 32,301; sh: 11,207; makefile: 828; ansic: 483
file content (234 lines) | stat: -rw-r--r-- 4,983 bytes parent folder | download | duplicates (8)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234

#include "../Common/Common.h"

#include <cstring>
#include "TimeSpan.h"

#ifdef _WIN32
#include <sys/timeb.h>
#else
#include <sys/time.h>
#endif

#ifdef _WIN32
// In order to track leaks to line number, we need this at the top of every file
#include "MemoryLeak.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
#endif

CTimeSpan::CTimeSpan(const string& strName, bool bAddDate)
{
  InitMemberVars();

  m_strName       = strName;
  m_strStartTime  = GetTimeStamp();
  m_pTimer        = new CSimpleTimer();
  m_dElapsed      = 0.0;
  m_strEndTime    = "";
  m_strStartDate  = "";

  // A time span can optionally record the current date
  if (bAddDate)
    m_strStartDate = GetDateStamp();
}

CTimeSpan::~CTimeSpan()
{
  if (m_pTimer != NULL)
  {
    delete m_pTimer;
    m_pTimer = NULL;
  }
}

// Get the XML for this TimeSpan object.  If bSinglePointInTime is true, then 
// this is just a single point in time and we don't need the end time or 
// elapsed time.
string CTimeSpan::GetXML(const string& strPrefix, bool bSinglePointInTime)
{
  string strResult = "";

  // Only stop if we haven't called Stop() explicitly
  if (m_strEndTime.size() == 0)
    Stop();

  strResult += strPrefix;
  strResult += "<";
  strResult += m_strName;
  strResult += ">\n";

  if (!bSinglePointInTime)
  {
    strResult += strPrefix;
    strResult += "\t<Elapsed>";
    char strNum[256];
    sprintf(strNum, "%0.3f", m_dElapsed);
    strResult += strNum;
    strResult += "</Elapsed>\n";
  }

  if (m_strStartDate.length() > 0)
  {
    strResult += strPrefix;
    strResult += "\t<Date>";
    strResult += m_strStartDate;
    strResult += "</Date>\n";
  }

  if (!bSinglePointInTime)
  {
    strResult += strPrefix;
    strResult += "\t<Start>";
    strResult += m_strStartTime;
    strResult += "</Start>\n";

    strResult += strPrefix;
    strResult += "\t<End>";
    strResult += m_strEndTime;
    strResult += "</End>\n";
  }
  else
  {
    strResult += strPrefix;
    strResult += "\t<Time>";
    strResult += m_strStartTime;
    strResult += "</Time>\n";
  }

  strResult += strPrefix;
  strResult += "</";
  strResult += m_strName;
  strResult += ">\n";

  return strResult;
}

string CTimeSpan::GetTimeStamp()
{
  string strTimeStamp = "";
#ifdef _WIN32
    struct timeb sTimeBuffer;
#else
    struct timeval sTimeBuffer;
    struct timezone sTimezoneBuffer;
    time_t t;
#endif
    char* szTimeLine = NULL;

#ifdef _WIN32
    ftime(&sTimeBuffer);
    szTimeLine = ctime(&(sTimeBuffer.time));
#else
    gettimeofday(&sTimeBuffer, &sTimezoneBuffer);
    t = sTimeBuffer.tv_sec;
    szTimeLine = ctime(&t);
#endif
  
  if ((szTimeLine != NULL) && (strlen(szTimeLine) > 18))
  {
    for (int i = 11; i < 19; i++)
      strTimeStamp += szTimeLine[i];
    strTimeStamp += ".";
    char szMs[16];
#ifdef _WIN32
    sprintf(szMs, "%d", sTimeBuffer.millitm);
#else
    sprintf(szMs, "%d", static_cast<int>(sTimeBuffer.tv_usec / 1000));
#endif
    if (strlen(szMs) == 1)
      strTimeStamp += "00";
    else if (strlen(szMs) == 2)
      strTimeStamp += "0";
    strTimeStamp += szMs;
  }

  return strTimeStamp;
}

void CTimeSpan::Stop()
{
  // Only do this if we actually have a timer, if we were
  // created from XML then we don't want to change what 
  // we read from the file.
  if (m_pTimer != NULL)
  {
    m_strEndTime    = GetTimeStamp();
    m_dElapsed       = m_pTimer->GetElapsed();
  }
}

// We allow a time span to continue to erase the 
// effects of a previous Stop() call
void CTimeSpan::Continue()
{
  m_strEndTime = "";
  m_dElapsed = 0.0;
}

bool CTimeSpan::IsStopped()
{
  if (m_strEndTime.length() > 0)
    return true;

  return false;
}

double CTimeSpan::GetElapsed()
{
  return m_dElapsed;
}

string CTimeSpan::GetDateStamp()
{
  std::string strDateStamp = "";
  char* szTimeLine = NULL;
  time_t t;

  t = time(NULL);
  szTimeLine = ctime(&t);

  // Format is:
  // Wed Jun 22 10:22:00 2005
  // 0123456789012345678901234
  if ((szTimeLine != NULL) && (strlen(szTimeLine) > 23))
  {
    for (int i = 4; i < 10; i++)
      strDateStamp += szTimeLine[i];            
    for (int i = 19; i < 24; i++)
      strDateStamp += szTimeLine[i];            
  }

  return strDateStamp;
}

void CTimeSpan::InitMemberVars()
{
  m_pTimer        = NULL;
  m_strName       = "";
  m_strStartTime  = "";
  m_dElapsed      = 0.0;
  m_strEndTime    = "";
  m_strStartDate  = "";
}

// Construct based on some yummy XML like:
// 		<Elapsed>12.062</Elapsed>
//		<Date>Jul 04 2005</Date>
//		<Start>15:48:52.625</Start>
//		<End>15:49:04.687</End>
CTimeSpan::CTimeSpan(const string& strName, const string& strXML)
{
  InitMemberVars();

  m_dElapsed      = (double) XMLUtil::GetElementFloat("Elapsed", strXML);    

  m_strStartDate  = XMLUtil::GetElementString("Date", strXML);
  m_strStartTime  = XMLUtil::GetElementString("Start", strXML);
  m_strEndTime    = XMLUtil::GetElementString("End", strXML);

  m_strName       = strName;
}