/*
* AutoloadMacro.java
*
* Copyright (C) 2003 Peter Graves
* $Id: AutoloadMacro.java,v 1.6 2003/11/15 11:03:32 beedlem Exp $
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package org.armedbear.lisp;
public final class AutoloadMacro extends Autoload
{
private AutoloadMacro(Symbol symbol)
{
super(symbol);
}
private AutoloadMacro(Symbol symbol, String fileName)
{
super(symbol, fileName, null);
}
public void load() throws ConditionThrowable
{
Load._load(getFileName(), true);
}
public String toString()
{
StringBuffer sb = new StringBuffer("AUTOLOAD-MACRO ");
sb.append(symbol);
sb.append(" \"");
sb.append(getFileName());
sb.append('"');
return unreadableString(sb.toString());
}
private static final Primitive AUTOLOAD_MACRO =
new Primitive("autoload-macro", PACKAGE_EXT, true)
{
public LispObject execute(LispObject first) throws ConditionThrowable
{
if (first instanceof Symbol) {
Symbol symbol = (Symbol) first;
symbol.setSymbolFunction(new AutoloadMacro(symbol));
return T;
}
if (first instanceof Cons) {
for (LispObject list = first; list != NIL; list = list.cdr()) {
Symbol symbol = checkSymbol(list.car());
symbol.setSymbolFunction(new AutoloadMacro(symbol));
}
return T;
}
throw new ConditionThrowable(new TypeError(first));
}
public LispObject execute(LispObject first, LispObject second)
throws ConditionThrowable
{
final String fileName = LispString.getValue(second);
if (first instanceof Symbol) {
Symbol symbol = (Symbol) first;
symbol.setSymbolFunction(new AutoloadMacro(symbol, fileName));
return T;
}
if (first instanceof Cons) {
for (LispObject list = first; list != NIL; list = list.cdr()) {
Symbol symbol = checkSymbol(list.car());
symbol.setSymbolFunction(new AutoloadMacro(symbol, fileName));
}
return T;
}
throw new ConditionThrowable(new TypeError(first));
}
};
}
|