minpkg/core/scope.nim
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 |
import
std/[strutils, critbits, logging, sequtils]
import
parser
proc copy*(s: ref MinScope): ref MinScope =
var scope = newScope(s.parent)
scope.symbols = s.symbols
scope.sigils = s.sigils
new(result)
result[] = scope
proc getDictionary(d: MinOperator): MinValue =
if d.kind == minProcOp:
return d.mdl
elif d.kind == minValOp and d.val.kind == minQuotation and d.val.qVal.len ==
1 and d.val.qVal[0].kind == minDictionary:
return d.val.qVal[0]
elif d.kind == minValOp and d.val.kind == minDictionary:
return d.val
proc getSymbolFromPath(scope: ref MinScope, keys: var seq[
string], acc = 0): MinOperator
proc getSymbol*(scope: ref MinScope, key: string, acc = 0): MinOperator =
debug "getSymbol: $#" % [key]
if scope.symbols.hasKey(key):
return scope.symbols[key]
elif key.contains ".":
var keys = key.split(".")
return getSymbolFromPath(scope, keys, acc)
else:
if scope.parent.isNil:
raiseUndefined("Unable to retrieve symbol '$1' (not found)." % key)
return scope.parent.getSymbol(key, acc + 1)
proc getSymbolFromPath(scope: ref MinScope, keys: var seq[
string], acc = 0): MinOperator =
let sym = keys[0]
keys.delete(0)
let d = scope.getSymbol(sym, acc)
let dict = d.getDictionary
if not dict.isNil:
if keys.len > 1:
return dict.scope.getSymbolFromPath(keys, acc + 1)
else:
return dict.scope.getSymbol(keys[0], acc + 1)
else:
raiseInvalid("Symbol '$1' is not a dictionary." % sym)
proc hasSymbolFromPath(scope: ref MinScope, keys: var seq[
string]): bool
proc hasSymbol*(scope: ref MinScope, key: string): bool =
debug "hasSymbol: $#" % [key]
if scope.isNil:
return false
else:
debug "hasSymbol - scope symbols: $#" % [$scope.symbols.keys.toSeq]
if scope.symbols.hasKey(key):
debug "hasSymbol - found $#" % [key]
return true
elif key.contains("."):
var keys = key.split(".")
if keys[0] == "":
raiseInvalid("Symbols cannot start with a dot")
return hasSymbolFromPath(scope, keys)
elif not scope.parent.isNil:
return scope.parent.hasSymbol(key)
else:
return false
proc hasSymbolFromPath(scope: ref MinScope, keys: var seq[
string]): bool =
let sym = keys[0]
keys.delete(0)
var d: MinOperator
try:
d = scope.getSymbol(sym)
except CatchableError:
return false
let dict = d.getDictionary
debug "hasSymbolFromPath: Found dictionary $# - keys: $#" % [sym, keys.join(".")]
if not dict.isNil:
if keys.len > 1:
return dict.scope.hasSymbolFromPath(keys)
else:
return dict.scope.hasSymbol(keys[0])
else:
raiseInvalid("Symbol '$1' is not a dictionary." % sym)
proc delSymbolFromPath(scope: ref MinScope, keys: var seq[
string]): bool
proc delSymbol*(scope: ref MinScope, key: string): bool {.discardable.} =
if scope.symbols.hasKey(key):
if scope.symbols[key].sealed:
raiseInvalid("Symbol '$1' is sealed." % key)
scope.symbols.excl(key)
return true
elif key.contains ".":
var keys = key.split(".")
return delSymbolFromPath(scope, keys)
return false
proc delSymbolFromPath(scope: ref MinScope, keys: var seq[
string]): bool =
let sym = keys[0]
keys.delete(0)
let d = scope.getSymbol(sym)
let dict = d.getDictionary
if not dict.isNil:
if keys.len > 1:
return dict.scope.delSymbolFromPath(keys)
else:
return dict.scope.delSymbol(keys[0])
else:
raiseInvalid("Symbol '$1' is not a dictionary." % sym)
proc setSymbolFromPath(scope: ref MinScope, keys: var seq[
string], value: MinOperator, override = false,
define = false): bool {.discardable.}
proc setSymbol*(scope: ref MinScope, key: string, value: MinOperator,
override = false, define = false): bool {.discardable.} =
result = false
# check if a symbol already exists in current scope
debug "setSymbol: $#" % [key]
debug "setSymbol: scope symbols: $#" % [$scope.symbols.keys.toSeq]
if not scope.isNil and scope.symbols.hasKey(key):
if not override and scope.symbols[key].sealed:
raiseInvalid("Symbol '$1' is sealed ." % key)
scope.symbols[key] = value
debug "setSymbol (existing): $# = $#" % [key, $value]
result = true
elif key.contains ".":
var keys = key.split(".")
return setSymbolFromPath(scope, keys, value, override, define)
# define new symbol
elif not scope.isNil and define:
debug "setSymbol (new): $# = $#" % [key, $value]
scope.symbols[key] = value
result = true
else:
# Go up the scope chain and attempt to find the symbol
if not scope.parent.isNil:
result = scope.parent.setSymbol(key, value, override, define)
else:
debug "setSymbol: failure to set: $# = $#" % [key, $value]
proc setSymbolFromPath(scope: ref MinScope, keys: var seq[
string], value: MinOperator, override = false,
define = false): bool {.discardable.} =
let sym = keys[0]
keys.delete(0)
let d = scope.getSymbol(sym)
let dict = d.getDictionary
debug "setSymbolFromPath: Found dictionary $# - keys: $#" % [sym, keys.join(".")]
if not dict.isNil:
if keys.len > 1:
return dict.scope.setSymbolFromPath(keys, value, override, define)
else:
return dict.scope.setSymbol(keys[0], value, override, define)
else:
raiseInvalid("Symbol '$1' is not a dictionary." % sym)
proc getSigil*(scope: ref MinScope, key: string): MinOperator =
if scope.sigils.hasKey(key):
return scope.sigils[key]
elif not scope.parent.isNil:
return scope.parent.getSigil(key)
else:
raiseUndefined("Sigil '$1' not found." % key)
proc hasSigil*(scope: ref MinScope, key: string): bool =
if scope.isNil:
return false
elif scope.sigils.hasKey(key):
return true
elif not scope.parent.isNil:
return scope.parent.hasSigil(key)
else:
return false
proc delSigil*(scope: ref MinScope, key: string): bool {.discardable.} =
if scope.sigils.hasKey(key):
if scope.sigils[key].sealed:
raiseInvalid("Sigil '$1' is sealed." % key)
scope.sigils.excl(key)
return true
return false
proc setSigil*(scope: ref MinScope, key: string, value: MinOperator,
override = false): bool {.discardable.} =
result = false
# check if a sigil already exists in current scope
if not scope.isNil and scope.sigils.hasKey(key):
if not override and scope.sigils[key].sealed:
raiseInvalid("Sigil '$1' is sealed." % key)
scope.sigils[key] = value
result = true
else:
# Go up the scope chain and attempt to find the sigil
if not scope.parent.isNil:
result = scope.parent.setSymbol(key, value)
proc previous*(scope: ref MinScope): ref MinScope =
if scope.parent.isNil:
return scope
else:
return scope.parent
|