summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/StopWatch.h
blob: 2c6215c779558e0e3fb58a24b658caa8f6903957 (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
// **********************************************************************
//
// Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

#ifndef ICE_UTIL_STOPWATCH_H
#define ICE_UTIL_STOPWATCH_H

#include <IceUtil/Time.h>

namespace IceUtilInternal
{

class StopWatch
{
public:

    StopWatch() { }

    void start()
    {
        _s = IceUtil::Time::now(IceUtil::Time::Monotonic);
    }
    
    IceUtil::Int64 stop()
    {
        assert(isStarted());
        IceUtil::Int64 d = (IceUtil::Time::now(IceUtil::Time::Monotonic) - _s).toMicroSeconds();
        _s = IceUtil::Time();
        return d;
    }

    bool isStarted() const
    {
        return _s != IceUtil::Time();
    }

    IceUtil::Int64 delay()
    {
        return (IceUtil::Time::now(IceUtil::Time::Monotonic) - _s).toMicroSeconds();
    }

private:

    IceUtil::Time _s;
};

} // End namespace IceUtilInternal

#endif