all repos — min @ 06408cd2b958fccdc8937ecf03f483a820388429

A small but practical concatenative programming language.

lib/lang.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
 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
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
import critbits, strutils, os
import 
  ../core/types,
  ../core/parser, 
  ../core/interpreter, 
  ../core/utils,
  ../core/regex,
  ../vendor/routine

ROOT

  .symbol("exit") do (i: In):
    quit(0)

  .symbol("symbols") do (i: In):
    var q = newSeq[MinValue](0)
    var scope = i.scope
    while scope.isNotNil:
      for s in scope.symbols.keys:
        q.add s.newVal
      scope = scope.parent
    i.push q.newVal

  .symbol("sigils") do (i: In):
    var q = newSeq[MinValue](0)
    var scope = i.scope
    while scope.isNotNil:
      for s in scope.sigils.keys:
        q.add s.newVal
      scope = scope.parent
    i.push q.newVal

  .symbol("debug?") do (i: In):
    i.push i.debugging.newVal

  .symbol("debug") do (i: In):
    i.debugging = not i.debugging 
    echo "Debugging: $1" % [$i.debugging]

  # Language constructs

  .symbol("define") do (i: In):
    var q2 = i.pop # new (can be a quoted symbol or a string)
    var q1 = i.pop # existing (auto-quoted)
    var symbol: string
    if not q1.isQuotation:
      q1 = @[q1].newVal
    if q2.isString:
      symbol = q2.strVal
    elif q2.isQuotation and q2.qVal.len == 1 and q2.qVal[0].kind == minSymbol:
      symbol = q2.qVal[0].symVal
    else:
      raiseInvalid("The top quotation must contain only one symbol value")
    i.debug "[define] " & symbol & " = " & $q1
    i.scope.symbols[symbol] = proc(i: In) =
      i.push q1.qVal

  .symbol("bind") do (i: In):
    var q2 = i.pop # new (can be a quoted symbol or a string)
    var q1 = i.pop # existing (auto-quoted)
    var symbol: string
    if not q1.isQuotation:
      q1 = @[q1].newVal
    if q2.isStringLike:
      symbol = q2.getString
    elif q2.isQuotation and q2.qVal.len == 1 and q2.qVal[0].kind == minSymbol:
      symbol = q2.qVal[0].symVal
    else:
      raiseInvalid("The top quotation must contain only one symbol value")
    i.debug "[bind] " & symbol & " = " & $q1
    let res = i.scope.setSymbol(symbol) do (i: In):
      i.push q1.qVal
    if not res:
      raiseUndefined("Attempting to bind undefined symbol: " & symbol)

  .symbol("delete") do (i: In):
    var sym: MinValue 
    i.reqStringOrSymbol sym
    let res = i.scope.delSymbol(sym.getString) 
    if not res:
      raiseUndefined("Attempting to delete undefined symbol: " & sym.getString)

  .symbol("scope") do (i: In):
    var code: MinValue
    i.reqQuotation code
    code.filename = i.filename
    i.unquote("<scope>", code)
    i.push @[code].newVal

  .symbol("import") do (i: In):
    var mdl: MinValue
    var name: string
    name = i.pop.strVal
    i.scope.getSymbol(name)(i)
    mdl = i.pop
    if not mdl.isQuotation:
      raiseInvalid("No quotation was found on the stack")
    if mdl.scope.isNotNil:
      #echo "MODULE SCOPE PARENT: ", mdl.scope.name
      for sym, val in mdl.scope.symbols.pairs:
        i.debug "[import] $1:$2" % [i.scope.name, sym]
        i.scope.symbols[sym] = val
  
  .sigil("'") do (i: In):
    i.push(@[MinValue(kind: minSymbol, symVal: i.pop.strVal)].newVal)

  .symbol("sigil") do (i: In):
    var q1, q2: MinValue
    i.reqTwoQuotations q1, q2
    if q1.qVal.len == 1 and q1.qVal[0].kind == minSymbol:
      var symbol = q1.qVal[0].symVal
      if symbol.len == 1:
        if i.scope.getSigil(symbol).isNotNil:
          raiseInvalid("Sigil '$1' already exists" % [symbol])
        i.scope.sigils[symbol] = proc(i: In) =
          i.evaluating = true
          i.push q2.qVal
          i.evaluating = false
      else:
        raiseInvalid("A sigil can only have one character")
    else:
      raiseInvalid("The top quotation must contain only one symbol value")

  .symbol("eval") do (i: In):
    var s: MinValue
    i.reqString s
    i.eval s.strVal

  .symbol("load") do (i: In):
    var s: MinValue
    i.reqString s
    var file = s.strVal
    if not file.endsWith(".min"):
      file = file & ".min"
    i.load i.pwd.joinPath(file)

  .symbol("call") do (i: In):
    var symbols, target: MinValue
    i.reqTwoQuotations symbols, target
    let vals = symbols.qVal
    var q: MinValue
    if vals.len == 0:
      raiseInvalid("No symbol to call")
    let origScope = i.scope
    i.scope = target.scope
    for c in 0..vals.len-1:
      if not vals[c].isStringLike:
        raiseInvalid("Quotation must contain only symbols or strings")
      let symbol = vals[c].getString
      let qProc = i.scope.getSymbol(symbol)
      if qProc.isNil:
        raiseUndefined("Symbol '$1' not found in scope '$2'" % [symbol, i.scope.fullname])
      qProc(i)
      if vals.len > 1 and c < vals.len-1:
        q = i.pop
        if not q.isQuotation:
          raiseInvalid("Unable to evaluate symbol '$1'" % [symbol])
        i.scope = q.scope 
    i.scope = origScope

  .symbol("inspect") do (i: In):
    var scope: MinValue
    i.reqQuotation scope
    var symbols = newSeq[MinValue](0)
    for s in scope.scope.symbols.keys:
      symbols.add s.newVal
    i.push symbols.newVal

  .symbol("raise") do (i: In):
    var err: MinValue
    i.reqQuotation err
    raiseRuntime("($1) $2" % [err.qVal[0].getString, err.qVal[1].getString], err.qVal)

  .symbol("try") do (i: In):
    var prog: MinValue
    i.reqQuotation prog
    if prog.qVal.len < 2:
      raiseInvalid("Quotation must contain at least two elements")
    var code = prog.qVal[0]
    var catch = prog.qVal[1]
    var final: MinValue
    var hasFinally = false
    if prog.qVal.len > 2:
      final = prog.qVal[2]
      hasFinally = true
    if (not code.isQuotation or not catch.isQuotation) or (hasFinally and not final.isQuotation):
      raiseInvalid("Quotation must contain at least two quotations")
    i.unsafe = true
    try:
      i.unquote("<try-code>", code)
    except MinRuntimeError:
      i.unsafe = false
      let e = (MinRuntimeError)getCurrentException()
      i.push e.qVal.newVal
      i.unquote("<try-catch>", catch)
    except:
      i.unsafe = false
      let e = getCurrentException()
      i.push @[regex.replace($e.name, ":.+$", "").newVal, e.msg.newVal].newVal
      i.unquote("<try-catch>", catch)
    finally:
      if hasFinally:
        i.unquote("<try-finally>", final)

  .symbol("counquote") do (i: In):
    var q: MinValue
    i.reqQuotation q
    let stack = i.copystack
    proc coroutine(i: MinInterpreter, c: int, results: ptr MinStack) {.routine.} =
      i.unquote("<counquote>", q.qVal[c])
      results[][c] = i.stack[0]
    var results = newSeq[MinValue](q.qVal.len)
    for c in 0..q.qVal.high:
      if not q.qVal[c].isQuotation:
        raiseInvalid("Item #$1 is not a quotation" % [$(c+1)])
      var i2 = i.copy(i.filename)
      var res: MinStack = newSeq[MinValue](0)
      pRun coroutine, (i2, c, results.addr)
    waitAllRoutine()
    i.push results.newVal


  # Operations on the whole stack

  .symbol("clear") do (i: In):
    while i.stack.len > 0:
      discard i.pop

  .symbol("dump") do (i: In):
    echo i.dump

  .symbol("getstack") do (i: In):
    i.push i.stack.newVal

  .symbol("setstack") do (i: In):
    var q: MinValue
    i.reqQuotation q
    i.stack = q.qVal

  # Operations on quotations or strings

  .symbol("concat") do (i: In):
    var q1, q2: MinValue 
    i.reqTwoQuotationsOrStrings q1, q2
    if q1.isString and q2.isString:
      let s = q2.strVal & q1.strVal
      i.push newVal(s)
    else:
      let q = q2.qVal & q1.qVal
      i.push newVal(q)

  .symbol("first") do (i: In):
    var q: MinValue
    i.reqStringOrQuotation q
    if q.isQuotation:
      i.push q.qVal[0]
    elif q.isString:
      i.push newVal($q.strVal[0])

  .symbol("rest") do (i: In):
    var q: MinValue
    i.reqStringOrQuotation q
    if q.isQuotation:
      i.push newVal(q.qVal[1..q.qVal.len-1])
    elif q.isString:
      i.push newVal(q.strVal[1..q.strVal.len-1])

  .symbol("quote") do (i: In):
    let a = i.pop
    i.push MinValue(kind: minQuotation, qVal: @[a])
  
  .symbol("unquote") do (i: In):
    var q: MinValue
    i.reqQuotation q
    i.unquote("<unquote>", q)
  
  .symbol("append") do (i: In):
    var q: MinValue
    i.reqQuotation q
    let v = i.pop
    q.qVal.add v
    i.push q
  
  .symbol("cons") do (i: In):
    var q: MinValue
    i.reqQuotation q
    let v = i.pop
    q.qVal = @[v] & q.qVal
    i.push q

  .symbol("at") do (i: In):
    var index, q: MinValue
    i.reqIntAndQuotation index, q
    i.push q.qVal[index.intVal]

  .symbol("size") do (i: In):
    var q: MinValue
    i.reqStringOrQuotation q
    if q.isQuotation:
      i.push q.qVal.len.newVal
    elif q.isString:
      i.push q.strVal.len.newVal

  .symbol("contains") do (i: In):
    let v = i.pop
    var q: MinValue
    i.reqQuotation q
    i.push q.qVal.contains(v).newVal 
  
  .symbol("map") do (i: In):
    var prog, list: MinValue
    i.reqTwoQuotations prog, list
    i.push newVal(newSeq[MinValue](0))
    for litem in list.qVal:
      i.push litem
      i.unquote("<map-quotation>", prog)
      i.apply("swap") 
      i.apply("append") 
  
  .symbol("times") do (i: In):
    var t, prog: MinValue
    i.reqIntAndQuotation t, prog
    for c in 1..t.intVal:
      i.unquote("<times-quotation>", prog)
  
  .symbol("ifte") do (i: In):
    var fpath, tpath, check: MinValue
    i.reqThreeQuotations fpath, tpath, check
    var stack = i.copystack
    i.unquote("<ifte-check>", check)
    let res = i.pop
    i.stack = stack
    if res.isBool and res.boolVal == true:
      i.unquote("<ifte-true>", tpath)
    else:
      i.unquote("<ifte-false>", fpath)
  
  .symbol("while") do (i: In):
    var d, b: MinValue
    i.reqTwoQuotations d, b
    i.push b.qVal
    i.unquote("<while-check>", b)
    var check = i.pop
    while check.isBool and check.boolVal == true:
      i.unquote("<while-quotation>", d)
      i.unquote("<while-check>", b)
      check = i.pop
  
  .symbol("filter") do (i: In):
    var filter, list: MinValue
    i.reqTwoQuotations filter, list
    var res = newSeq[MinValue](0)
    for e in list.qVal:
      i.push e
      i.unquote("<filter-check>", filter)
      var check = i.pop
      if check.isBool and check.boolVal == true:
        res.add e
    i.push res.newVal
  
  .symbol("linrec") do (i: In):
    var r2, r1, t, p: MinValue
    i.reqFourQuotations r2, r1, t, p
    proc linrec(i: In, p, t, r1, r2: var MinValue) =
      i.unquote("<linrec-predicate>", p)
      var check = i.pop
      if check.isBool and check.boolVal == true:
        i.unquote("<linrec-true>", t)
      else:
        i.unquote("<linrec-r1>", r1)
        i.linrec(p, t, r1, r2)
        i.unquote("<linrec-r2>", r2)
    i.linrec(p, t, r1, r2)
  
  .finalize()