summaryrefslogtreecommitdiff
path: root/java/tools/src/main/java/org/apache/qpid/tools/Clock.java
blob: 37369959a8803f2f2a5df73d75e4d9547ef39be2 (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
88
89
90
91
92
package org.apache.qpid.tools;

/**
 * In the future this will be replaced by a Clock abstraction
 * that can utilize a realtime clock when running in RT Java.
 */

public class Clock
{
    private static Precision precision;
    private static long offset = -1;  // in nano secs

    public enum Precision
    {
        NANO_SECS, MILI_SECS;

        static Precision getPrecision(String str)
        {
            if ("mili".equalsIgnoreCase(str))
            {
                return MILI_SECS;
            }
            else
            {
                return NANO_SECS;
            }
        }
    };

    static
    {
        precision = Precision.getPrecision(System.getProperty("precision","mili"));
        //offset = Long.getLong("offset",-1);

        System.out.println("Using precision : " + precision + " and offset " + offset);
    }

    public static Precision getPrecision()
    {
        return precision;
    }

    public static long getTime()
    {
        if (precision == Precision.NANO_SECS)
        {
            if (offset == -1)
            {
                return System.nanoTime();
            }
            else
            {
                return System.nanoTime() + offset;
            }
        }
        else
        {
            if (offset == -1)
            {
                return System.currentTimeMillis();
            }
            else
            {
                return System.currentTimeMillis() + offset/convertToMiliSecs();
            }
        }
    }

    public static long convertToSecs()
    {
        if (precision == Precision.NANO_SECS)
        {
            return 1000000000;
        }
        else
        {
            return 1000;
        }
    }

    public static long convertToMiliSecs()
    {
        if (precision == Precision.NANO_SECS)
        {
            return 1000000;
        }
        else
        {
            return 1;
        }
    }
}