-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfg.go
57 lines (52 loc) · 1.72 KB
/
cfg.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
package main
import (
"encoding/json"
"github.com/TopoSimplify/plugin/opts"
"log"
)
//ArgObj struct
type ArgObj struct {
Input string `json:"input"`
Output string `json:"output"`
Constraints string `json:"constraints"`
SimplificationType string `json:"simplification_type"`
Threshold float64 `json:"threshold"`
MinDist float64 `json:"minimum_distance"`
NonPlanarDisplacement float64 `json:"non_planar_displacement"`
IsFeatureClass bool `json:"is_feature_class"`
PlanarSelf bool `json:"planar_self"`
NonPlanarSelf bool `json:"non_planar_self"`
AvoidNewSelfIntersects bool `json:"avoid_new_self_intersects"`
GeomRelation bool `json:"geometric_relation"`
DistRelation bool `json:"distance_relation"`
SideRelation bool `json:"homotopy_relation"`
}
func (opt ArgObj) String() string {
var cfgbytes, err = json.Marshal(opt)
if err != nil {
panic(err)
}
return string(cfgbytes)
}
func optsFromCfg(obj ArgObj) opts.Opts {
return opts.Opts{
Threshold: obj.Threshold,
MinDist: obj.MinDist,
NonPlanarDisplacement: obj.NonPlanarDisplacement,
PlanarSelf: obj.PlanarSelf,
NonPlanarSelf: obj.NonPlanarSelf,
AvoidNewSelfIntersects: obj.AvoidNewSelfIntersects,
GeomRelation: obj.GeomRelation,
DistRelation: obj.DistRelation,
DirRelation: obj.SideRelation,
}
}
func parseInput(arg string) ArgObj {
var config = ArgObj{}
var jsonInput = decode64(arg)
if err := json.Unmarshal([]byte(jsonInput), &config); err != nil {
log.Println("invalid input:")
log.Fatalln(err)
}
return config
}