/usr/share/lmod/6.6/shells/BaseShell.lua is in lmod 6.6-0.2.
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 | --------------------------------------------------------------------------
-- Lmod License
--------------------------------------------------------------------------
--
-- Lmod is licensed under the terms of the MIT license reproduced below.
-- This means that Lmod is free software and can be used for both academic
-- and commercial purposes at absolutely no cost.
--
-- ----------------------------------------------------------------------
--
-- Copyright (C) 2008-2014 Robert McLay
--
-- Permission is hereby granted, free of charge, to any person obtaining
-- a copy of this software and associated documentation files (the
-- "Software"), to deal in the Software without restriction, including
-- without limitation the rights to use, copy, modify, merge, publish,
-- distribute, sublicense, and/or sell copies of the Software, and to
-- permit persons to whom the Software is furnished to do so, subject
-- to the following conditions:
--
-- The above copyright notice and this permission notice shall be
-- included in all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
-- BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
-- ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-- THE SOFTWARE.
--
--------------------------------------------------------------------------
--------------------------------------------------------------------------
-- BaseShell: This is the base class for all the shell output classes.
require("strict")
require("inherits")
require("serializeTbl")
require("string_utils")
require("utils")
local M = {}
local dbg = require("Dbg"):dbg()
local MT = require("MT")
local base64 = require("base64")
local concatTbl = table.concat
local decode64 = base64.decode64
local encode64 = base64.encode64
local floor = math.floor
local format = string.format
local getenv = os.getenv
local huge = math.huge
local min = math.min
local pack = (_VERSION == "Lua 5.1") and argsPack or table.pack
local pairsByKeys = pairsByKeys
--------------------------------------------------------------------------
-- BaseShell Member functions:
--------------------------------------------------------------------------
--------------------------------------------------------------------------
-- BaseShell:name(): returns the derived class's name: (e.g. bash)
function M.name(self)
return self.my_name
end
--------------------------------------------------------------------------
-- BaseShell:setActive(): Should shell output be turned on. Currently
-- checkSyntax mode is the only thing that turns off
-- output.
function M.setActive(self, active)
self._active = active
end
--------------------------------------------------------------------------
-- BaseShell:real_shell(): Return true if the output shell is "real" or not.
-- This base function returns false. Bash, Csh
-- and Fish should return true.
function M.real_shell(self)
return false
end
--------------------------------------------------------------------------
-- BaseShell:isActive(): Are we active.
function M.isActive(self)
return self._active
end
--------------------------------------------------------------------------
-- BaseShell:expand(): This base class function is what converts the
-- environment variables stored internally into
-- strings. Each variable knows its type, so this
-- routine does a big switch on each type and calls
-- the derived shell class member function to do the
-- actual expansion to standard out (io.stdout).
function M.expand(self, tbl)
dbg.start{"BaseShell:expand(tbl)"}
if ( not self._active) then
dbg.print{"expand is not active\n"}
dbg.fini("BaseShell:expand")
return
end
for k,v in pairsByKeys(tbl) do
local vstr, vType, priorityStrT = v:expand()
if (next(priorityStrT)) then
for prtyKey,prtyStr in pairs(priorityStrT) do
self:expandVar(prtyKey,prtyStr,"path")
end
end
if (vType == "alias") then
self:alias(k,vstr)
elseif (vType == "shell_function") then
self:shellFunc(k,vstr)
elseif (not vstr) then
self:unset(k, vType)
elseif (k == "_ModuleTable_") then
self:expandMT(vstr)
else
self:expandVar(k,vstr,vType)
end
end
dbg.fini("BaseShell:expand")
end
--------------------------------------------------------------------------
-- BaseShell:expandMT(): This routine outputs the _ModuleTable_. This
-- table is how Lmod knows its state. It is a lua
-- table which is serialized into a string. Then
-- this string is uuencode and broken up into
-- 512 pieces. This way the shell's little brain
-- won't be taxed to much.
function M.expandMT(self, vstr)
dbg.start{"BaseShell:expandMT(vstr)"}
local vv = encode64(vstr)
local a = {}
local vlen = vv:len()
local blksize = 512
local nblks = floor((vlen - 1)/blksize) + 1
local name
local alen
for i = 1, vlen, blksize do
alen = min(i+blksize-1,vlen)
a[#a+1] = vv:sub(i,alen)
end
for i = 1, #a do
name = format("_ModuleTable%03d_",i)
self:expandVar(name, a[i])
end
self:expandVar("_ModuleTable_Sz_",tostring(#a))
for i = nblks+1, huge do
name = format("_ModuleTable%03d_",i)
local v = getenv(name)
if (v == nil) then break end
self:unset(name)
end
if (dbg.active()) then
local mt = MT:mt()
local indent = dbg.indent()
local s = serializeTbl{indent=true, name="_ModuleTable_",
value=mt}
for line in s:split("\n") do
io.stderr:write(indent,line,"\n")
end
end
dbg.fini("BaseShell:expandMT")
end
function M.echo(self, ...)
if (LMOD_REDIRECT == "no") then
pcall(pager,io.stderr,...)
else
local arg = pack(...)
for i = 1, arg.n do
local whole=arg[i]
if (whole:sub(-1) == "\n") then
whole = whole:sub(1,-2)
end
for line in whole:split("\n") do
line = line:gsub("'","'\"'\"'"):gsub(" ","' '")
io.stdout:write("echo '",line,"';\n")
end
end
end
end
function M._echo(self, ...)
local arg = pack(...)
for i = 1, arg.n do
io.stderr:write(arg[i])
end
end
--------------------------------------------------------------------------
-- valid_shell: returns the valid shell name if it is in the shellTbl or
-- bare otherwise.
local function valid_shell(shellTbl, shell_name)
if (not shellTbl[shell_name]) then
return shellTbl.bare
end
return shellTbl[shell_name]
end
s_shellTbl = false
local function createShellTbl()
if (not s_shellTbl) then
local shellTbl = {}
local Csh = require('Csh')
local Bash = require('Bash')
local Bare = require('Bare')
local Fish = require('Fish')
local Perl = require('Perl')
local Python = require('Python')
local R = require('R')
shellTbl["sh"] = Bash
shellTbl["bash"] = Bash
shellTbl["zsh"] = Bash
shellTbl["fish"] = Fish
shellTbl["csh"] = Csh
shellTbl["tcsh"] = Csh
shellTbl["perl"] = Perl
shellTbl["python"] = Python
shellTbl["r"] = R
shellTbl.bare = Bare
s_shellTbl = shellTbl
end
end
function M.isValid(shell_name)
createShellTbl()
return s_shellTbl[shell_name]
end
--------------------------------------------------------------------------
-- BaseShell:build(): This is the factory that builds the derived shell.
function M.build(shell_name)
createShellTbl()
local o = valid_shell(s_shellTbl, shell_name):create()
o._active = true
return o
end
return M
|