265
266
267
268
269
270
271
272
|
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
end if;
end if;
raise Command_Not_Found
with "Unknown command """ & To_String (Cmd.Current_Atom) & '"';
end Execute;
--------------------------------------
-- Interpreter Building Subprograms --
--------------------------------------
function Build (Commands : Command_Array) return Interpreter is
Result : Interpreter;
begin
for I in Commands'Range loop
Result.Add_Command
(Commands (I).Name.Query.Data.all,
Commands (I).Cmd.Query.Data.all);
end loop;
return Result;
end Build;
function Build (Commands : Command_Array; Fallback : String)
return Interpreter
is
Result : Interpreter := Build (Commands);
begin
Result.Set_Fallback (To_Atom (Fallback));
return Result;
end Build;
function Item (Name : String; Cmd : Command'Class)
return Command_Description
is
function Get_Name return Atom;
function Get_Command return Command'Class;
function Get_Name return Atom is
begin
return To_Atom (Name);
end Get_Name;
function Get_Command return Command'Class is
begin
return Cmd;
end Get_Command;
begin
return (Name => Atom_Refs.Create (Get_Name'Access),
Cmd => Command_Refs.Create (Get_Command'Access));
end Item;
end Natools.S_Expressions.Interpreters;
|