-
Notifications
You must be signed in to change notification settings - Fork 0
/
object.go
172 lines (141 loc) · 3.74 KB
/
object.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
package dokdb
import (
"fmt"
"strings"
"github.com/google/uuid"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
)
// OBJECT IS RECORD IN DB
type object struct {
// coords latitude, longitude
// поля с большой буквы иначе не экспортируются и не записываются в файл
// Lat float64 `json:"lt"`
// Long float64 `json:"lg"`
coords `json:"coords"`
// UUID unique long id
Id string `json:"id"`
// contetntype is MIME Content-type text/html image/jpg
ContentType string `json:"ct"`
Description string `json:"ds"`
// json string
Js string `json:"js"`
// Js []byte `json:"js"` // не пойдет тк при записи в файл теряется текстовый вид
}
// NewObject return new object with RANDOM uuid ID
func NewObject() *object {
return &object{
coords: coords{Lat: 0, Long: 0},
Id: uuid.New().String(),
ContentType: "",
Description: "",
Js: "",
}
}
func (o *object) Contain(field, substr string) bool {
v := o.GetField(field)
return strings.Contains(v, substr)
}
// get coords
func (o *object) GetCoords() coords {
return o.coords
}
// set coords
func (o *object) SetCoords(point coords) *object {
o.coords = point
return o
}
// return string Id
func (o *object) GetId() string {
return o.Id
}
// set string Id
func (o *object) SetId(i string) *object {
o.Id = i
return o
}
// get ContentType
func (o *object) GetContentType() string {
return o.ContentType
}
// set ContentType string
func (o *object) SetContentType(ct string) *object {
o.ContentType = ct
return o
}
// check if object field==value return true
func (o *object) Equals(jspath, value string) bool {
fieldValue := o.GetField(jspath)
return value == fieldValue
}
// set value for object.Js
func (o *object) SetField(jspath string, newvalue string) error {
// вместо string лучше потом поставить interface{} ^^
// чтобы сохранять любые поля
println("func object.setfield")
js := o.Js
// tmp, err := sjson.SetBytes()
newjs, err := sjson.Set(js, jspath, newvalue)
if err != nil {
return err
}
o.Js = newjs
return nil
}
// return string from object.js field
func (o *object) GetField(jspath string) string {
// println(" func object.getfield=", jspath)
// можно возвращать просто gjs вместо строки ^^^^
gjs := gjson.Get(o.Js, jspath)
if gjs.Exists() {
return gjs.String()
}
return ""
}
// Object in rect? true or false
func (o *object) InRect(p1, p2 coords) bool {
return o.coords.InRect(p1, p2)
}
// Object in radius R true or false
func (o *object) InRadius(p1 coords, r int64) bool {
return o.coords.InRadius(p1, r)
}
// Distance to another object
func (o *object) Distance(o1 object) float64 {
return o.coords.Distance(o1.coords)
}
// fill object fields
func NewObjectFill(lat, long float64, ct, ds string, js string) *object {
u001 := uuid.New().String()
ov := NewObject()
ov.Id = u001
ov.Lat = lat
ov.Long = long
ov.ContentType = ct
ov.Description = ds
// str000 := strings.ReplaceAll(js, " ", " ")
// str001 := strings.ReplaceAll(str000, "\t", " ")
ov.Js = js
return ov
}
// Print object id, contenttype, lat, long, json
func (o *object) Print() *object {
println("id= ", o.Id)
println("ContentType=", o.ContentType)
fmt.Printf("latitude= %8.2f \n", o.Lat)
fmt.Printf("longitude=%8.2f \n", o.Long)
println("json=", string(o.Js))
return o
}
// PRINT OBJECT
func printObject(o object) *object {
println("")
println("func printobject")
println("uuid= ", o.Id)
println("ContentType=", o.ContentType)
fmt.Printf("latitude= %8.2f \n", o.Lat)
fmt.Printf("longitude=%8.2f \n", o.Long)
println("json=", string(o.Js))
println()
return &o
}