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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
package argp
import (
"bufio"
"database/sql"
"fmt"
"os"
"reflect"
"strings"
"time"
"github.com/jmoiron/sqlx"
)
type ListSource interface {
Has(string) (bool, error)
List() ([]string, error)
Close() error
}
type ListSourceFunc func([]string) (ListSource, error)
// List is an option that loads a list of values from a source (such as mysql).
type List struct {
ListSource
Sources map[string]ListSourceFunc
Values []string
}
func NewList(values []string) *List {
return &List{
Sources: map[string]ListSourceFunc{
"inline": NewInlineList,
"file": NewFileList,
},
Values: values,
}
}
func (list *List) Valid() bool {
return list.ListSource != nil
}
func (list *List) AddSource(typ string, f ListSourceFunc) {
list.Sources[typ] = f
}
func (list *List) Help() (string, string) {
return strings.Join(list.Values, " "), "type:list"
}
func (list *List) Scan(name string, s []string) (int, error) {
if len(s) == 0 {
return 0, fmt.Errorf("missing value")
}
vals, _, split := truncEnd(s)
if len(vals) == 0 || split {
return 0, fmt.Errorf("invalid value")
}
colon := strings.IndexByte(vals[0], ':')
if colon == -1 || (vals[0][0] < 'a' || 'z' < vals[0][0]) && (vals[0][0] < 'A' || 'Z' < vals[0][0]) {
return 0, fmt.Errorf("invalid value, expected type:list where type is e.g. inline")
}
list.Values = vals
var err error
typ := vals[0][:colon]
vals[0] = vals[0][colon+1:]
if ls, ok := list.Sources[typ]; !ok {
return 0, fmt.Errorf("unknown list type: %s", typ)
} else if list.ListSource, err = ls(vals); err != nil {
return 0, err
}
return len(vals), nil
}
func (list *List) Close() error {
if list.ListSource != nil {
return list.ListSource.Close()
}
return nil
}
type InlineList struct {
list []string
}
func NewInlineList(s []string) (ListSource, error) {
list := []string{}
if 0 < len(s) {
if _, err := scanValue(reflect.ValueOf(&list).Elem(), s); err != nil {
return nil, err
}
}
return &InlineList{list}, nil
}
func (t *InlineList) Has(val string) (bool, error) {
for _, item := range t.list {
if item == val {
return true, nil
}
}
return false, nil
}
func (t *InlineList) List() ([]string, error) {
return t.list, nil
}
func (t *InlineList) Close() error {
return nil
}
type FileList struct {
InlineList
}
func NewFileList(s []string) (ListSource, error) {
if len(s) == 0 {
return nil, fmt.Errorf("missing filename")
} else if 1 < len(s) {
return nil, fmt.Errorf("expected single filename")
}
r, err := os.Open(s[0])
if err != nil {
return nil, err
}
defer r.Close()
list := []string{}
scanner := bufio.NewScanner(r)
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
if 0 < len(line) {
list = append(list, line)
}
}
if err := scanner.Err(); err != nil {
return nil, err
}
return &FileList{InlineList{list}}, nil
}
type SQLList struct {
db *sqlx.DB
query string
queryHas string
cacheDur time.Duration
cache []string
lastQuery time.Time
}
func NewSQLList(db *sqlx.DB, query, queryHas string, cacheDur time.Duration) (*SQLList, error) {
return &SQLList{
db: db,
query: query,
queryHas: queryHas,
cacheDur: cacheDur,
}, nil
}
func (t *SQLList) Has(val string) (bool, error) {
if t.queryHas != "" {
if err := t.db.QueryRow(t.queryHas, val).Err(); err != nil && err != sql.ErrNoRows {
return false, err
} else {
return err != sql.ErrNoRows, nil
}
}
list, err := t.List()
if err != nil {
return false, err
}
for _, item := range list {
if item == val {
return true, nil
}
}
return false, nil
}
func (t *SQLList) List() ([]string, error) {
var list []string
if t.query == "" {
return nil, nil
} else if time.Since(t.lastQuery) < t.cacheDur || t.cacheDur < 0 && !t.lastQuery.IsZero() {
return t.cache, nil
} else if err := t.db.Select(&list, t.query); err != nil {
return nil, err
}
t.cache = list
t.lastQuery = time.Now()
return list, nil
}
func (t *SQLList) Close() error {
return t.db.Close()
}
//type sqliteList struct {
// Path string // can be :memory:
// Query string
// QueryHas string
//}
//
//func newSQLiteList(s []string) (ListSource, error) {
// if len(s) != 1 {
// return nil, fmt.Errorf("invalid path")
// }
//
// t := sqliteList{}
// if err := LoadConfigFile(&t, s[0]); err != nil {
// return nil, err
// }
//
// db, err := sqlx.Open("sqlite", t.Path)
// if err != nil {
// return nil, err
// }
// return &sqlList{db, t.Query, t.QueryHas}, nil
//}
//
//type mysqlList struct {
// Host string
// User string
// Password string
// Dbname string
// Query string
// QueryHas string
//}
//
//func newMySQLList(s []string) (ListSource, error) {
// if len(s) != 1 {
// return nil, fmt.Errorf("invalid path")
// }
//
// t := mysqlList{}
// if err := LoadConfigFile(&t, s[0]); err != nil {
// return nil, err
// }
//
// uri := fmt.Sprintf("%s:%s@%s/%s", t.User, t.Password, t.Host, t.Dbname)
// db, err := sqlx.Open("mysql", uri)
// if err != nil {
// return nil, err
// }
// db.SetConnMaxLifetime(time.Minute)
// db.SetConnMaxIdleTime(time.Minute)
// db.SetMaxOpenConns(10)
// db.SetMaxIdleConns(10)
// return &sqlList{db, t.Query, t.QueryHas}, nil
//}
|