/usr/share/gap/lib/error.g is in gap-libs 4r6p5-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | #############################################################################
##
#W error.g GAP library Steve Linton
##
##
#Y Copyright (C) 2007 The GAP Group
##
## Error handling, break loop, etc. Now in GAP
##
CallAndInstallPostRestore( function()
ASS_GVAR( "ERROR_COUNT", 0 );
ASS_GVAR( "ErrorLevel", 0 );
ASS_GVAR( "QUITTING", false );
end);
MakeReadWriteGlobal("OnQuit");
OnQuit := fail;
BIND_GLOBAL("AncestorLVars", function(lv, depth)
local i;
for i in [1..depth] do
lv := ParentLVars(lv);
od;
return lv;
end);
ErrorLVars := fail;
BIND_GLOBAL("WHERE", function( context, depth, outercontext)
local bottom, lastcontext, f;
if depth <= 0 then
return;
fi;
bottom := GetBottomLVars();
lastcontext := outercontext;
while depth > 0 and context <> bottom do
PRINT_CURRENT_STATEMENT(context);
Print(" called from\n");
lastcontext := context;
context := ParentLVars(context);
depth := depth-1;
od;
if depth = 0 then
Print("... ");
else
f := ContentsLVars(lastcontext).func;
Print("<function \"",NAME_FUNC(f)
,"\">( <arguments> )\n called from read-eval loop ");
fi;
end);
BIND_GLOBAL("Where", function(arg)
local depth;
if LEN_LIST(arg) = 0 then
depth := 5;
else
depth := arg[1];
fi;
if ErrorLVars = fail or ErrorLVars = GetBottomLVars() then
Print("not in any function ");
else
WHERE(ParentLVars(ErrorLVars),depth, ErrorLVars);
fi;
Print("at line ",INPUT_LINENUMBER()," of ",INPUT_FILENAME(),"\n");
end);
OnBreak := Where;
#OnBreak := function()
# if IsLVarsBag(ErrorLVars) then
# if ErrorLVars <> BottomLVars then
# WHERE(ParentLVars(ErrorLVars),5);
# else
# Print("<function><argume
# else
# WHERE(ParentLVars(GetCurrentLVars()),5);
# fi;
#end;
BIND_GLOBAL("ErrorCount", function()
return ERROR_COUNT;
end);
#
# ErrorInner(context, justQuit, mayReturnVoid, mayReturnObj, lateMessage, .....)
#
#
Unbind(ErrorInner);
BIND_GLOBAL("ErrorInner",
function( arg )
local context, mayReturnVoid, mayReturnObj, lateMessage, earlyMessage,
x, prompt, res, errorLVars, justQuit, printThisStatement;
context := arg[1].context;
if not IsLVarsBag(context) then
PrintTo("*errout*", "ErrorInner: option context must be a local variables bag\n");
LEAVE_ALL_NAMESPACES();
JUMP_TO_CATCH(1);
fi;
if IsBound(arg[1].justQuit) then
justQuit := arg[1].justQuit;
if not justQuit in [false, true] then
PrintTo("*errout*", "ErrorInner: option justQuit must be true or false\n");
LEAVE_ALL_NAMESPACES();
JUMP_TO_CATCH(1);
fi;
else
justQuit := false;
fi;
if IsBound(arg[1].mayReturnVoid) then
mayReturnVoid := arg[1].mayReturnVoid;
if not mayReturnVoid in [false, true] then
PrintTo("*errout*", "ErrorInner: option mayReturnVoid must be true or false\n");
LEAVE_ALL_NAMESPACES();
JUMP_TO_CATCH(1);
fi;
else
mayReturnVoid := false;
fi;
if IsBound(arg[1].mayReturnObj) then
mayReturnObj := arg[1].mayReturnObj;
if not mayReturnObj in [false, true] then
PrintTo("*errout*", "ErrorInner: option mayReturnObj must be true or false\n");
LEAVE_ALL_NAMESPACES();
JUMP_TO_CATCH(1);
fi;
else
mayReturnObj := false;
fi;
if IsBound(arg[1].printThisStatement) then
printThisStatement := arg[1].printThisStatement;
if not printThisStatement in [false, true] then
PrintTo("*errout*", "ErrorInner: option printThisStatement must be true or false\n");
LEAVE_ALL_NAMESPACES();
JUMP_TO_CATCH(1);
fi;
else
printThisStatement := true;
fi;
if IsBound(arg[1].lateMessage) then
lateMessage := arg[1].lateMessage;
if not lateMessage in [false, true] and not IsString(lateMessage) then
PrintTo("*errout*", "ErrorInner: option lateMessage must be a string or false\n");
LEAVE_ALL_NAMESPACES();
JUMP_TO_CATCH(1);
fi;
else
lateMessage := "";
fi;
earlyMessage := arg[2];
if Length(arg) <> 2 then
PrintTo("*errout*","ErrorInner: new format takes exactly two arguments\n");
LEAVE_ALL_NAMESPACES();
JUMP_TO_CATCH(1);
fi;
ErrorLevel := ErrorLevel+1;
ERROR_COUNT := ERROR_COUNT+1;
errorLVars := ErrorLVars;
ErrorLVars := context;
if QUITTING or not BreakOnError then
PrintTo("*errout*","Error, ");
for x in earlyMessage do
PrintTo("*errout*",x);
od;
PrintTo("*errout*","\n");
ErrorLevel := ErrorLevel-1;
ErrorLVars := errorLVars;
if ErrorLevel = 0 then LEAVE_ALL_NAMESPACES(); fi;
JUMP_TO_CATCH(0);
fi;
PrintTo("*errout*","Error, ");
for x in earlyMessage do
PrintTo("*errout*",x);
od;
if printThisStatement then
if context <> GetBottomLVars() then
PrintTo("*errout*"," in\n \c");
PRINT_CURRENT_STATEMENT(context);
Print("\c");
PrintTo("*errout*"," called from \n");
else
PrintTo("*errout*","\c\n");
fi;
else
PrintTo("*errout*"," called from\c\n");
fi;
if IsBound(OnBreak) and IsFunction(OnBreak) then
OnBreak();
fi;
if IsString(lateMessage) then
PrintTo("*errout*",lateMessage,"\n");
elif lateMessage then
if IsBound(OnBreakMessage) and IsFunction(OnBreakMessage) then
OnBreakMessage();
fi;
fi;
if ErrorLevel > 1 then
prompt := Concatenation("brk_",String(ErrorLevel),"> ");
else
prompt := "brk> ";
fi;
if not justQuit then
res := SHELL(context,mayReturnVoid,mayReturnObj,1,false,prompt,false,"*errin*","*errout*",false);
else
res := fail;
fi;
ErrorLevel := ErrorLevel-1;
ErrorLVars := errorLVars;
if res = fail then
if IsBound(OnQuit) and IsFunction(OnQuit) then
OnQuit();
fi;
if ErrorLevel = 0 then LEAVE_ALL_NAMESPACES(); fi;
if not justQuit then
# dont try and do anything else after this before the longjump
SetUserHasQuit(1);
fi;
JUMP_TO_CATCH(3);
fi;
if Length(res) > 0 then
return res[1];
else
return;
fi;
end);
Unbind(Error);
BIND_GLOBAL("Error",
function(arg)
ErrorInner(rec( context := ParentLVars(GetCurrentLVars()),
mayReturnVoid := true,
lateMessage := true,
printThisStatement := false),
arg);
end);
|