blob: 1f000d748b1faad9be98f203985b255cda755d4e [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
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
18/*
19 * System clock functions.
20 */
21
Mathias Agopian1f5762e2013-05-06 20:20:34 -070022#include <sys/time.h>
23#include <limits.h>
24#include <fcntl.h>
25#include <errno.h>
26#include <string.h>
27
Steven Moreland2279b252017-07-19 09:50:45 -070028#include <nativehelper/JNIHelp.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029#include "jni.h"
Andreas Gampeed6b9df2014-11-20 22:02:20 -080030#include "core_jni_helpers.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032#include <sys/time.h>
33#include <time.h>
34
Mathias Agopian1f5762e2013-05-06 20:20:34 -070035#include <utils/SystemClock.h>
36
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037namespace android {
38
John Reck9481c9e2016-10-03 14:55:00 -070039static_assert(std::is_same<int64_t, jlong>::value, "jlong isn't an int64_t");
40static_assert(std::is_same<decltype(uptimeMillis()), int64_t>::value,
41 "uptimeMillis signature change, expected int64_t return value");
42static_assert(std::is_same<decltype(elapsedRealtime()), int64_t>::value,
43 "uptimeMillis signature change, expected int64_t return value");
44static_assert(std::is_same<decltype(elapsedRealtimeNano()), int64_t>::value,
45 "uptimeMillis signature change, expected int64_t return value");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
47/*
48 * native public static long currentThreadTimeMillis();
49 */
John Reck9481c9e2016-10-03 14:55:00 -070050static jlong android_os_SystemClock_currentThreadTimeMillis()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 struct timespec tm;
53
54 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm);
55
56 return tm.tv_sec * 1000LL + tm.tv_nsec / 1000000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057}
58
59/*
Romain Guy648bee12011-07-20 18:47:17 -070060 * native public static long currentThreadTimeMicro();
61 */
John Reck9481c9e2016-10-03 14:55:00 -070062static jlong android_os_SystemClock_currentThreadTimeMicro()
Romain Guy648bee12011-07-20 18:47:17 -070063{
Romain Guy648bee12011-07-20 18:47:17 -070064 struct timespec tm;
65
66 clock_gettime(CLOCK_THREAD_CPUTIME_ID, &tm);
67
68 return tm.tv_sec * 1000000LL + tm.tv_nsec / 1000;
Romain Guy648bee12011-07-20 18:47:17 -070069}
70
71/*
72 * native public static long currentTimeMicro();
73 */
John Reck9481c9e2016-10-03 14:55:00 -070074static jlong android_os_SystemClock_currentTimeMicro()
Romain Guy648bee12011-07-20 18:47:17 -070075{
76 struct timeval tv;
77
78 gettimeofday(&tv, NULL);
79 return tv.tv_sec * 1000000LL + tv.tv_usec;
80}
81
82/*
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083 * JNI registration.
84 */
Daniel Micay76f6a862015-09-19 17:31:01 -040085static const JNINativeMethod gMethods[] = {
John Reck9481c9e2016-10-03 14:55:00 -070086 // All of these are @CriticalNative, so we can defer directly to SystemClock.h for
87 // some of these
88 { "uptimeMillis", "()J", (void*) uptimeMillis },
89 { "elapsedRealtime", "()J", (void*) elapsedRealtime },
90 { "elapsedRealtimeNanos", "()J", (void*) elapsedRealtimeNano },
91
92 // SystemClock doesn't have an implementation for these that we can directly call
93 { "currentThreadTimeMillis", "()J",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 (void*) android_os_SystemClock_currentThreadTimeMillis },
John Reck9481c9e2016-10-03 14:55:00 -070095 { "currentThreadTimeMicro", "()J",
Romain Guy648bee12011-07-20 18:47:17 -070096 (void*) android_os_SystemClock_currentThreadTimeMicro },
John Reck9481c9e2016-10-03 14:55:00 -070097 { "currentTimeMicro", "()J",
Romain Guy648bee12011-07-20 18:47:17 -070098 (void*) android_os_SystemClock_currentTimeMicro },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099};
100int register_android_os_SystemClock(JNIEnv* env)
101{
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800102 return RegisterMethodsOrDie(env, "android/os/SystemClock", gMethods, NELEM(gMethods));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103}
104
105}; // namespace android
106