2010-12-13 12:01:24 +00:00
|
|
|
|
// Copyright 2010 The postscript-go Authors. All rights reserved.
|
|
|
|
|
// created: 13/12/2010 by Laurent Le Goff
|
|
|
|
|
|
2010-12-13 08:59:26 +00:00
|
|
|
|
package postscript
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"log"
|
|
|
|
|
)
|
2010-12-13 19:13:10 +00:00
|
|
|
|
//int dict dict -> Create dictionary with capacity for int elements
|
|
|
|
|
func dict(interpreter *Interpreter) {
|
|
|
|
|
interpreter.Push(NewDictionary(interpreter.PopInt()))
|
|
|
|
|
}
|
|
|
|
|
//dict length int -> Return number of entries in dict
|
|
|
|
|
func lengthdict(interpreter *Interpreter) {
|
2010-12-13 08:59:26 +00:00
|
|
|
|
dictionary := interpreter.Pop().(Dictionary)
|
2011-02-02 21:38:05 +00:00
|
|
|
|
interpreter.Push(float64(len(dictionary)))
|
2010-12-13 08:59:26 +00:00
|
|
|
|
}
|
2010-12-13 19:13:10 +00:00
|
|
|
|
//dict maxlength int -> Return current capacity of dict
|
|
|
|
|
func maxlength(interpreter *Interpreter) {
|
|
|
|
|
interpreter.Pop()
|
2011-02-02 21:38:05 +00:00
|
|
|
|
interpreter.Push(float64(999999999)) // push arbitrary value
|
2010-12-13 19:13:10 +00:00
|
|
|
|
}
|
|
|
|
|
//dict begin – -> Push dict on dictionary stack
|
|
|
|
|
func begin(interpreter *Interpreter) {
|
|
|
|
|
interpreter.PushDictionary(interpreter.Pop().(Dictionary))
|
|
|
|
|
}
|
|
|
|
|
//– end – -> Pop current dictionary off dictionary stack
|
|
|
|
|
func end(interpreter *Interpreter) {
|
|
|
|
|
interpreter.PopDictionary()
|
|
|
|
|
}
|
|
|
|
|
//key value def – -> Associate key and value in current dictionary
|
2010-12-13 08:59:26 +00:00
|
|
|
|
func def(interpreter *Interpreter) {
|
|
|
|
|
value := interpreter.Pop()
|
|
|
|
|
name := interpreter.PopName()
|
|
|
|
|
if p, ok := value.(*ProcedureDefinition); ok {
|
|
|
|
|
value = NewProcedure(p)
|
|
|
|
|
}
|
|
|
|
|
interpreter.Define(name, value)
|
|
|
|
|
}
|
2010-12-13 19:13:10 +00:00
|
|
|
|
//key load value -> Search dictionary stack for key and return associated value
|
2010-12-13 08:59:26 +00:00
|
|
|
|
func load(interpreter *Interpreter) {
|
|
|
|
|
name := interpreter.PopName()
|
|
|
|
|
value, _ := interpreter.FindValueInDictionaries(name)
|
|
|
|
|
if value == nil {
|
|
|
|
|
log.Printf("Can't find value %s\n", name)
|
|
|
|
|
}
|
|
|
|
|
interpreter.Push(value)
|
|
|
|
|
}
|
2010-12-13 19:13:10 +00:00
|
|
|
|
//key value store – -> Replace topmost definition of key
|
|
|
|
|
func store(interpreter *Interpreter) {
|
|
|
|
|
value := interpreter.Pop()
|
|
|
|
|
key := interpreter.PopName()
|
|
|
|
|
_, dictionary := interpreter.FindValueInDictionaries(key)
|
|
|
|
|
if dictionary != nil {
|
|
|
|
|
dictionary[key] = value
|
|
|
|
|
}
|
2010-12-13 08:59:26 +00:00
|
|
|
|
}
|
2010-12-13 19:13:10 +00:00
|
|
|
|
//dict key get any -> Return value associated with key in dict
|
|
|
|
|
func getdict(interpreter *Interpreter) {
|
|
|
|
|
key := interpreter.PopName()
|
|
|
|
|
dictionary := interpreter.Pop().(Dictionary)
|
|
|
|
|
interpreter.Push(dictionary[key])
|
2010-12-13 08:59:26 +00:00
|
|
|
|
}
|
2010-12-13 19:13:10 +00:00
|
|
|
|
//dict key value put – -> Associate key with value in dict
|
|
|
|
|
func putdict(interpreter *Interpreter) {
|
|
|
|
|
value := interpreter.Pop()
|
|
|
|
|
key := interpreter.PopName()
|
|
|
|
|
dictionary := interpreter.Pop().(Dictionary)
|
|
|
|
|
dictionary[key] = value
|
2010-12-13 08:59:26 +00:00
|
|
|
|
}
|
2010-12-13 19:13:10 +00:00
|
|
|
|
//dict key undef – Remove key and its value from dict
|
|
|
|
|
func undef(interpreter *Interpreter) {
|
|
|
|
|
key := interpreter.PopName()
|
|
|
|
|
dictionary := interpreter.Pop().(Dictionary)
|
|
|
|
|
dictionary[key] = nil
|
|
|
|
|
}
|
|
|
|
|
//dict key known bool -> Test whether key is in dict
|
|
|
|
|
func known(interpreter *Interpreter) {
|
|
|
|
|
key := interpreter.PopName()
|
|
|
|
|
dictionary := interpreter.Pop().(Dictionary)
|
|
|
|
|
interpreter.Push(dictionary[key] != nil)
|
|
|
|
|
}
|
|
|
|
|
//key where (dict true) or false -> Find dictionary in which key is defined
|
2010-12-13 08:59:26 +00:00
|
|
|
|
func where(interpreter *Interpreter) {
|
|
|
|
|
key := interpreter.PopName()
|
|
|
|
|
_, dictionary := interpreter.FindValueInDictionaries(key)
|
|
|
|
|
if dictionary == nil {
|
|
|
|
|
interpreter.Push(false)
|
|
|
|
|
} else {
|
|
|
|
|
interpreter.Push(dictionary)
|
|
|
|
|
interpreter.Push(true)
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-12-13 19:13:10 +00:00
|
|
|
|
// dict1 dict2 copy dict2 -> Copy contents of dict1 to dict2
|
|
|
|
|
func copydict(interpreter *Interpreter) {
|
|
|
|
|
dict2 := interpreter.Pop().(Dictionary)
|
|
|
|
|
dict1 := interpreter.Pop().(Dictionary)
|
|
|
|
|
for key, value := range dict1 {
|
|
|
|
|
dict2[key] = value
|
|
|
|
|
}
|
|
|
|
|
interpreter.Push(dict2)
|
|
|
|
|
}
|
|
|
|
|
//dict proc forall – -> Execute proc for each entry in dict
|
|
|
|
|
func foralldict(interpreter *Interpreter) {
|
|
|
|
|
proc := NewProcedure(interpreter.PopProcedureDefinition())
|
|
|
|
|
dict := interpreter.Pop().(Dictionary)
|
|
|
|
|
for key, value := range dict {
|
|
|
|
|
interpreter.Push(key)
|
|
|
|
|
interpreter.Push(value)
|
|
|
|
|
proc.Execute(interpreter)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//– currentdict dict -> Return current dictionary
|
|
|
|
|
func currentdict(interpreter *Interpreter) {
|
|
|
|
|
interpreter.Push(interpreter.PeekDictionary())
|
|
|
|
|
}
|
|
|
|
|
//– systemdict dict -> Return system dictionary
|
|
|
|
|
func systemdict(interpreter *Interpreter) {
|
|
|
|
|
interpreter.Push(interpreter.SystemDictionary())
|
|
|
|
|
}
|
|
|
|
|
//– userdict dict -> Return writeable dictionary in local VM
|
|
|
|
|
func userdict(interpreter *Interpreter) {
|
|
|
|
|
interpreter.Push(interpreter.UserDictionary())
|
|
|
|
|
}
|
|
|
|
|
//– globaldict dict -> Return writeable dictionary in global VM
|
|
|
|
|
func globaldict(interpreter *Interpreter) {
|
|
|
|
|
interpreter.Push(interpreter.UserDictionary())
|
|
|
|
|
}
|
|
|
|
|
//– statusdict dict -> Return product-dependent dictionary
|
|
|
|
|
func statusdict(interpreter *Interpreter) {
|
|
|
|
|
interpreter.Push(interpreter.UserDictionary())
|
|
|
|
|
}
|
|
|
|
|
//– countdictstack int -> Count elements on dictionary stack
|
|
|
|
|
func countdictstack(interpreter *Interpreter) {
|
2011-02-02 21:38:05 +00:00
|
|
|
|
interpreter.Push(float64(interpreter.DictionaryStackSize()))
|
2010-12-13 19:13:10 +00:00
|
|
|
|
}
|
|
|
|
|
//array dictstack subarray -> Copy dictionary stack into array
|
|
|
|
|
func dictstack(interpreter *Interpreter) {
|
|
|
|
|
panic("No yet implemenented")
|
|
|
|
|
}
|
|
|
|
|
//– cleardictstack – -> Pop all nonpermanent dictionaries off dictionary stack
|
|
|
|
|
func cleardictstack(interpreter *Interpreter) {
|
|
|
|
|
interpreter.ClearDictionaries()
|
|
|
|
|
}
|
2010-12-13 08:59:26 +00:00
|
|
|
|
|
|
|
|
|
func initDictionaryOperators(interpreter *Interpreter) {
|
2010-12-13 19:13:10 +00:00
|
|
|
|
interpreter.SystemDefine("dict", NewOperator(dict))
|
|
|
|
|
//interpreter.SystemDefine("length", NewOperator(length)) // already define in operators_conflict.go
|
|
|
|
|
interpreter.SystemDefine("maxlength", NewOperator(maxlength))
|
2010-12-13 08:59:26 +00:00
|
|
|
|
interpreter.SystemDefine("begin", NewOperator(begin))
|
|
|
|
|
interpreter.SystemDefine("end", NewOperator(end))
|
2010-12-13 19:13:10 +00:00
|
|
|
|
interpreter.SystemDefine("def", NewOperator(def))
|
|
|
|
|
interpreter.SystemDefine("load", NewOperator(load))
|
|
|
|
|
interpreter.SystemDefine("store", NewOperator(store))
|
|
|
|
|
//interpreter.SystemDefine("get", NewOperator(get)) // already define in operators_conflict.go
|
|
|
|
|
//interpreter.SystemDefine("put", NewOperator(put)) // already define in operators_conflict.go
|
|
|
|
|
interpreter.SystemDefine("undef", NewOperator(undef))
|
|
|
|
|
interpreter.SystemDefine("known", NewOperator(known))
|
2010-12-13 08:59:26 +00:00
|
|
|
|
interpreter.SystemDefine("where", NewOperator(where))
|
2010-12-13 19:13:10 +00:00
|
|
|
|
//interpreter.SystemDefine("copydict", NewOperator(copydict)) // already define in operators_conflict.go
|
|
|
|
|
//interpreter.SystemDefine("foralldict", NewOperator(foralldict)) // already define in operators_conflict.go
|
|
|
|
|
interpreter.SystemDefine("currentdict", NewOperator(currentdict))
|
|
|
|
|
interpreter.SystemDefine("systemdict", NewOperator(systemdict))
|
|
|
|
|
interpreter.SystemDefine("userdict", NewOperator(userdict))
|
|
|
|
|
interpreter.SystemDefine("globaldict", NewOperator(globaldict))
|
|
|
|
|
interpreter.SystemDefine("statusdict", NewOperator(statusdict))
|
|
|
|
|
interpreter.SystemDefine("countdictstack", NewOperator(countdictstack))
|
|
|
|
|
interpreter.SystemDefine("dictstack", NewOperator(dictstack))
|
|
|
|
|
interpreter.SystemDefine("cleardictstack", NewOperator(cleardictstack))
|
2010-12-13 12:01:24 +00:00
|
|
|
|
}
|