forked from open-policy-agent/opa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbreakpoint.go
151 lines (123 loc) · 2.76 KB
/
breakpoint.go
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
// Copyright 2024 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package debug
import (
"bytes"
"fmt"
"sync"
"github.com/open-policy-agent/opa/ast/location"
)
type BreakpointID int
type Breakpoint interface {
ID() BreakpointID
Location() location.Location
}
type breakpoint struct {
id BreakpointID
location location.Location
}
func (b breakpoint) ID() BreakpointID {
return b.id
}
func (b breakpoint) Location() location.Location {
return b.location
}
func (b breakpoint) String() string {
return fmt.Sprintf("<%d> %s:%d", b.id, b.location.File, b.location.Row)
}
type breakpointList []Breakpoint
func (b breakpointList) String() string {
if b == nil {
return "[]"
}
buf := new(bytes.Buffer)
buf.WriteString("[")
for i, bp := range b {
if i > 0 {
buf.WriteString(", ")
}
_, _ = fmt.Fprint(buf, bp)
}
buf.WriteString("]")
return buf.String()
}
type breakpointCollection struct {
breakpoints map[string]breakpointList
idCounter BreakpointID
mtx sync.Mutex
}
func newBreakpointCollection() *breakpointCollection {
return &breakpointCollection{
breakpoints: map[string]breakpointList{},
}
}
func (bc *breakpointCollection) newID() BreakpointID {
bc.idCounter++
return bc.idCounter
}
func (bc *breakpointCollection) add(location location.Location) Breakpoint {
bc.mtx.Lock()
defer bc.mtx.Unlock()
bp := breakpoint{
id: bc.newID(),
location: location,
}
bps := bc.breakpoints[bp.location.File]
bps = append(bps, bp)
bc.breakpoints[bp.location.File] = bps
return bp
}
func (bc *breakpointCollection) all() breakpointList {
bc.mtx.Lock()
defer bc.mtx.Unlock()
var bps breakpointList
for _, list := range bc.breakpoints {
bps = append(bps, list...)
}
return bps
}
func (bc *breakpointCollection) allForFilePath(path string) breakpointList {
bc.mtx.Lock()
defer bc.mtx.Unlock()
return bc.breakpoints[path]
}
func (bc *breakpointCollection) remove(id BreakpointID) Breakpoint {
bc.mtx.Lock()
defer bc.mtx.Unlock()
var removed Breakpoint
for path, bps := range bc.breakpoints {
var newBps breakpointList
for _, bp := range bps {
if bp.ID() != id {
newBps = append(newBps, bp)
} else {
removed = bp
}
}
bc.breakpoints[path] = newBps
}
return removed
}
func (bc *breakpointCollection) clear() {
bc.mtx.Lock()
defer bc.mtx.Unlock()
bc.breakpoints = map[string]breakpointList{}
}
func (bc *breakpointCollection) String() string {
if bc == nil {
return "[]"
}
buf := new(bytes.Buffer)
buf.WriteString("[")
for _, bps := range bc.breakpoints {
for i, bp := range bps {
if i > 0 {
buf.WriteString(", ")
}
_, _ = fmt.Fprint(buf, bp)
}
}
buf.WriteString("]")
return buf.String()
}