1 | /* |
---|
2 | * arglist.java |
---|
3 | * |
---|
4 | * Copyright (C) 2003-2005 Peter Graves |
---|
5 | * $Id: arglist.java 12254 2009-11-06 20:07:54Z ehuelsmann $ |
---|
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 | |
---|
34 | package org.armedbear.lisp; |
---|
35 | |
---|
36 | public final class arglist extends Lisp |
---|
37 | { |
---|
38 | private static final Operator getOperator(LispObject obj) |
---|
39 | |
---|
40 | { |
---|
41 | if (obj instanceof Operator) |
---|
42 | return (Operator) obj; |
---|
43 | if (obj instanceof Symbol) { |
---|
44 | LispObject function = obj.getSymbolFunction(); |
---|
45 | if (function instanceof Autoload) { |
---|
46 | Autoload autoload = (Autoload) function; |
---|
47 | autoload.load(); |
---|
48 | function = autoload.getSymbol().getSymbolFunction(); |
---|
49 | } |
---|
50 | if (function instanceof Operator) { |
---|
51 | Operator operator = (Operator) function; |
---|
52 | if (operator.getLambdaList() != null) |
---|
53 | return operator; |
---|
54 | LispObject other = get(obj, Symbol.MACROEXPAND_MACRO, null); |
---|
55 | if (other != null) |
---|
56 | return getOperator(other); |
---|
57 | else |
---|
58 | return null; |
---|
59 | } |
---|
60 | } else if (obj instanceof Cons && obj.car() == Symbol.LAMBDA) |
---|
61 | return new Closure(obj, new Environment()); |
---|
62 | return null; |
---|
63 | } |
---|
64 | |
---|
65 | // ### arglist |
---|
66 | private static final Primitive ARGLIST = |
---|
67 | new Primitive("arglist", PACKAGE_EXT, true, "extended-function-designator") |
---|
68 | { |
---|
69 | @Override |
---|
70 | public LispObject execute(LispObject arg) |
---|
71 | { |
---|
72 | LispThread thread = LispThread.currentThread(); |
---|
73 | Operator operator = getOperator(arg); |
---|
74 | LispObject arglist = null; |
---|
75 | if (operator != null) |
---|
76 | arglist = operator.getLambdaList(); |
---|
77 | final LispObject value1, value2; |
---|
78 | if (arglist instanceof AbstractString) { |
---|
79 | String s = arglist.getStringValue(); |
---|
80 | // Give the string list syntax. |
---|
81 | s = "(" + s + ")"; |
---|
82 | // Bind *PACKAGE* so we use the EXT package if we need |
---|
83 | // to intern any symbols. |
---|
84 | SpecialBinding lastSpecialBinding = thread.lastSpecialBinding; |
---|
85 | thread.bindSpecial(Symbol._PACKAGE_, PACKAGE_EXT); |
---|
86 | try { |
---|
87 | arglist = readObjectFromString(s); |
---|
88 | } |
---|
89 | finally { |
---|
90 | thread.lastSpecialBinding = lastSpecialBinding; |
---|
91 | } |
---|
92 | operator.setLambdaList(arglist); |
---|
93 | } |
---|
94 | if (arglist != null) { |
---|
95 | value1 = arglist; |
---|
96 | value2 = T; |
---|
97 | } else { |
---|
98 | value1 = NIL; |
---|
99 | value2 = NIL; |
---|
100 | } |
---|
101 | return thread.setValues(value1, value2); |
---|
102 | } |
---|
103 | }; |
---|
104 | |
---|
105 | // ### %set-arglist |
---|
106 | private static final Primitive _SET_ARGLIST = |
---|
107 | new Primitive("%set-arglist", PACKAGE_SYS, false) |
---|
108 | { |
---|
109 | @Override |
---|
110 | public LispObject execute(LispObject first, LispObject second) |
---|
111 | |
---|
112 | { |
---|
113 | Operator operator = null; |
---|
114 | if (first instanceof Operator) { |
---|
115 | operator = (Operator) first; |
---|
116 | } else if (first instanceof Symbol) { |
---|
117 | LispObject function = first.getSymbolFunction(); |
---|
118 | if (function instanceof Operator) |
---|
119 | operator = (Operator) function; |
---|
120 | } |
---|
121 | if (operator != null) |
---|
122 | operator.setLambdaList(second); |
---|
123 | return second; |
---|
124 | } |
---|
125 | }; |
---|
126 | } |
---|