source: trunk/abcl/src/org/armedbear/lisp/Time.java

Last change on this file was 14997, checked in by Mark Evenson, 7 years ago

Move SYS:GET-TIME-ZONE to EXT:GET-TIME-ZONE

Refactor Time.java to Java primitive linkage conventions.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.8 KB
Line 
1/*
2 * Time.java
3 *
4 * Copyright (C) 2003-2005 Peter Graves
5 * $Id: Time.java 14997 2017-04-17 13:47:31Z mevenson $
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 *
21 * As a special exception, the copyright holders of this library give you
22 * permission to link this library with independent modules to produce an
23 * executable, regardless of the license terms of these independent
24 * modules, and to copy and distribute the resulting executable under
25 * terms of your choice, provided that you also meet, for each linked
26 * independent module, the terms and conditions of the license of that
27 * module.  An independent module is a module which is not derived from
28 * or based on this library.  If you modify this library, you may extend
29 * this exception to your version of the library, but you are not
30 * obligated to do so.  If you do not wish to do so, delete this
31 * exception statement from your version.
32 */
33
34package org.armedbear.lisp;
35
36import static org.armedbear.lisp.Lisp.*;
37
38import java.lang.reflect.Method;
39import java.util.Date;
40import java.util.TimeZone;
41
42public final class Time
43{
44  // ### %time
45  public static final Primitive _TIME = new pf__time();
46  private static final class pf__time extends Primitive {
47    pf__time() {
48      super("%time", PACKAGE_SYS, false);
49    }
50    @Override
51    public LispObject execute(LispObject arg) {
52      Cons.setCount(0);
53      long realStart = System.currentTimeMillis();
54      try {
55        return arg.execute();
56      } finally {
57        long realElapsed = System.currentTimeMillis() - realStart;
58        long count = Cons.getCount();
59        Stream out
60          = checkCharacterOutputStream(Symbol.TRACE_OUTPUT.symbolValue());
61            out.freshLine();
62            StringBuilder sb = new StringBuilder();
63            sb.append(String.valueOf((float)realElapsed / 1000));
64            sb.append(" seconds real time");
65            sb.append(System.getProperty("line.separator"));
66            sb.append(count);
67            sb.append(" cons cell");
68            if (count != 1)
69              sb.append('s');
70            sb.append(System.getProperty("line.separator"));
71            out._writeString(sb.toString());
72            out._finishOutput();
73      }
74    }
75  };
76
77  // ### get-internal-real-time
78  private static final Primitive GET_INTERNAL_REAL_TIME = new pf_get_internal_real_time();
79  private static final class pf_get_internal_real_time extends Primitive {
80    pf_get_internal_real_time() {
81      super("get-internal-real-time", "");
82    }
83    @Override
84    public LispObject execute() {
85      return number(System.currentTimeMillis());
86    }
87  };
88
89  // ### get-internal-run-time
90  private static final Primitive GET_INTERNAL_RUN_TIME = new pf_get_internal_run_time();
91  private static final class pf_get_internal_run_time extends Primitive {
92    pf_get_internal_run_time() {
93      super("get-internal-run-time", "");
94    }
95    @Override
96    public LispObject execute() {
97      return number(System.currentTimeMillis());
98    }
99  };
100
101  // ### get-universal-time
102  private static final Primitive GET_UNIVERSAL_TIME = new pf_get_universal_time();
103  private static final class pf_get_universal_time extends Primitive {
104    pf_get_universal_time() {
105      super("get-universal-time", "");
106    }
107    @Override
108    public LispObject execute() {
109      return number(System.currentTimeMillis() / 1000 + 2208988800L);
110    }
111  };
112
113  // ### default-time-zone => offset daylight-p
114  private static final Primitive DEFAULT_TIME_ZONE = new pf_default_time_zone();
115  private static final class pf_default_time_zone extends Primitive {
116    pf_default_time_zone() {
117      super("default-time-zone", PACKAGE_SYS, false);
118    }
119    @Override
120    public LispObject execute() {
121      return getTimeZone(System.currentTimeMillis());
122    }
123  };
124
125  private static final LispObject getTimeZone(long unixTimeMillis) {
126    TimeZone tz = TimeZone.getDefault();
127    //int offset = tz.getOffset(System.currentTimeMillis());
128    // Classpath hasn't implemented TimeZone.getOffset(long).
129    int rawOffset = tz.getRawOffset();
130    final boolean inDaylightTime =
131      tz.inDaylightTime(new Date(unixTimeMillis));
132    if (inDaylightTime)
133      rawOffset += tz.getDSTSavings();
134    // "Time zone values increase with motion to the west..."
135    // Convert milliseconds to hours.
136    return LispThread.currentThread()
137      .setValues(Fixnum.getInstance(- rawOffset).divideBy(Fixnum.getInstance(3600000)),
138                 inDaylightTime ? T : NIL);
139  }
140
141  // ### get-time-zone universal-time => hours-west daylight-p
142  private static final Primitive GET_TIME_ZONE = new pf_get_time_zone();
143  @DocString(name="get-time-zone",
144             args="time-in-millis",
145             returns="hours-west daylight-p",
146             doc= "Returns as the first value the timezone difference in hours from the Greenwich meridian for TIME-IN-MILLIS via the Daylight Savings Time assumptions that were in place at the instant's occurance.  Returns as the second value a boolean as to whether daylight savings time was in effect at the occurance.")
147  private static final class pf_get_time_zone extends Primitive {
148    pf_get_time_zone() {
149      super("get-time-zone", PACKAGE_EXT, true);
150    }
151    @Override
152    public LispObject execute(LispObject arg) {
153      return getTimeZone((arg.longValue() - 2208988800L) * 1000);
154    }
155  };
156}
Note: See TracBrowser for help on using the repository browser.