-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathcache.go
More file actions
195 lines (174 loc) · 5.01 KB
/
cache.go
File metadata and controls
195 lines (174 loc) · 5.01 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package config
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"sort"
"strings"
"unicode"
)
// FAKE is used for fake CLI only options like filter=
const FAKE = "fake"
// APIArg are the args passable to an API
type APIArg struct {
Name string
Type string
Related []string
Description string
Required bool
Length int
}
// API describes a CloudStack API
type API struct {
Name string
Verb string
Noun string
Args []*APIArg
RequiredArgs []string
Related []string
Async bool
Description string
ResponseKeys []string
}
var apiCache map[string]*API
var apiVerbMap map[string][]*API
// GetAPIVerbMap returns API cache by verb
func (c *Config) GetAPIVerbMap() map[string][]*API {
if apiVerbMap != nil {
return apiVerbMap
}
apiSplitMap := make(map[string][]*API)
for api := range apiCache {
verb := apiCache[api].Verb
apiSplitMap[verb] = append(apiSplitMap[verb], apiCache[api])
}
return apiSplitMap
}
// GetCache returns API cache by full API name
func (c *Config) GetCache() map[string]*API {
if apiCache == nil {
// read from disk?
return make(map[string]*API)
}
return apiCache
}
// LoadCache loads cache using the default cache file
func LoadCache(c *Config) interface{} {
cacheFile := c.CacheFile()
Debug("Trying to read API cache from:", cacheFile)
cache, err := ioutil.ReadFile(cacheFile)
if err != nil {
fmt.Fprintf(os.Stderr, "Loaded in-built API cache. Failed to read API cache, please run 'sync'.\n")
cache = []byte(preCache)
}
var data map[string]interface{}
_ = json.Unmarshal(cache, &data)
return c.UpdateCache(data)
}
// SaveCache saves received auto-discovery data to cache file
func (c *Config) SaveCache(response map[string]interface{}) {
output, _ := json.Marshal(response)
ioutil.WriteFile(c.CacheFile(), output, 0600)
}
// UpdateCache uses auto-discovery data to update internal API cache
func (c *Config) UpdateCache(response map[string]interface{}) interface{} {
apiCache = make(map[string]*API)
apiVerbMap = nil
count := response["count"]
apiList := response["api"].([]interface{})
for _, node := range apiList {
api, valid := node.(map[string]interface{})
if !valid {
fmt.Println("Error, moving on...")
continue
}
apiName := api["name"].(string)
isAsync := api["isasync"].(bool)
description := api["description"].(string)
idx := 0
for _, chr := range apiName {
if unicode.IsLower(chr) {
idx++
} else {
break
}
}
verb := apiName[:idx]
noun := strings.ToLower(apiName[idx:])
var apiArgs []*APIArg
for _, argNode := range api["params"].([]interface{}) {
apiArg, _ := argNode.(map[string]interface{})
related := []string{}
if apiArg["related"] != nil {
related = strings.Split(apiArg["related"].(string), ",")
sort.Strings(related)
}
apiArgs = append(apiArgs, &APIArg{
Name: apiArg["name"].(string) + "=",
Type: apiArg["type"].(string),
Required: apiArg["required"].(bool),
Related: related,
Description: apiArg["description"].(string),
})
}
// Add filter arg
apiArgs = append(apiArgs, &APIArg{
Name: "filter=",
Type: FAKE,
Description: "cloudmonkey specific response key filtering",
})
// Add exclude arg
apiArgs = append(apiArgs, &APIArg{
Name: "exclude=",
Type: FAKE,
Description: "cloudmonkey specific response key to exlude when filtering",
})
sort.Slice(apiArgs, func(i, j int) bool {
return apiArgs[i].Name < apiArgs[j].Name
})
var responseKeys []string
for _, respNode := range api["response"].([]interface{}) {
if resp, ok := respNode.(map[string]interface{}); ok {
if resp == nil || resp["name"] == nil {
continue
}
responseKeys = append(responseKeys, fmt.Sprintf("%v,", resp["name"]))
}
}
sort.Strings(responseKeys)
var requiredArgs []string
for _, arg := range apiArgs {
if arg.Required {
requiredArgs = append(requiredArgs, arg.Name)
}
}
apiCache[strings.ToLower(apiName)] = &API{
Name: apiName,
Verb: verb,
Noun: noun,
Args: apiArgs,
RequiredArgs: requiredArgs,
Async: isAsync,
Description: description,
ResponseKeys: responseKeys,
}
}
return count
}