source: branches/1.1.x/src/org/armedbear/lisp/Time.java

Last change on this file was 12431, checked in by Mark Evenson, 15 years ago

Replace FastStringBuffer? with java.lang.StringBuilder?.

Phil Hudson suggested in Feburary 2009 that "[FastStringBuffer?] should
be removed with all references to it replaced with
java.lang.StringBuilder? once enough confidence in this change has been
gained." After almost a year of using FastStringBuffer? as a delagate
for StringBuilder?, that confidence has indeed been gained.

One subtlety for use of StringBuilder?: there is no

StringBuilder?(char)

constructor, so use

StringBuilder?(String.valueOf(c))

to construct a new StringBuilder? containing a single char. Otherwise
that char will get promoted to an int, and you will invoke

StringBuilder?(int capacity)

which will "swallow" the first character that you thought you were adding.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.5 KB
Line 
1/*
2 * Time.java
3 *
4 * Copyright (C) 2003-2005 Peter Graves
5 * $Id: Time.java 12431 2010-02-08 08:05:15Z 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  private static final Primitive DEFAULT_TIME_ZONE =
115    new Primitive("default-time-zone", PACKAGE_SYS, false)
116    {
117      @Override
118      public LispObject execute()
119      {
120        TimeZone tz = TimeZone.getDefault();
121        //int offset = tz.getOffset(System.currentTimeMillis());
122        // Classpath hasn't implemented TimeZone.getOffset(long).
123        int rawOffset = tz.getRawOffset();
124        final boolean inDaylightTime =
125          tz.inDaylightTime(new Date(System.currentTimeMillis()));
126        if (inDaylightTime)
127          rawOffset += tz.getDSTSavings();
128        // "Time zone values increase with motion to the west..."
129        // Convert milliseconds to hours.
130        return LispThread.currentThread().setValues(
131          Fixnum.getInstance(- rawOffset).divideBy(Fixnum.getInstance(3600000)),
132          inDaylightTime ? T : NIL);
133      }
134    };
135}
Note: See TracBrowser for help on using the repository browser.