source: branches/1.4.0/src/org/armedbear/lisp/Time.java

Last change on this file was 14841, checked in by Mark Evenson, 10 years ago

doc: note argument of EXT:GET-TIME-ZONE

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.6 KB
Line 
1/*
2 * Time.java
3 *
4 * Copyright (C) 2003-2005 Peter Graves
5 * $Id: Time.java 14841 2015-11-09 11:06: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
45  // ### %time
46  private static final Primitive _TIME =
47    new Primitive("%time", PACKAGE_SYS, false)
48    {
49      @Override
50      public LispObject execute(LispObject arg)
51      {
52        Cons.setCount(0);
53        long realStart = System.currentTimeMillis();
54        try
55          {
56            return arg.execute();
57          }
58        finally
59          {
60            long realElapsed = System.currentTimeMillis() - realStart;
61            long count = Cons.getCount();
62            Stream out =
63              checkCharacterOutputStream(Symbol.TRACE_OUTPUT.symbolValue());
64            out.freshLine();
65            StringBuilder sb = new StringBuilder();
66            sb.append(String.valueOf((float)realElapsed / 1000));
67            sb.append(" seconds real time");
68            sb.append(System.getProperty("line.separator"));
69            sb.append(count);
70            sb.append(" cons cell");
71            if (count != 1)
72              sb.append('s');
73            sb.append(System.getProperty("line.separator"));
74            out._writeString(sb.toString());
75            out._finishOutput();
76          }
77      }
78    };
79
80  // ### get-internal-real-time
81  private static final Primitive GET_INTERNAL_REAL_TIME =
82    new Primitive("get-internal-real-time", "")
83    {
84      @Override
85      public LispObject execute()
86      {
87        return number(System.currentTimeMillis());
88      }
89    };
90
91  // ### get-internal-run-time
92  private static final Primitive GET_INTERNAL_RUN_TIME =
93    new Primitive("get-internal-run-time", "")
94    {
95      @Override
96      public LispObject execute()
97      {
98        return number(System.currentTimeMillis());
99      }
100    };
101
102  // ### get-universal-time
103  private static final Primitive GET_UNIVERSAL_TIME =
104    new Primitive("get-universal-time", "")
105    {
106      @Override
107      public LispObject execute()
108      {
109        return number(System.currentTimeMillis() / 1000 + 2208988800L);
110      }
111    };
112
113  // ### default-time-zone => offset daylight-p
114  public static final Primitive DEFAULT_TIME_ZONE = new pf_default_time_zone();
115  @DocString(name="default-time-zone",
116             args="",
117             returns="offset daylight-p",
118             doc="Returns the OFFSET of the default time zone for this instance of the implementation, and as a second value the state of the DAYLIGHT-P predicate.")
119  public static final class pf_default_time_zone extends Primitive {
120    pf_default_time_zone() {
121      super("default-time-zone", PACKAGE_SYS, true);
122    }
123    public LispObject execute()
124    {
125      return GET_TIME_ZONE.execute(LispInteger.getInstance(System.currentTimeMillis()));
126    }
127  };
128
129  // ### get-time-zone time-in-millis => time-zone-difference-in-hours
130  public static final Primitive GET_TIME_ZONE = new pf_get_time_zone();
131  @DocString(name="get-time-zone",
132             args="time-in-millis",
133             returns="timezone",
134             doc="Return the timezone difference in hours for TIME-IN-MILLIS via the Daylight assumptions that were in place at its occurance. i.e. implement 'time of the time semantics'." )
135  public static final class pf_get_time_zone extends Primitive {
136    pf_get_time_zone() {
137      super("get-time-zone", PACKAGE_EXT, true, "time-in-millis");
138    }
139
140    public LispObject execute(LispObject unixTimeMillis) {
141      // should be a reference to a singleton for the lifetime of an ABCL process
142      TimeZone tz = TimeZone.getDefault(); 
143      // int offset = tz.getOffset(System.currentTimeMillis());
144      // Classpath hasn't implemented TimeZone.getOffset(long).
145      int rawOffset = tz.getRawOffset();
146      final boolean inDaylightTime = tz.inDaylightTime(new Date(unixTimeMillis.longValue()));
147      if (inDaylightTime)
148        rawOffset += tz.getDSTSavings();
149      // "Time zone values increase with motion to the west..."
150      // Convert milliseconds to hours.
151      return LispThread.currentThread()
152        .setValues(Fixnum
153                   .getInstance(- rawOffset).divideBy(Fixnum.getInstance(3600000)),
154                   inDaylightTime ? T : NIL);
155    }
156  };
157}
Note: See TracBrowser for help on using the repository browser.