/usr/share/gap/lib/methsel2.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 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | #############################################################################
##
#W methsel2.g GAP library Steve Linton
## Hans Ulrich Besche
## Max Neuenhoeffer
##
##
#Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
#Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
#Y Copyright (C) 2002 The GAP Group
##
## This file defines some functions associated with method selection,
## which do not need to be compiled by default. More performance critical
## functions are found in methsel1.g
##
## This is a dirty hack, because this function is defined only later:
ApplicableMethod := fail;
## See below for the other part of it!
#############################################################################
##
#F HANDLE_METHOD_NOT_FOUND( <information> ) . . . raise the method not
##
## <ManSection>
## <Func Name="HANDLE_METHOD_NOT_FOUND" Arg='information'/>
##
## <Description>
## found error
## <P/>
## <A>information</A> is a plain record passed by the kernel when no
## method is found. Components so far defined are:
## <P/>
## .Operation -- the operation called
## .Arguments -- the arguments as a plain (immutable) list
## .isVerbose -- if the operation was being traced
## .isConstructor -- if the operation is a constructor
## .Precedence -- the "precedence" of the method sought 0 for
## first choice, 1 after one TryNextMethod(), etc.
## </Description>
## </ManSection>
##
HANDLE_METHOD_NOT_FOUND := function ( INF )
local no_method_found, ShowArguments, ShowArgument, ShowDetails, ShowMethods,
ShowOtherMethods;
#############################################################################
##
#F ShowArguments( ) . . . . . . . . . . . . . . . . . . . . . . . . . . . .
##
## <#GAPDoc Label="ShowArguments">
## <ManSection>
## <Func Name="ShowArguments" Arg=''/>
##
## <Description>
## This function is only available within a break loop caused by a <Q>No
## Method Found</Q>-error. It prints as a list the arguments of the operation
## call for which no method was found.
## <!-- %% <C>ShowArguments</C> can -->
## <!-- %% be called with any number of arguments. They are ignored. -->
## </Description>
## </ManSection>
## <#/GAPDoc>
##
ShowArguments := function( arg )
Print( INF.Arguments, "\n" );
end;
#############################################################################
##
#F ShowArgument(<nr>) . . . . . . . . . . . . . . . . . . . . . . . . . . .
##
## <#GAPDoc Label="ShowArgument">
## <ManSection>
## <Func Name="ShowArgument" Arg='nr'/>
##
## <Description>
## This function is only available within a break loop caused by a <Q>No
## Method Found</Q>-error.
## It prints the <A>nr</A>-th arguments of the operation call
## for which no method was found.
## <Ref Func="ShowArgument"/> needs exactly one
## argument which is an integer between 0 and the number of arguments the
## operation was called with.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
ShowArgument := function( arg )
if LENGTH(arg) <> 1 or not IS_INT(arg[1]) or arg[1] <= 0
or arg[1] > LENGTH(INF.Arguments) then
Print( "Usage: `ShowArgument( <nr> )' where <nr> is an integer between ",
1," and ",LENGTH(INF.Arguments),"\n");
else
Print( INF.Arguments[arg[1]], "\n" );
fi;
end;
#############################################################################
##
#F ShowDetails( ) . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
##
## <#GAPDoc Label="ShowDetails">
## <ManSection>
## <Func Name="ShowDetails" Arg=''/>
##
## <Description>
## This function is only available within a break loop caused by a <Q>No
## Method Found</Q>-error. It prints the details of this error: The
## operation, the number of arguments, a flag which indicates whether the
## operation is being traced, a flag which indicates whether the
## operation is a constructor method, and the number of methods that
## refused to apply by calling <Ref Func="TryNextMethod"/>.
## The last number is called <C>Choice</C> and is printed as an ordinal.
## So if exactly <M>k</M> methods were found but called
## <Ref Func="TryNextMethod"/> and there were no more methods
## it says <C>Choice: </C><M>k</M><C>th</C>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
## %% `ShowDetails' can be called with any number of
## %% arguments. They are ignored.
##
ShowDetails := function( arg )
Print( "--------------------------------------------\n");
Print( "Information about a `No method found'-error:\n");
Print( "--------------------------------------------\n");
Print( "Operation : ", NAME_FUNC( INF.Operation ), "\n" );
Print( "Number of Arguments : ", LENGTH( INF.Arguments ), "\n" );
Print( "Operation traced : ", INF.isVerbose, "\n" );
Print( "IsConstructor : ", INF.isConstructor, "\n" );
Print( "Choice : ", Ordinal(INF.Precedence+1), "\n" );
end;
#############################################################################
##
#F ShowMethods( [<verbosity>] ) . . . . . . . . . . . . . . . . . . . . . .
##
## <#GAPDoc Label="ShowMethods">
## <ManSection>
## <Func Name="ShowMethods" Arg='[verbosity]'/>
##
## <Description>
## This function is only available within a break loop caused by a <Q>No
## Method Found</Q>-error. It prints an overview about the installed methods
## for those arguments the operation was called with (using
## <Ref Sect="sect:ApplicableMethod"/>. The verbosity can be
## controlled by the optional integer parameter <A>verbosity</A>. The default
## is 2, which lists all applicable methods. With verbosity 1
## <Ref Func="ShowMethods"/> only shows the number of installed methods and the
## methods matching, which can only be those that were already called but
## refused to work by calling <Ref Func="TryNextMethod"/>.
## With verbosity 3 not only
## all installed methods but also the reasons why they do not match are
## displayed.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
ShowMethods := function( arg )
local verbosity;
if LENGTH(arg) <> 1 or not IS_INT(arg[1]) then
verbosity := 2;
elif arg[1] < 1 then
verbosity := 1;
else
verbosity := arg[1];
fi;
ApplicableMethod( INF.Operation, INF.Arguments, verbosity, "all" );
end;
#############################################################################
##
#F ShowOtherMethods( [<verbosity>] ) . . . . . . . . . . . . . . . . . . . .
##
## <#GAPDoc Label="ShowOtherMethods">
## <ManSection>
## <Func Name="ShowOtherMethods" Arg='[verbosity]'/>
##
## <Description>
## This function is only available within a break loop caused by a <Q>No
## Method Found</Q>-error. It prints an overview about the installed methods
## for a different number of arguments than the number of arguments the
## operation was called with (using <Ref Sect="sect:ApplicableMethod"/>.
## The verbosity can be controlled by the optional
## integer parameter <A>verbosity</A>. The default is 1 which lists only the
## number of applicable methods.
## With verbosity 2 <Ref Func="ShowOtherMethods"/> lists
## all installed methods and with verbosity 3 also the reasons, why they
## are not applicable.
## Calling <Ref Func="ShowOtherMethods"/> with verbosity 3 in this
## function will normally not make any sense, because the different
## numbers of arguments are simulated by supplying the corresponding
## number of ones, for which normally no reasonable methods will be
## installed.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
ShowOtherMethods := function( arg )
local verbosity, i, l, args;
if LENGTH(arg) <> 1 or not IS_INT(arg[1]) then
verbosity := 1;
elif arg[1] < 1 then
verbosity := 1;
else
verbosity := arg[1];
fi;
l := [0..6];
args := [];
for i in l do
if i <> LENGTH( INF.Arguments ) then
ApplicableMethod( INF.Operation, args, verbosity, "all" );
Print( "\n" );
fi;
ADD_LIST(args,1);
od;
end;
# Remember, we are in the function `HANDLE_METHOD_NOT_FOUND'!
PRINT_TO( "*errout*",
"Error, no method found! For debugging hints type ?Recovery from NoMethodFound\n" ); # should go to errout
no_method_found:="no ";
APPEND_LIST(no_method_found,Ordinal(INF.Precedence+1));
APPEND_LIST(no_method_found," choice method found for `");
APPEND_LIST(no_method_found,NAME_FUNC(INF.Operation));
APPEND_LIST(no_method_found,"' on ");
APPEND_LIST(no_method_found,STRING_INT(LENGTH(INF.Arguments)));
APPEND_LIST(no_method_found," arguments");
Error(no_method_found);
end;
## This is the other part of the above mentioned dirty trick:
Unbind( ApplicableMethod );
#############################################################################
##
#F NONAVAILABLE_SHOW_FUNC( ) . . . . . . . . . . . . . . . . . . . . . . . .
##
## <ManSection>
## <Func Name="NONAVAILABLE_SHOW_FUNC" Arg=''/>
##
## <Description>
## This is an excuse if the user tries to call the <C>Show...</C> functions
## without a NoMethodFound-error.
## </Description>
## </ManSection>
##
BIND_GLOBAL( "NONAVAILABLE_SHOW_FUNC", function( arg )
Error( "this function is only available after a 'no method found'-Error" );
end );
# The following comes in handy also for command line completion:
BIND_GLOBAL( "ShowArguments", NONAVAILABLE_SHOW_FUNC );
BIND_GLOBAL( "ShowArgument", NONAVAILABLE_SHOW_FUNC );
BIND_GLOBAL( "ShowDetails", NONAVAILABLE_SHOW_FUNC );
BIND_GLOBAL( "ShowMethods", NONAVAILABLE_SHOW_FUNC );
BIND_GLOBAL( "ShowOtherMethods", NONAVAILABLE_SHOW_FUNC );
#############################################################################
##
#E
|