~alinuxninja/nginx-edge/trunk

« back to all changes in this revision

Viewing changes to debian/modules/ngx_pagespeed/psol/include/pagespeed/kernel/base/timer.h

  • Committer: Vivian
  • Date: 2015-12-04 18:20:11 UTC
  • Revision ID: git-v1:a36f2bc32e884f7473b3a47040e5411306144d7d
* Do not extract psol.tar.gz

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2010 Google Inc.
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
 
 
17
 
// Author: jmarantz@google.com (Joshua Marantz)
18
 
 
19
 
#ifndef PAGESPEED_KERNEL_BASE_TIMER_H_
20
 
#define PAGESPEED_KERNEL_BASE_TIMER_H_
21
 
 
22
 
#include "pagespeed/kernel/base/basictypes.h"
23
 
 
24
 
namespace net_instaweb {
25
 
 
26
 
// Timer interface, made virtual so it can be mocked for tests.
27
 
class Timer {
28
 
 public:
29
 
  // Note: it's important that these stay compile-time constants, to
30
 
  // avoid weird init order surprises. (Noticed in the wild on Mac).
31
 
  // If you get a link error due to one of these missing, you're trying
32
 
  // to pass it in by a const reference. You can do something like * 1 to
33
 
  // sidestep the issue.
34
 
  static const int64 kSecondMs = 1000;
35
 
  static const int64 kMsUs     = 1000;
36
 
  static const int64 kSecondUs = kMsUs * kSecondMs;
37
 
  static const int64 kSecondNs = 1000 * kSecondUs;
38
 
  static const int64 kMinuteMs =   60 * kSecondMs;
39
 
  static const int64 kMinuteUs =   60 * kSecondUs;
40
 
  static const int64 kHourMs   =   60 * kMinuteMs;
41
 
  static const int64 kDayMs    =   24 * kHourMs;
42
 
  static const int64 kWeekMs   =    7 * kDayMs;
43
 
  static const int64 kMonthMs  =   31 * kDayMs;
44
 
  static const int64 kYearMs   =  365 * kDayMs;
45
 
 
46
 
  virtual ~Timer();
47
 
 
48
 
  // Returns number of milliseconds since 1970.
49
 
  virtual int64 NowMs() const;
50
 
 
51
 
  // Returns number of microseconds since 1970.
52
 
  virtual int64 NowUs() const = 0;
53
 
 
54
 
  // Sleep for given number of milliseconds.
55
 
  virtual void SleepMs(int64 ms);
56
 
 
57
 
  // Sleep for given number of microseconds.
58
 
  virtual void SleepUs(int64 us) = 0;
59
 
};
60
 
 
61
 
}  // namespace net_instaweb
62
 
 
63
 
#endif  // PAGESPEED_KERNEL_BASE_TIMER_H_