source: branches/0.19.x/abcl/src/org/armedbear/lisp/Debug.java

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

Return of the ZipCache? now using last modified time.

Treat jars as zips in ZipCache? which maintains an cache of all
ZipFiles? accessed via Pathname jars (which should be the entire system
as Load now uses Pathname). ZipCache? currently does not invalidate
entries for any non-file resources due to deficiencies in the JVM that
need to be corrected on a per-protocol basis. For instance, for HTTP
we need an implementation that uses HTTP HEAD requests to get the
Last-Modified header as opposed to re-fetching the entire resource as
the JVM URLConnection does.

SYS:REMOVE-ZIP-CACHE-ENTRY implements a way to invalidate ZipCache?
entries from Lisp. Used it in COMPILE-FILE to successfully recompile
FASLs under Windows.

Rewrite remaining Pathname Primtives in the informative stack trace style.

Implement Debug.warn() which can be shut off with SYS::*DEBUG-WARN*.
The intent here is to have a way to warn about Java side events which
having potentially worrying side-effects during development which is
by default not visible to end users (although it can be).

Removed unused EXT:LAST-MODIFIED in favor of existing ANSI FILE-WRITE-DATE.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1/*
2 * Debug.java
3 *
4 * Copyright (C) 2002-2003 Peter Graves
5 * $Id: Debug.java 12441 2010-02-10 16:22:21Z 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
38public final class Debug
39{
40   
41    public static final void assertTrue(boolean b)
42    {
43        if (!b) {
44            System.err.println("Assertion failed!");
45            Error e = new Error();
46            e.printStackTrace();
47            throw e;
48        }
49    }
50
51    // Does not throw an exception.
52    public static void bug()
53    {
54        trace(new Exception("BUG!"));
55    }
56
57    public static final void trace(String s)
58    {
59        System.err.println(s);
60    }
61
62    public static final void trace(Throwable t)
63    {
64        t.printStackTrace();
65    }
66
67    public static final Symbol _DEBUG_WARN_
68        = exportSpecial("*DEBUG-WARN*", PACKAGE_SYS, NIL);
69
70    public static void setDebugWarnings(boolean flag) {
71        if (flag) {
72            _DEBUG_WARN_.setSymbolValue(T);
73        } else {
74            _DEBUG_WARN_.setSymbolValue(NIL);
75        }
76    }
77   
78    public static final void warn(String s) {
79        if (_DEBUG_WARN_.getSymbolValue() != null) {
80            trace(s);
81        }
82    }
83}
Note: See TracBrowser for help on using the repository browser.