35 lines
865 B
Go
35 lines
865 B
Go
![]() |
package dap
|
||
|
|
||
|
const startHandle = 1000
|
||
|
|
||
|
// handlesMap maps arbitrary values to unique sequential ids.
|
||
|
// This provides convenient abstraction of references, offering
|
||
|
// opacity and allowing simplification of complex identifiers.
|
||
|
// Based on
|
||
|
// https://github.com/microsoft/vscode-debugadapter-node/blob/master/adapter/src/handles.ts
|
||
|
type handlesMap struct {
|
||
|
nextHandle int
|
||
|
handleToVal map[int]interface{}
|
||
|
}
|
||
|
|
||
|
func newHandlesMap() *handlesMap {
|
||
|
return &handlesMap{startHandle, make(map[int]interface{})}
|
||
|
}
|
||
|
|
||
|
func (hs *handlesMap) reset() {
|
||
|
hs.nextHandle = startHandle
|
||
|
hs.handleToVal = make(map[int]interface{})
|
||
|
}
|
||
|
|
||
|
func (hs *handlesMap) create(value interface{}) int {
|
||
|
next := hs.nextHandle
|
||
|
hs.nextHandle++
|
||
|
hs.handleToVal[next] = value
|
||
|
return next
|
||
|
}
|
||
|
|
||
|
func (hs *handlesMap) get(handle int) (interface{}, bool) {
|
||
|
v, ok := hs.handleToVal[handle]
|
||
|
return v, ok
|
||
|
}
|