1 /*
2  * Copyright (C) 2006 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 package android.os;
18 
19 import android.annotation.NonNull;
20 import android.app.IAlarmManager;
21 import android.compat.annotation.UnsupportedAppUsage;
22 import android.content.Context;
23 import android.location.ILocationManager;
24 import android.location.LocationTime;
25 import android.util.Slog;
26 
27 import dalvik.annotation.optimization.CriticalNative;
28 
29 import java.time.Clock;
30 import java.time.DateTimeException;
31 import java.time.ZoneOffset;
32 
33 /**
34  * Core timekeeping facilities.
35  *
36  * <p> Three different clocks are available, and they should not be confused:
37  *
38  * <ul>
39  *     <li> <p> {@link System#currentTimeMillis System.currentTimeMillis()}
40  *     is the standard "wall" clock (time and date) expressing milliseconds
41  *     since the epoch.  The wall clock can be set by the user or the phone
42  *     network (see {@link #setCurrentTimeMillis}), so the time may jump
43  *     backwards or forwards unpredictably.  This clock should only be used
44  *     when correspondence with real-world dates and times is important, such
45  *     as in a calendar or alarm clock application.  Interval or elapsed
46  *     time measurements should use a different clock.  If you are using
47  *     System.currentTimeMillis(), consider listening to the
48  *     {@link android.content.Intent#ACTION_TIME_TICK ACTION_TIME_TICK},
49  *     {@link android.content.Intent#ACTION_TIME_CHANGED ACTION_TIME_CHANGED}
50  *     and {@link android.content.Intent#ACTION_TIMEZONE_CHANGED
51  *     ACTION_TIMEZONE_CHANGED} {@link android.content.Intent Intent}
52  *     broadcasts to find out when the time changes.
53  *
54  *     <li> <p> {@link #uptimeMillis} is counted in milliseconds since the
55  *     system was booted.  This clock stops when the system enters deep
56  *     sleep (CPU off, display dark, device waiting for external input),
57  *     but is not affected by clock scaling, idle, or other power saving
58  *     mechanisms.  This is the basis for most interval timing
59  *     such as {@link Thread#sleep(long) Thread.sleep(millls)},
60  *     {@link Object#wait(long) Object.wait(millis)}, and
61  *     {@link System#nanoTime System.nanoTime()}.  This clock is guaranteed
62  *     to be monotonic, and is suitable for interval timing when the
63  *     interval does not span device sleep.  Most methods that accept a
64  *     timestamp value currently expect the {@link #uptimeMillis} clock.
65  *
66  *     <li> <p> {@link #elapsedRealtime} and {@link #elapsedRealtimeNanos}
67  *     return the time since the system was booted, and include deep sleep.
68  *     This clock is guaranteed to be monotonic, and continues to tick even
69  *     when the CPU is in power saving modes, so is the recommend basis
70  *     for general purpose interval timing.
71  *
72  * </ul>
73  *
74  * There are several mechanisms for controlling the timing of events:
75  *
76  * <ul>
77  *     <li> <p> Standard functions like {@link Thread#sleep(long)
78  *     Thread.sleep(millis)} and {@link Object#wait(long) Object.wait(millis)}
79  *     are always available.  These functions use the {@link #uptimeMillis}
80  *     clock; if the device enters sleep, the remainder of the time will be
81  *     postponed until the device wakes up.  These synchronous functions may
82  *     be interrupted with {@link Thread#interrupt Thread.interrupt()}, and
83  *     you must handle {@link InterruptedException}.
84  *
85  *     <li> <p> {@link #sleep SystemClock.sleep(millis)} is a utility function
86  *     very similar to {@link Thread#sleep(long) Thread.sleep(millis)}, but it
87  *     ignores {@link InterruptedException}.  Use this function for delays if
88  *     you do not use {@link Thread#interrupt Thread.interrupt()}, as it will
89  *     preserve the interrupted state of the thread.
90  *
91  *     <li> <p> The {@link android.os.Handler} class can schedule asynchronous
92  *     callbacks at an absolute or relative time.  Handler objects also use the
93  *     {@link #uptimeMillis} clock, and require an {@link android.os.Looper
94  *     event loop} (normally present in any GUI application).
95  *
96  *     <li> <p> The {@link android.app.AlarmManager} can trigger one-time or
97  *     recurring events which occur even when the device is in deep sleep
98  *     or your application is not running.  Events may be scheduled with your
99  *     choice of {@link java.lang.System#currentTimeMillis} (RTC) or
100  *     {@link #elapsedRealtime} (ELAPSED_REALTIME), and cause an
101  *     {@link android.content.Intent} broadcast when they occur.
102  * </ul>
103  */
104 public final class SystemClock {
105     private static final String TAG = "SystemClock";
106 
107     /**
108      * This class is uninstantiable.
109      */
110     @UnsupportedAppUsage
SystemClock()111     private SystemClock() {
112         // This space intentionally left blank.
113     }
114 
115     /**
116      * Waits a given number of milliseconds (of uptimeMillis) before returning.
117      * Similar to {@link java.lang.Thread#sleep(long)}, but does not throw
118      * {@link InterruptedException}; {@link Thread#interrupt()} events are
119      * deferred until the next interruptible operation.  Does not return until
120      * at least the specified number of milliseconds has elapsed.
121      *
122      * @param ms to sleep before returning, in milliseconds of uptime.
123      */
sleep(long ms)124     public static void sleep(long ms)
125     {
126         long start = uptimeMillis();
127         long duration = ms;
128         boolean interrupted = false;
129         do {
130             try {
131                 Thread.sleep(duration);
132             }
133             catch (InterruptedException e) {
134                 interrupted = true;
135             }
136             duration = start + ms - uptimeMillis();
137         } while (duration > 0);
138 
139         if (interrupted) {
140             // Important: we don't want to quietly eat an interrupt() event,
141             // so we make sure to re-interrupt the thread so that the next
142             // call to Thread.sleep() or Object.wait() will be interrupted.
143             Thread.currentThread().interrupt();
144         }
145     }
146 
147     /**
148      * Sets the current wall time, in milliseconds.  Requires the calling
149      * process to have appropriate permissions.
150      *
151      * @return if the clock was successfully set to the specified time.
152      */
setCurrentTimeMillis(long millis)153     public static boolean setCurrentTimeMillis(long millis) {
154         final IAlarmManager mgr = IAlarmManager.Stub
155                 .asInterface(ServiceManager.getService(Context.ALARM_SERVICE));
156         if (mgr == null) {
157             Slog.e(TAG, "Unable to set RTC: mgr == null");
158             return false;
159         }
160 
161         try {
162             return mgr.setTime(millis);
163         } catch (RemoteException e) {
164             Slog.e(TAG, "Unable to set RTC", e);
165         } catch (SecurityException e) {
166             Slog.e(TAG, "Unable to set RTC", e);
167         }
168 
169         return false;
170     }
171 
172     /**
173      * Returns milliseconds since boot, not counting time spent in deep sleep.
174      *
175      * @return milliseconds of non-sleep uptime since boot.
176      */
177     @CriticalNative
uptimeMillis()178     native public static long uptimeMillis();
179 
180     /**
181      * @removed
182      */
183     @Deprecated
uptimeMillisClock()184     public static @NonNull Clock uptimeMillisClock() {
185         return uptimeClock();
186     }
187 
188     /**
189      * Return {@link Clock} that starts at system boot, not counting time spent
190      * in deep sleep.
191      *
192      * @removed
193      */
uptimeClock()194     public static @NonNull Clock uptimeClock() {
195         return new SimpleClock(ZoneOffset.UTC) {
196             @Override
197             public long millis() {
198                 return SystemClock.uptimeMillis();
199             }
200         };
201     }
202 
203     /**
204      * Returns milliseconds since boot, including time spent in sleep.
205      *
206      * @return elapsed milliseconds since boot.
207      */
208     @CriticalNative
209     native public static long elapsedRealtime();
210 
211     /**
212      * Return {@link Clock} that starts at system boot, including time spent in
213      * sleep.
214      *
215      * @removed
216      */
217     public static @NonNull Clock elapsedRealtimeClock() {
218         return new SimpleClock(ZoneOffset.UTC) {
219             @Override
220             public long millis() {
221                 return SystemClock.elapsedRealtime();
222             }
223         };
224     }
225 
226     /**
227      * Returns nanoseconds since boot, including time spent in sleep.
228      *
229      * @return elapsed nanoseconds since boot.
230      */
231     @CriticalNative
232     public static native long elapsedRealtimeNanos();
233 
234     /**
235      * Returns milliseconds running in the current thread.
236      *
237      * @return elapsed milliseconds in the thread
238      */
239     @CriticalNative
240     public static native long currentThreadTimeMillis();
241 
242     /**
243      * Returns microseconds running in the current thread.
244      *
245      * @return elapsed microseconds in the thread
246      *
247      * @hide
248      */
249     @UnsupportedAppUsage
250     @CriticalNative
251     public static native long currentThreadTimeMicro();
252 
253     /**
254      * Returns current wall time in  microseconds.
255      *
256      * @return elapsed microseconds in wall time
257      *
258      * @hide
259      */
260     @UnsupportedAppUsage
261     @CriticalNative
262     public static native long currentTimeMicro();
263 
264     /**
265      * Returns milliseconds since January 1, 1970 00:00:00.0 UTC, synchronized
266      * using a remote network source outside the device.
267      * <p>
268      * While the time returned by {@link System#currentTimeMillis()} can be
269      * adjusted by the user, the time returned by this method cannot be adjusted
270      * by the user. Note that synchronization may occur using an insecure
271      * network protocol, so the returned time should not be used for security
272      * purposes.
273      * <p>
274      * This performs no blocking network operations and returns values based on
275      * a recent successful synchronization event; it will either return a valid
276      * time or throw.
277      *
278      * @throws DateTimeException when no accurate network time can be provided.
279      * @hide
280      */
281     public static long currentNetworkTimeMillis() {
282         final IAlarmManager mgr = IAlarmManager.Stub
283                 .asInterface(ServiceManager.getService(Context.ALARM_SERVICE));
284         if (mgr != null) {
285             try {
286                 return mgr.currentNetworkTimeMillis();
287             } catch (ParcelableException e) {
288                 e.maybeRethrow(DateTimeException.class);
289                 throw new RuntimeException(e);
290             } catch (RemoteException e) {
291                 throw e.rethrowFromSystemServer();
292             }
293         } else {
294             throw new RuntimeException(new DeadSystemException());
295         }
296     }
297 
298     /**
299      * Returns a {@link Clock} that starts at January 1, 1970 00:00:00.0 UTC,
300      * synchronized using a remote network source outside the device.
301      * <p>
302      * While the time returned by {@link System#currentTimeMillis()} can be
303      * adjusted by the user, the time returned by this method cannot be adjusted
304      * by the user. Note that synchronization may occur using an insecure
305      * network protocol, so the returned time should not be used for security
306      * purposes.
307      * <p>
308      * This performs no blocking network operations and returns values based on
309      * a recent successful synchronization event; it will either return a valid
310      * time or throw.
311      *
312      * @throws DateTimeException when no accurate network time can be provided.
313      * @hide
314      */
315     public static @NonNull Clock currentNetworkTimeClock() {
316         return new SimpleClock(ZoneOffset.UTC) {
317             @Override
318             public long millis() {
319                 return SystemClock.currentNetworkTimeMillis();
320             }
321         };
322     }
323 
324     /**
325      * Returns a {@link Clock} that starts at January 1, 1970 00:00:00.0 UTC,
326      * synchronized using the device's location provider.
327      *
328      * @throws DateTimeException when the location provider has not had a location fix since boot.
329      */
330     public static @NonNull Clock currentGnssTimeClock() {
331         return new SimpleClock(ZoneOffset.UTC) {
332             private final ILocationManager mMgr = ILocationManager.Stub
333                     .asInterface(ServiceManager.getService(Context.LOCATION_SERVICE));
334             @Override
335             public long millis() {
336                 LocationTime time;
337                 try {
338                     time = mMgr.getGnssTimeMillis();
339                 } catch (RemoteException e) {
340                     e.rethrowFromSystemServer();
341                     return 0;
342                 }
343                 if (time == null) {
344                     throw new DateTimeException("Gnss based time is not available.");
345                 }
346                 long currentNanos = elapsedRealtimeNanos();
347                 long deltaMs = (currentNanos - time.getElapsedRealtimeNanos()) / 1000000L;
348                 return time.getTime() + deltaMs;
349             }
350         };
351     }
352 }
353