/usr/share/ircII/script/imap is in ircii 20151120-1+b1.
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 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | # imap version 1.1 by Ian Frechette.
# To give credit where credit is due, this was inspired by Run's
# ircmap2 script but I've never looked at his code.
# All code here is original to me.
#
# Currently the only commands are
# /initmap [stuff] - which will create a the data by issuing a /links
# from the current server.
# - stuff can be whatever.. The map is split up if you
# you try to use stuff.. try '*.ca *'
# /gomap [server_name] - will show the current map of the visible irc
# network. If a servername is given it'll try to
# recurse outward from that server instead of the
# current server.
# /showmap [server_name] - Show links on a server, or all links to all servers
# /vtrace server_name - show the route to server from the origin of initmap
# /vfull server_name - vtrace with a showmap added..
# shows route followed by all links.. much like /trace
# /vlinks [server_mask] - Show all stored names matching mask, or if no
# mask, shows all links. Output is alphabetized.
# Note: you may issue the /gomap command as many times as you want after
# the data has been created. You may also /initmap at any time to update the
# data.
#
# Note Also.. as of yet hostmasks are not possible, nor would they really
# make much sense.
#
^set novice off
^set max_recursion 50
@ RCS.imap = [$$Header: /home/cvs/ircii/script/imap,v 1.5 2003/12/08 05:05:59 mrg Exp $$]
eval @ map.mask = encode(*.)
# @ map.str = [| | | | | | | | | | | | | | | | | | | | | | | ]
# It starts builds the map data list. working on args now
alias initmap {
echo *** imap: removing any old map data around
purge maplist
purge maplist2
purge maphublist
echo *** imap: building links list to use later
echo *** imap: please wait until it's finished .....
map.buildlist $*
}
# This alias may take a server name as an argument or it may
# be left blank.
# gomap tries to display the entire irc map from the point of view of
# the given server or if no arg is given from the server the list was
# built on.
alias gomap {
if ([$0] != [])
{@ map.toptree = encode($tolower($0))}
{@ map.toptree = encode($tolower($map.from))}
echo *** Displaying map from $decode($map.toptree)
echo 0 $decode($map.toptree)
makemap 1 $map.toptree
map.restore
echo *** imap: done displaying map
}
# used internally to build the actual map data list. Takes no args.
# This also constucts a list of hostmasks to be used by map.cleanmasks
alias map.buildlist {
^on ^364 * {
@ map.from = [$0]
@ map.srv = [$1]
@ map.uplink = [$2]
@ map.hops = [$3]
# ^set status_user2 .
if (left(1 $map.srv) == [*]) {
@ mapmasklist[$encode($tolower($map.srv))] = map.srv
}
@ map.hub = encode($tolower($map.uplink))
@ maphublist[$map.hub] = maphublist[$map.hub] + 1
@ maplist[$map.hub][$encode($tolower($map.srv))] = map.hops
# ^set status_user2 .
}
^on ^365 * {
^on 364 -*
echo *** imap: Done building links list
^set -status_user2
^on 365 -*
@ map.tmp = encode($tolower($map.from))
^assign -maplist[$map.tmp][$map.tmp]
@ maphublist[$map.tmp] = maphublist[$map.tmp] - 1
map.cleanmasks
map.save
echo *** imap: you may now issue a /gomap to view irc map
}
//links $*
}
# called after the initial list is constucted. no args.
# This go through the main list of hubs and strips the names down to
# the hostmask so.. hub goren.u.washington.edu becomes *.washington.edu
# the mask are determined from the servername field so this step cannot
# be done until after the data list is complete
alias map.cleanmasks {
foreach mapmasklist ii {
foreach maplist jj {
if (match(*$mid(2 100 $ii) $jj))
{
foreach maplist.$jj kk {
@ maplist[$ii][$kk] = maplist[$jj][$kk]
^assign -maplist[$jj][$kk]
}
@ maphublist[$ii] = maphublist[$jj]
^assign -maphublist[$jj]
}
}
^assign -mapmasklist[$ii]
}
echo *** imap: map data masks have been cleaned
}
# /showmap will show you a list of the raw data. Lists all hub servers
# sorted alphabetically with leafs of that hub following
# a servername may be supplied as an argument and this will list only
# the info for that one hub
alias showmap {
if ([$0] == [])
{
foreach maplist ii {
foreach maplist.$ii jj {
echo $decode($ii) links $decode($jj)
}
}
}
{
foreach maplist.$encode($tolower($0)) ii {
echo $0 links $decode($ii)
}
}
}
# /trace servername
# Shows the path from the center of the imap data to the specified server
# eg. /initmap then /vtrace blah.thud.com
# ### my.server.edu-> splat.us-> big.hub.edu-> lagged.com-> blah.thud.com
alias vtrace {
@ vtrace.output = []
vtrace.recur $0
echo ### vtrace: $vtrace.root-> $vtrace.output
^assign -vtrace.output
^assign -vtrace.root
}
# /vfull
# simply calls vtrace, and then showmap
# which will show you the trace to a server, followed by a list of
# the servers connected to the target server..
alias vfull {
vtrace $0
showmap $0
}
alias vtrace.recur {
@vtrace.found = 0
foreach maplist ii {
foreach maplist.$ii jj {
if (decode($jj) == [$0])
{
if (vtrace.output == [])
{@ vtrace.output = decode($jj)}
{@ vtrace.output = decode($jj) ## [-> ] ## vtrace.output}
@ vtrace.root = decode($ii)
vtrace.recur $decode($ii) $decode($jj)
}
}
}
}
# /vlinks
# /vlinks [mask] e.g. /vlinks *.com
# Shows a sorted list of all servernames or of all matching names if
# a mask is supplied
alias vlinks {
@ v.cntt = 0
foreach maplist ii {
foreach maplist.$ii jj {
if ([$0] != [])
{
if (match($0 $decode($jj)))
{@vlinks[$jj] = 1}
}
{@vlinks[$jj] = 1}
@ v.cntt = v.cntt + 1
}
}
@v.cntf = 0
foreach vlinks ii {
echo ### $decode($ii)
^assign -vlinks.$ii
@v.cntf = v.cntf + 1
}
echo ### End of vlinks \($v.cntf found of $v.cntt total\)
^assign -v.cntt
^assign -v.cntf
}
# called with makemap level server
# this is the real workhorse.. It's a recursive function.. It starts at
# recursion level 1 and follows the servers through the data.
# The following example doesn't use real argument types.
# e.g. makemap 1 colorado looks at colorado's list of links
# displays each one and then recurses into that
# link if it can. So when it gets to uiuc
# makemap is called. makemap 2 uiuc
# and it follows its links etc etc..
# loops in the data are avoided by removing each link from the list entirely
# as it's used. map.restore can be called later to restore data
#
alias makemap {
@ map.ind[$0] = 0
foreach maplist.$1 ii$0 {
echo $lformat(3 $0) $map.outmask(1 $0)`-$decode($(ii$0)) $maplist[$1][$(ii$0)]
^assign -maplist[$1][$(ii$0)]
if ((map.ind[$0] = map.ind[$0] +1) >= maphublist[$1])
{@mask[$0] = 0}
{@mask[$0] = 1}
makemap ${[$0] + 1} $(ii$0)
^assign -ii$0
}
}
# called after the data is created and cleaned to keep for future use
# no args
alias map.save {
foreach maplist ii {
foreach maplist.$ii jj {
@ maplist2[$ii][$jj] = maplist[$ii][$jj]
}
}
echo *** imap: Map data saved
}
# called after gomap has run makemap to restore data.
# makemap destroys the entire list on purpose
# no args.
alias map.restore {
foreach maplist2 ii {
foreach maplist2.$ii jj {
@ maplist[$ii][$jj] = maplist2[$ii][$jj]
}
}
echo *** imap: Map data restored
}
# no stranger to the default scripts.. repeated here for completeness.
alias lformat {
@ IRCII.word = [$1-]
if (@IRCII.word < [$0])
{ @ function_return = [$([$0]IRCII.word)] }
{ @ function_return = IRCII.word }
}
# /purge <structure name>
# removes all assignments under that name recursively.
^alias purge {
foreach $0 ii
{
purge $0.$ii
}
^assign -ii
^assign -$0
}
# This special little recursive function scans the mask[]
# array and generates an output string of the format
# | | | | | and so on.. depending on whether a mask[x] is
# turned on or not
alias map.outmask {
if ([$0] < [$1])
{
if (mask[$0])
{@ mask.mask = mask.mask ## [| ]}
{@ mask.mask = mask.mask ## [ ]}
@ function_return = map.outmask(${[$0] + 1} $1)
}
{
@ function_return = mask.mask
^assign -mask.mask
}
}
|