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      * Returns nanoseconds since boot, not counting time spent in deep sleep.
182      *
183      * @return nanoseconds of non-sleep uptime since boot.
184      * @hide
185      */
186     @CriticalNative
uptimeNanos()187     public static native long uptimeNanos();
188 
189     /**
190      * Return {@link Clock} that starts at system boot, not counting time spent
191      * in deep sleep.
192      *
193      * @removed
194      */
uptimeClock()195     public static @NonNull Clock uptimeClock() {
196         return new SimpleClock(ZoneOffset.UTC) {
197             @Override
198             public long millis() {
199                 return SystemClock.uptimeMillis();
200             }
201         };
202     }
203 
204     /**
205      * Returns milliseconds since boot, including time spent in sleep.
206      *
207      * @return elapsed milliseconds since boot.
208      */
209     @CriticalNative
210     native public static long elapsedRealtime();
211 
212     /**
213      * Return {@link Clock} that starts at system boot, including time spent in
214      * sleep.
215      *
216      * @removed
217      */
218     public static @NonNull Clock elapsedRealtimeClock() {
219         return new SimpleClock(ZoneOffset.UTC) {
220             @Override
221             public long millis() {
222                 return SystemClock.elapsedRealtime();
223             }
224         };
225     }
226 
227     /**
228      * Returns nanoseconds since boot, including time spent in sleep.
229      *
230      * @return elapsed nanoseconds since boot.
231      */
232     @CriticalNative
233     public static native long elapsedRealtimeNanos();
234 
235     /**
236      * Returns milliseconds running in the current thread.
237      *
238      * @return elapsed milliseconds in the thread
239      */
240     @CriticalNative
241     public static native long currentThreadTimeMillis();
242 
243     /**
244      * Returns microseconds running in the current thread.
245      *
246      * @return elapsed microseconds in the thread
247      *
248      * @hide
249      */
250     @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553)
251     @CriticalNative
252     public static native long currentThreadTimeMicro();
253 
254     /**
255      * Returns current wall time in  microseconds.
256      *
257      * @return elapsed microseconds in wall time
258      *
259      * @hide
260      */
261     @UnsupportedAppUsage
262     @CriticalNative
263     public static native long currentTimeMicro();
264 
265     /**
266      * Returns milliseconds since January 1, 1970 00:00:00.0 UTC, synchronized
267      * using a remote network source outside the device.
268      * <p>
269      * While the time returned by {@link System#currentTimeMillis()} can be
270      * adjusted by the user, the time returned by this method cannot be adjusted
271      * by the user. Note that synchronization may occur using an insecure
272      * network protocol, so the returned time should not be used for security
273      * purposes.
274      * <p>
275      * This performs no blocking network operations and returns values based on
276      * a recent successful synchronization event; it will either return a valid
277      * time or throw.
278      *
279      * @throws DateTimeException when no accurate network time can be provided.
280      * @hide
281      */
282     public static long currentNetworkTimeMillis() {
283         final IAlarmManager mgr = IAlarmManager.Stub
284                 .asInterface(ServiceManager.getService(Context.ALARM_SERVICE));
285         if (mgr != null) {
286             try {
287                 return mgr.currentNetworkTimeMillis();
288             } catch (ParcelableException e) {
289                 e.maybeRethrow(DateTimeException.class);
290                 throw new RuntimeException(e);
291             } catch (RemoteException e) {
292                 throw e.rethrowFromSystemServer();
293             }
294         } else {
295             throw new RuntimeException(new DeadSystemException());
296         }
297     }
298 
299     /**
300      * Returns a {@link Clock} that starts at January 1, 1970 00:00:00.0 UTC,
301      * synchronized using a remote network source outside the device.
302      * <p>
303      * While the time returned by {@link System#currentTimeMillis()} can be
304      * adjusted by the user, the time returned by this method cannot be adjusted
305      * by the user. Note that synchronization may occur using an insecure
306      * network protocol, so the returned time should not be used for security
307      * purposes.
308      * <p>
309      * This performs no blocking network operations and returns values based on
310      * a recent successful synchronization event; it will either return a valid
311      * time or throw.
312      *
313      * @throws DateTimeException when no accurate network time can be provided.
314      * @hide
315      */
316     public static @NonNull Clock currentNetworkTimeClock() {
317         return new SimpleClock(ZoneOffset.UTC) {
318             @Override
319             public long millis() {
320                 return SystemClock.currentNetworkTimeMillis();
321             }
322         };
323     }
324 
325     /**
326      * Returns a {@link Clock} that starts at January 1, 1970 00:00:00.0 UTC,
327      * synchronized using the device's location provider.
328      *
329      * @throws DateTimeException when the location provider has not had a location fix since boot.
330      */
331     public static @NonNull Clock currentGnssTimeClock() {
332         return new SimpleClock(ZoneOffset.UTC) {
333             private final ILocationManager mMgr = ILocationManager.Stub
334                     .asInterface(ServiceManager.getService(Context.LOCATION_SERVICE));
335             @Override
336             public long millis() {
337                 LocationTime time;
338                 try {
339                     time = mMgr.getGnssTimeMillis();
340                 } catch (RemoteException e) {
341                     throw e.rethrowFromSystemServer();
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