File: list.go

package info (click to toggle)
golang-github-tdewolff-argp 0.0~git20240625.87b04d5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 152 kB
  • sloc: makefile: 2
file content (211 lines) | stat: -rw-r--r-- 3,927 bytes parent folder | download
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
package argp

import (
	"fmt"
	"os"
	"reflect"
	"strings"
	"time"

	"github.com/jmoiron/sqlx"
	"github.com/pelletier/go-toml"
)

type ListSource interface {
	Has(string) bool
	List() []string
	Close() error
}

// List is an option that loads a list of values from a source (such as mysql).
type List struct {
	ListSource
	Values []string
}

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:table where type is e.g. mysql")
	}
	list.Values = vals

	var err error
	typ := vals[0][:colon]
	vals[0] = vals[0][colon+1:]
	switch typ {
	case "inline":
		list.ListSource, err = newInlineList(vals)
	case "sqlite":
		list.ListSource, err = newSQLiteList(vals)
	case "mysql":
		list.ListSource, err = newMySQLList(vals)
	default:
		return 0, fmt.Errorf("unknown table type: %s", typ)
	}
	if err != nil {
		return 0, err
	}
	return len(vals), 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 {
	for _, item := range t.list {
		if item == val {
			return true
		}
	}
	return false
}

func (t *inlineList) List() []string {
	return t.list
}

func (t *inlineList) Close() error {
	return nil
}

type sqlList struct {
	db      *sqlx.DB
	stmt    *sqlx.Stmt
	stmtHas *sqlx.Stmt
}

func (t *sqlList) Has(val string) bool {
	if t.stmtHas != nil {
		return t.stmtHas.QueryRow(val).Err() == nil
	}

	list := t.List()
	for _, item := range list {
		if item == val {
			return true
		}
	}
	return false
}

func (t *sqlList) List() []string {
	var list []string
	if err := t.stmt.Select(&list); err != nil {
		return nil
	}
	return list
}

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")
	}

	b, err := os.ReadFile(s[0])
	if err != nil {
		return nil, err
	}

	t := sqliteList{}
	if err := toml.Unmarshal(b, &t); err != nil {
		return nil, err
	}

	db, err := sqlx.Open("sqlite", t.Path)
	if err != nil {
		return nil, err
	}

	stmt, err := db.Preparex(t.Query)
	if err != nil {
		return nil, err
	}
	var stmtHas *sqlx.Stmt
	if t.QueryHas != "" {
		if stmtHas, err = db.Preparex(t.QueryHas); err != nil {
			return nil, err
		}
	}
	return &sqlList{db, stmt, stmtHas}, 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")
	}

	b, err := os.ReadFile(s[0])
	if err != nil {
		return nil, err
	}

	t := mysqlList{}
	if err := toml.Unmarshal(b, &t); 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)

	stmt, err := db.Preparex(t.Query)
	if err != nil {
		return nil, err
	}
	var stmtHas *sqlx.Stmt
	if t.QueryHas != "" {
		if stmtHas, err = db.Preparex(t.QueryHas); err != nil {
			return nil, err
		}
	}
	return &sqlList{db, stmt, stmtHas}, nil
}