Compare commits
128 Commits
Author | SHA1 | Date | |
---|---|---|---|
3293df4ede | |||
9c8a232d76 | |||
9ec19b3806 | |||
|
f40f518bf0 | ||
c90ee27de1 | |||
5f9029c496 | |||
b8b8803c26 | |||
d6cba44b60 | |||
26991e2ea2 | |||
|
276990f884 | ||
b9a979cb26 | |||
|
c24aaf287f | ||
0cd213cd7c | |||
|
5ea9e08dec | ||
9eab36d662 | |||
|
2250ce69ae | ||
85b2d3dab7 | |||
|
931f6d3e12 | ||
db0096d5d3 | |||
|
a2f685f509 | ||
6933dc1ea7 | |||
|
26a17d72bf | ||
adcfb33838 | |||
|
d5ad269870 | ||
|
a6bb1819dd | ||
|
b6147531f4 | ||
65352902e8 | |||
|
eb205ee2f3 | ||
f75d1f43a4 | |||
|
d7aea03712 | ||
580438f871 | |||
|
f2fb771930 | ||
3a1bae5fe3 | |||
|
33ff16610f | ||
ac90b0c70a | |||
|
60f04deb7b | ||
fb35521864 | |||
|
5eca37dcba | ||
|
594ef28e91 | ||
cf1271b092 | |||
|
a2316a62d6 | ||
c82e76f001 | |||
|
1dc4a15384 | ||
5a75b4118d | |||
|
1e9c9164ec | ||
|
6df4e4c886 | ||
|
e1142e3de1 | ||
|
27c096e416 | ||
|
4631131bec | ||
3d41706843 | |||
|
29e16f5682 | ||
a14aa30d77 | |||
|
5e82c5d717 | ||
|
0aacc0c112 | ||
1b416641d5 | |||
|
6d05fb7573 | ||
|
e378772e5b | ||
|
4d1cbaa13f | ||
230e5223f6 | |||
|
65ab2581c5 | ||
f1a9fa96a5 | |||
9a3a9283bd | |||
26d5fc5c0e | |||
6e63a1e76c | |||
7911bda9e8 | |||
4b7541ebaa | |||
bac916794d | |||
|
9f57c788bb | ||
3af7068238 | |||
|
c4eb9eaaef | ||
e6db31616a | |||
ec564c021e | |||
3ccffeb42b | |||
|
518816ca7f | ||
19bf7ef965 | |||
2134bf2b10 | |||
21b3d5ddc8 | |||
1dd7e71881 | |||
7e5339802a | |||
b89c92f109 | |||
7a2461f7ce | |||
d949a86f34 | |||
|
b57d7c3f4e | ||
0611fd60d2 | |||
3534470eb7 | |||
349bdb005e | |||
3064141583 | |||
|
29efa4ffa5 | ||
df0ee2daff | |||
|
281aaac71a | ||
188517a0c2 | |||
6304fc94d6 | |||
|
75d04ec22b | ||
|
1b2f46eb42 | ||
|
5cbbb17ce7 | ||
|
87208845f8 | ||
|
eb24cae8db | ||
|
77667c7d4a | ||
19381fabe4 | |||
e1653a2d2b | |||
|
385b481ebe | ||
bbb0469e01 | |||
|
ae48ce9206 | ||
595a728a30 | |||
|
4e2bad2f7f | ||
7e20e23341 | |||
|
d3437b3602 | ||
80b41661a6 | |||
|
28922e85c3 | ||
d6e555e069 | |||
e48530e15d | |||
73c66bb531 | |||
92dd3a9736 | |||
ad03446930 | |||
bb1df83d03 | |||
|
d0b917d298 | ||
39b58ecb1e | |||
|
8d9c45b7d3 | ||
bc9bcdac65 | |||
|
bb4bbe3bd3 | ||
8c5d09a677 | |||
|
0529af279f | ||
b1decd3028 | |||
|
1fb103597d | ||
2f6bf10367 | |||
|
06eec8f142 | ||
2089311c85 | |||
bfff6a7e87 |
29
.gitea/workflows/job_lint.yml
Normal file
29
.gitea/workflows/job_lint.yml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
name: lint
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, reopened, synchronize]
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- v3
|
||||||
|
- v4
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
filter: 'blob:none'
|
||||||
|
- name: setup go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
cache-dependency-path: "**/*.sum"
|
||||||
|
go-version: 'stable'
|
||||||
|
- name: setup deps
|
||||||
|
run: go get -v ./...
|
||||||
|
- name: run lint
|
||||||
|
uses: https://github.com/golangci/golangci-lint-action@v6
|
||||||
|
with:
|
||||||
|
version: 'latest'
|
34
.gitea/workflows/job_test.yml
Normal file
34
.gitea/workflows/job_test.yml
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
name: test
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, reopened, synchronize]
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- v3
|
||||||
|
- v4
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- v3
|
||||||
|
- v4
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
filter: 'blob:none'
|
||||||
|
- name: setup go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
cache-dependency-path: "**/*.sum"
|
||||||
|
go-version: 'stable'
|
||||||
|
- name: setup deps
|
||||||
|
run: go get -v ./...
|
||||||
|
- name: run test
|
||||||
|
env:
|
||||||
|
INTEGRATION_TESTS: yes
|
||||||
|
run: go test -mod readonly -v ./...
|
53
.gitea/workflows/job_tests.yml
Normal file
53
.gitea/workflows/job_tests.yml
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
name: test
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, reopened, synchronize]
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- v3
|
||||||
|
- v4
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- v3
|
||||||
|
- v4
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
filter: 'blob:none'
|
||||||
|
- name: checkout tests
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: master
|
||||||
|
filter: 'blob:none'
|
||||||
|
repository: unistack-org/micro-tests
|
||||||
|
path: micro-tests
|
||||||
|
- name: setup go
|
||||||
|
uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
cache-dependency-path: "**/*.sum"
|
||||||
|
go-version: 'stable'
|
||||||
|
- name: setup go work
|
||||||
|
env:
|
||||||
|
GOWORK: /workspace/${{ github.repository_owner }}/go.work
|
||||||
|
run: |
|
||||||
|
go work init
|
||||||
|
go work use .
|
||||||
|
go work use micro-tests
|
||||||
|
- name: setup deps
|
||||||
|
env:
|
||||||
|
GOWORK: /workspace/${{ github.repository_owner }}/go.work
|
||||||
|
run: go get -v ./...
|
||||||
|
- name: run tests
|
||||||
|
env:
|
||||||
|
INTEGRATION_TESTS: yes
|
||||||
|
GOWORK: /workspace/${{ github.repository_owner }}/go.work
|
||||||
|
run: |
|
||||||
|
cd micro-tests
|
||||||
|
go test -mod readonly -v ./... || true
|
19
.github/dependabot.yml
vendored
19
.github/dependabot.yml
vendored
@ -1,19 +0,0 @@
|
|||||||
# To get started with Dependabot version updates, you'll need to specify which
|
|
||||||
# package ecosystems to update and where the package manifests are located.
|
|
||||||
# Please see the documentation for all configuration options:
|
|
||||||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
||||||
|
|
||||||
version: 2
|
|
||||||
updates:
|
|
||||||
|
|
||||||
# Maintain dependencies for GitHub Actions
|
|
||||||
- package-ecosystem: "github-actions"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
|
|
||||||
# Maintain dependencies for Golang
|
|
||||||
- package-ecosystem: "gomod"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
46
.github/workflows/build.yml
vendored
46
.github/workflows/build.yml
vendored
@ -1,46 +0,0 @@
|
|||||||
name: build
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
name: test
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: setup
|
|
||||||
uses: actions/setup-go@v2
|
|
||||||
with:
|
|
||||||
go-version: 1.16
|
|
||||||
- name: checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: cache
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: ~/go/pkg/mod
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
restore-keys: ${{ runner.os }}-go-
|
|
||||||
- name: deps
|
|
||||||
run: go get -v -t -d ./...
|
|
||||||
- name: test
|
|
||||||
env:
|
|
||||||
INTEGRATION_TESTS: yes
|
|
||||||
run: go test -mod readonly -v ./...
|
|
||||||
lint:
|
|
||||||
name: lint
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: lint
|
|
||||||
uses: golangci/golangci-lint-action@v2
|
|
||||||
continue-on-error: true
|
|
||||||
with:
|
|
||||||
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
|
|
||||||
version: v1.30
|
|
||||||
# Optional: working directory, useful for monorepos
|
|
||||||
# working-directory: somedir
|
|
||||||
# Optional: golangci-lint command line arguments.
|
|
||||||
# args: --issues-exit-code=0
|
|
||||||
# Optional: show only new issues if it's a pull request. The default value is `false`.
|
|
||||||
# only-new-issues: true
|
|
75
.github/workflows/codeql-analysis.yml
vendored
75
.github/workflows/codeql-analysis.yml
vendored
@ -1,75 +0,0 @@
|
|||||||
# For most projects, this workflow file will not need changing; you simply need
|
|
||||||
# to commit it to your repository.
|
|
||||||
#
|
|
||||||
# You may wish to alter this file to override the set of languages analyzed,
|
|
||||||
# or to provide custom queries or build logic.
|
|
||||||
#
|
|
||||||
# ******** NOTE ********
|
|
||||||
# We have attempted to detect the languages in your repository. Please check
|
|
||||||
# the `language` matrix defined below to confirm you have the correct set of
|
|
||||||
# supported CodeQL languages.
|
|
||||||
#
|
|
||||||
name: "CodeQL"
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_run:
|
|
||||||
workflows: ["prbuild"]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
push:
|
|
||||||
branches: [ master ]
|
|
||||||
pull_request:
|
|
||||||
# The branches below must be a subset of the branches above
|
|
||||||
branches: [ master ]
|
|
||||||
schedule:
|
|
||||||
- cron: '34 1 * * 0'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
analyze:
|
|
||||||
name: Analyze
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
actions: read
|
|
||||||
contents: read
|
|
||||||
security-events: write
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
language: [ 'go' ]
|
|
||||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
|
|
||||||
# Learn more:
|
|
||||||
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@v1
|
|
||||||
with:
|
|
||||||
languages: ${{ matrix.language }}
|
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
||||||
# By default, queries listed here will override any specified in a config file.
|
|
||||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
||||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
|
||||||
|
|
||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
|
||||||
- name: Autobuild
|
|
||||||
uses: github/codeql-action/autobuild@v1
|
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
|
||||||
# 📚 https://git.io/JvXDl
|
|
||||||
|
|
||||||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
|
||||||
# and modify them (or add more) to build your code if your project
|
|
||||||
# uses a compiled language
|
|
||||||
|
|
||||||
#- run: |
|
|
||||||
# make bootstrap
|
|
||||||
# make release
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@v1
|
|
66
.github/workflows/dependabot-automerge.yml
vendored
66
.github/workflows/dependabot-automerge.yml
vendored
@ -1,66 +0,0 @@
|
|||||||
name: "prautomerge"
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_run:
|
|
||||||
workflows: ["prbuild"]
|
|
||||||
types:
|
|
||||||
- completed
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
pull-requests: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
Dependabot-Automerge:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
# Contains workaround to execute if dependabot updates the PR by checking for the base branch in the linked PR
|
|
||||||
# The the github.event.workflow_run.event value is 'push' and not 'pull_request'
|
|
||||||
# dont work with multiple workflows when last returns success
|
|
||||||
if: >-
|
|
||||||
github.event.workflow_run.conclusion == 'success'
|
|
||||||
&& github.actor == 'dependabot[bot]'
|
|
||||||
&& github.event.sender.login == 'dependabot[bot]'
|
|
||||||
&& github.event.sender.type == 'Bot'
|
|
||||||
&& (github.event.workflow_run.event == 'pull_request'
|
|
||||||
|| (github.event.workflow_run.event == 'push' && github.event.workflow_run.pull_requests[0].base.ref == github.event.repository.default_branch ))
|
|
||||||
steps:
|
|
||||||
- name: Approve Changes and Merge changes if label 'dependencies' is set
|
|
||||||
uses: actions/github-script@v4
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
script: |
|
|
||||||
console.log(context.payload.workflow_run);
|
|
||||||
|
|
||||||
var labelNames = await github.paginate(
|
|
||||||
github.issues.listLabelsOnIssue,
|
|
||||||
{
|
|
||||||
repo: context.repo.repo,
|
|
||||||
owner: context.repo.owner,
|
|
||||||
issue_number: context.payload.workflow_run.pull_requests[0].number,
|
|
||||||
},
|
|
||||||
(response) => response.data.map(
|
|
||||||
(label) => label.name
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
console.log(labelNames);
|
|
||||||
|
|
||||||
if (labelNames.includes('dependencies')) {
|
|
||||||
console.log('Found label');
|
|
||||||
|
|
||||||
await github.pulls.createReview({
|
|
||||||
repo: context.repo.repo,
|
|
||||||
owner: context.repo.owner,
|
|
||||||
pull_number: context.payload.workflow_run.pull_requests[0].number,
|
|
||||||
event: 'APPROVE'
|
|
||||||
});
|
|
||||||
console.log('Approved PR');
|
|
||||||
|
|
||||||
await github.pulls.merge({
|
|
||||||
repo: context.repo.repo,
|
|
||||||
owner: context.repo.owner,
|
|
||||||
pull_number: context.payload.workflow_run.pull_requests[0].number,
|
|
||||||
});
|
|
||||||
|
|
||||||
console.log('Merged PR');
|
|
||||||
}
|
|
46
.github/workflows/pr.yml
vendored
46
.github/workflows/pr.yml
vendored
@ -1,46 +0,0 @@
|
|||||||
name: prbuild
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
name: test
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: setup
|
|
||||||
uses: actions/setup-go@v2
|
|
||||||
with:
|
|
||||||
go-version: 1.16
|
|
||||||
- name: checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: cache
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: ~/go/pkg/mod
|
|
||||||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
||||||
restore-keys: ${{ runner.os }}-go-
|
|
||||||
- name: deps
|
|
||||||
run: go get -v -t -d ./...
|
|
||||||
- name: test
|
|
||||||
env:
|
|
||||||
INTEGRATION_TESTS: yes
|
|
||||||
run: go test -mod readonly -v ./...
|
|
||||||
lint:
|
|
||||||
name: lint
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: lint
|
|
||||||
uses: golangci/golangci-lint-action@v2
|
|
||||||
continue-on-error: true
|
|
||||||
with:
|
|
||||||
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
|
|
||||||
version: v1.30
|
|
||||||
# Optional: working directory, useful for monorepos
|
|
||||||
# working-directory: somedir
|
|
||||||
# Optional: golangci-lint command line arguments.
|
|
||||||
# args: --issues-exit-code=0
|
|
||||||
# Optional: show only new issues if it's a pull request. The default value is `false`.
|
|
||||||
# only-new-issues: true
|
|
5
.golangci.yml
Normal file
5
.golangci.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
run:
|
||||||
|
concurrency: 8
|
||||||
|
deadline: 5m
|
||||||
|
issues-exit-code: 1
|
||||||
|
tests: true
|
202
flag.go
202
flag.go
@ -1,11 +1,13 @@
|
|||||||
package flag // import "go.unistack.org/micro-config-flag/v3"
|
package flag
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"go.unistack.org/micro/v3/config"
|
"go.unistack.org/micro/v3/config"
|
||||||
@ -27,7 +29,10 @@ var (
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
type flagConfig struct {
|
type flagConfig struct {
|
||||||
|
fset *flag.FlagSet
|
||||||
opts config.Options
|
opts config.Options
|
||||||
|
name string
|
||||||
|
env string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *flagConfig) Options() config.Options {
|
func (c *flagConfig) Options() config.Options {
|
||||||
@ -39,9 +44,23 @@ func (c *flagConfig) Init(opts ...config.Option) error {
|
|||||||
o(&c.opts)
|
o(&c.opts)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := config.DefaultBeforeInit(c.opts.Context, c); err != nil && !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
c.configure()
|
||||||
|
|
||||||
fields, err := rutil.StructFields(c.opts.Struct)
|
fields, err := rutil.StructFields(c.opts.Struct)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
if !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := config.DefaultAfterInit(c.opts.Context, c); err != nil && !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, sf := range fields {
|
for _, sf := range fields {
|
||||||
@ -49,10 +68,26 @@ func (c *flagConfig) Init(opts ...config.Option) error {
|
|||||||
if !ok {
|
if !ok {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
fn, fv, fd := getFlagOpts(tf)
|
|
||||||
|
fn, fd, fv := getFlagOpts(tf)
|
||||||
|
if tf, ok = sf.Field.Tag.Lookup(c.env); ok {
|
||||||
|
fd += fmt.Sprintf(" (env %s)", tf)
|
||||||
|
}
|
||||||
|
|
||||||
rcheck := true
|
rcheck := true
|
||||||
switch sf.Value.Interface().(type) {
|
|
||||||
|
if !sf.Value.IsValid() {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
vi := sf.Value.Interface()
|
||||||
|
if vi == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if f := flag.Lookup(fn); f != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
switch vi.(type) {
|
||||||
case time.Duration:
|
case time.Duration:
|
||||||
err = c.flagDuration(sf.Value, fn, fv, fd)
|
err = c.flagDuration(sf.Value, fn, fv, fd)
|
||||||
rcheck = false
|
rcheck = false
|
||||||
@ -60,11 +95,15 @@ func (c *flagConfig) Init(opts ...config.Option) error {
|
|||||||
err = c.flagTime(sf.Value, fn, fv, fd)
|
err = c.flagTime(sf.Value, fn, fv, fd)
|
||||||
rcheck = false
|
rcheck = false
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.opts.Logger.Errorf(c.opts.Context, "flag init error: %v", err)
|
|
||||||
if !c.opts.AllowFail {
|
if !c.opts.AllowFail {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
if err := config.DefaultAfterInit(c.opts.Context, c); err != nil && !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -97,26 +136,60 @@ func (c *flagConfig) Init(opts ...config.Option) error {
|
|||||||
err = c.flagMap(sf.Value, fn, fv, fd)
|
err = c.flagMap(sf.Value, fn, fv, fd)
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.opts.Logger.Errorf(c.opts.Context, "flag init error: %v", err)
|
|
||||||
if !c.opts.AllowFail {
|
if !c.opts.AllowFail {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := config.DefaultAfterInit(c.opts.Context, c); err != nil && !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := config.DefaultAfterInit(c.opts.Context, c); err != nil && !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *flagConfig) Load(ctx context.Context, opts ...config.LoadOption) error {
|
func (c *flagConfig) Load(ctx context.Context, opts ...config.LoadOption) error {
|
||||||
|
if c.opts.SkipLoad != nil && c.opts.SkipLoad(ctx, c) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
options := config.NewLoadOptions(opts...)
|
options := config.NewLoadOptions(opts...)
|
||||||
_ = options
|
_ = options
|
||||||
|
|
||||||
|
if err := config.DefaultBeforeLoad(ctx, c); err != nil && !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := config.DefaultAfterLoad(ctx, c); err != nil && !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: allow merge, append and so
|
// TODO: allow merge, append and so
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *flagConfig) Save(ctx context.Context, opts ...config.SaveOption) error {
|
func (c *flagConfig) Save(ctx context.Context, opts ...config.SaveOption) error {
|
||||||
|
if c.opts.SkipSave != nil && c.opts.SkipSave(ctx, c) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := config.DefaultBeforeSave(ctx, c); err != nil && !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := config.DefaultAfterSave(ctx, c); err != nil && !c.opts.AllowFail {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -132,10 +205,125 @@ func (c *flagConfig) Watch(ctx context.Context, opts ...config.WatchOption) (con
|
|||||||
return nil, fmt.Errorf("not implemented")
|
return nil, fmt.Errorf("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *flagConfig) usage() {
|
||||||
|
mapDelim := DefaultMapDelim
|
||||||
|
sliceDelim := DefaultSliceDelim
|
||||||
|
|
||||||
|
if c.opts.Context != nil {
|
||||||
|
if d, ok := c.opts.Context.Value(mapDelimKey{}).(string); ok {
|
||||||
|
mapDelim = d
|
||||||
|
}
|
||||||
|
if d, ok := c.opts.Context.Value(sliceDelimKey{}).(string); ok {
|
||||||
|
sliceDelim = d
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.name == "" {
|
||||||
|
fmt.Fprintf(c.fset.Output(), "Usage:\n")
|
||||||
|
} else {
|
||||||
|
fmt.Fprintf(c.fset.Output(), "Usage of %s:\n", c.name)
|
||||||
|
}
|
||||||
|
|
||||||
|
c.fset.VisitAll(func(f *flag.Flag) {
|
||||||
|
var b strings.Builder
|
||||||
|
fmt.Fprintf(&b, " -%s", f.Name) // Two spaces before -; see next two comments.
|
||||||
|
_, usage := flag.UnquoteUsage(f)
|
||||||
|
name := "value"
|
||||||
|
v := reflect.TypeOf(f.Value).String()
|
||||||
|
b.WriteString(" ")
|
||||||
|
switch v {
|
||||||
|
case "*flag.boolFlag":
|
||||||
|
name = "bool"
|
||||||
|
case "*flag.durationValue":
|
||||||
|
name = "duration"
|
||||||
|
case "*flag.float64Value":
|
||||||
|
name = "float"
|
||||||
|
case "*flag.intValue", "*flag.int64Value":
|
||||||
|
name = "int"
|
||||||
|
case "*flag.stringValue":
|
||||||
|
name = "string"
|
||||||
|
case "*flag.uintValue", "*flag.uint64Value":
|
||||||
|
name = "uint"
|
||||||
|
case "*flag.mapValue":
|
||||||
|
// nv := f.Value.(*mapValue)
|
||||||
|
name = fmt.Sprintf("string key=val with %q as separator", mapDelim)
|
||||||
|
case "*flag.sliceValue":
|
||||||
|
// nv := f.Value.(*sliceValue)
|
||||||
|
name = fmt.Sprintf("string with %q as separator", sliceDelim)
|
||||||
|
}
|
||||||
|
b.WriteString(name)
|
||||||
|
|
||||||
|
// Boolean flags of one ASCII letter are so common we
|
||||||
|
// treat them specially, putting their usage on the same line.
|
||||||
|
if b.Len() <= 4 { // space, space, '-', 'x'.
|
||||||
|
b.WriteString("\t")
|
||||||
|
} else {
|
||||||
|
// Four spaces before the tab triggers good alignment
|
||||||
|
// for both 4- and 8-space tab stops.
|
||||||
|
b.WriteString("\n \t")
|
||||||
|
}
|
||||||
|
b.WriteString(strings.ReplaceAll(usage, "\n", "\n \t"))
|
||||||
|
|
||||||
|
if f.Value.String() == f.DefValue {
|
||||||
|
fmt.Fprintf(&b, " (default %q)", f.DefValue)
|
||||||
|
} else {
|
||||||
|
fmt.Fprintf(&b, " (default %q current %q)", f.DefValue, f.Value)
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Fprint(c.fset.Output(), b.String(), "\n")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *flagConfig) configure() {
|
||||||
|
flagSet := flag.CommandLine
|
||||||
|
flagSetName := os.Args[0]
|
||||||
|
flagSetErrorHandling := flag.ExitOnError
|
||||||
|
flagEnv := "env"
|
||||||
|
var flagUsage func()
|
||||||
|
var isSet bool
|
||||||
|
|
||||||
|
if c.opts.Context != nil {
|
||||||
|
if v, ok := c.opts.Context.Value(flagSetNameKey{}).(string); ok {
|
||||||
|
isSet = true
|
||||||
|
flagSetName = v
|
||||||
|
}
|
||||||
|
if v, ok := c.opts.Context.Value(flagSetErrorHandlingKey{}).(flag.ErrorHandling); ok {
|
||||||
|
isSet = true
|
||||||
|
flagSetErrorHandling = v
|
||||||
|
}
|
||||||
|
if v, ok := c.opts.Context.Value(flagSetKey{}).(*flag.FlagSet); ok {
|
||||||
|
flagSet = v
|
||||||
|
}
|
||||||
|
if v, ok := c.opts.Context.Value(flagSetUsageKey{}).(func()); ok {
|
||||||
|
flagUsage = v
|
||||||
|
}
|
||||||
|
if v, ok := c.opts.Context.Value(flagEnvKey{}).(string); ok {
|
||||||
|
flagEnv = v
|
||||||
|
}
|
||||||
|
}
|
||||||
|
c.fset = flagSet
|
||||||
|
|
||||||
|
if isSet {
|
||||||
|
c.fset.Init(flagSetName, flagSetErrorHandling)
|
||||||
|
}
|
||||||
|
if flagUsage != nil {
|
||||||
|
c.fset.Usage = flagUsage
|
||||||
|
} else {
|
||||||
|
c.fset.Usage = c.usage
|
||||||
|
}
|
||||||
|
c.env = flagEnv
|
||||||
|
|
||||||
|
c.name = flagSetName
|
||||||
|
}
|
||||||
|
|
||||||
func NewConfig(opts ...config.Option) config.Config {
|
func NewConfig(opts ...config.Option) config.Config {
|
||||||
options := config.NewOptions(opts...)
|
options := config.NewOptions(opts...)
|
||||||
if len(options.StructTag) == 0 {
|
if len(options.StructTag) == 0 {
|
||||||
options.StructTag = DefaultStructTag
|
options.StructTag = DefaultStructTag
|
||||||
}
|
}
|
||||||
return &flagConfig{opts: options}
|
|
||||||
|
c := &flagConfig{opts: options}
|
||||||
|
c.configure()
|
||||||
|
|
||||||
|
return c
|
||||||
}
|
}
|
||||||
|
46
flag_test.go
46
flag_test.go
@ -2,6 +2,7 @@ package flag
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"flag"
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
@ -10,39 +11,58 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestLoad(t *testing.T) {
|
func TestLoad(t *testing.T) {
|
||||||
|
time.Local = time.UTC
|
||||||
os.Args = append(os.Args, "-broker", "5566:33")
|
os.Args = append(os.Args, "-broker", "5566:33")
|
||||||
os.Args = append(os.Args, "-verbose")
|
os.Args = append(os.Args, "-verbose")
|
||||||
os.Args = append(os.Args, "-wait", "5s")
|
os.Args = append(os.Args, "-wait", "5s")
|
||||||
os.Args = append(os.Args, "-addr", "33,44")
|
os.Args = append(os.Args, "-addr", "33,44")
|
||||||
os.Args = append(os.Args, "-time", time.RFC822)
|
os.Args = append(os.Args, "-time", time.RFC822)
|
||||||
os.Args = append(os.Args, "-metadata", "key=20")
|
os.Args = append(os.Args, "-metadata", "key=20")
|
||||||
|
os.Args = append(os.Args, "-components", "all=info,api=debug")
|
||||||
|
os.Args = append(os.Args, "-addr", "33,44")
|
||||||
|
os.Args = append(os.Args, "-badflag", "test")
|
||||||
|
type NestedConfig struct {
|
||||||
|
Value string `flag:"name=nested_value"`
|
||||||
|
}
|
||||||
type Config struct {
|
type Config struct {
|
||||||
Broker string `flag:"name=broker,desc='description with, comma',default='127.0.0.1:9092'"`
|
Time time.Time `flag:"name=time,desc='some time',default='02 Jan 06 15:04 MST'"`
|
||||||
Verbose bool `flag:"name=verbose,desc='verbose output',default='false'"`
|
Components map[string]string `flag:"name=components,desc='components logging'"`
|
||||||
Addr []string `flag:"name=addr,desc='addrs',default='127.0.0.1:9092'"`
|
Metadata map[string]int `flag:"name=metadata,desc='some meta',default=''"`
|
||||||
Wait time.Duration `flag:"name=wait,desc='wait time',default='2s'"`
|
Nested *NestedConfig
|
||||||
Time time.Time `flag:"name=time,desc='some time',default='02 Jan 06 15:04 MST'"`
|
Broker string `flag:"name=broker,desc='description with, comma',default='127.0.0.1:9092'"`
|
||||||
Metadata map[string]int `flag:"name=metadata,desc='some meta',default=''"`
|
WithoutDesc string `flag:"name=without_desc,default='without_default'"`
|
||||||
|
WithoutAll string `flag:"name=without_all"`
|
||||||
|
WithoutDefault string `flag:"name=without_default,desc='with'"`
|
||||||
|
Addr []string `flag:"name=addr,desc='addrs',default='127.0.0.1:9092'"`
|
||||||
|
Wait time.Duration `flag:"name=wait,desc='wait time',default='2s'"`
|
||||||
|
Verbose bool `flag:"name=verbose,desc='verbose output',default='false'"`
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
cfg := &Config{}
|
cfg := &Config{Nested: &NestedConfig{}}
|
||||||
|
|
||||||
c := NewConfig(config.Struct(cfg), TimeFormat(time.RFC822))
|
c := NewConfig(config.Struct(cfg), TimeFormat(time.RFC822), FlagErrorHandling(flag.ContinueOnError))
|
||||||
if err := c.Init(); err != nil {
|
if err := c.Init(); err != nil {
|
||||||
t.Fatal(err)
|
t.Fatalf("init failed: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// double init test
|
||||||
|
if err := c.Init(); err != nil {
|
||||||
|
t.Fatalf("init failed: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := c.Load(ctx); err != nil {
|
if err := c.Load(ctx); err != nil {
|
||||||
t.Fatal(err)
|
t.Fatalf("load failed: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if cfg.Broker != "5566:33" {
|
if cfg.Broker != "5566:33" {
|
||||||
t.Fatalf("failed to parse flags broker value invalid: %#+v", cfg)
|
t.Fatalf("failed to parse flags broker value invalid: %#+v", cfg)
|
||||||
}
|
}
|
||||||
if tf := cfg.Time.Format(time.RFC822); tf != "02 Jan 06 14:32 MSK" {
|
if tf := cfg.Time.Format(time.RFC822); tf != "02 Jan 06 15:04 MST" {
|
||||||
t.Fatalf("parse time error: %v", cfg.Time)
|
t.Fatalf("parse time error: %s != %s", tf, "02 Jan 06 15:04 MST")
|
||||||
}
|
}
|
||||||
|
|
||||||
t.Logf("cfg %#+v", cfg)
|
if len(cfg.Components) != 2 {
|
||||||
|
t.Fatalf("cant parse map components %#+v", cfg)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
15
go.mod
15
go.mod
@ -1,5 +1,16 @@
|
|||||||
module go.unistack.org/micro-config-flag/v3
|
module go.unistack.org/micro-config-flag/v3
|
||||||
|
|
||||||
go 1.16
|
go 1.22
|
||||||
|
|
||||||
require go.unistack.org/micro/v3 v3.8.5
|
toolchain go1.23.1
|
||||||
|
|
||||||
|
require go.unistack.org/micro/v3 v3.11.14
|
||||||
|
|
||||||
|
require (
|
||||||
|
dario.cat/mergo v1.0.1 // indirect
|
||||||
|
github.com/google/go-cmp v0.6.0 // indirect
|
||||||
|
github.com/google/uuid v1.6.0 // indirect
|
||||||
|
go.unistack.org/micro-proto/v3 v3.4.1 // indirect
|
||||||
|
google.golang.org/protobuf v1.35.2 // indirect
|
||||||
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
|
)
|
||||||
|
43
go.sum
43
go.sum
@ -1,28 +1,17 @@
|
|||||||
github.com/ef-ds/deque v1.0.4/go.mod h1:gXDnTC3yqvBcHbq2lcExjtAcVrOnJCbMcZXmuj8Z4tg=
|
dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s=
|
||||||
github.com/golang-jwt/jwt/v4 v4.1.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg=
|
dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk=
|
||||||
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
|
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
|
||||||
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
|
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
||||||
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
||||||
github.com/imdario/mergo v0.3.12 h1:b6R2BslTbIEToALKP7LxUvijTsNI9TAe80pLWN2g/HU=
|
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
github.com/imdario/mergo v0.3.12/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA=
|
go.unistack.org/micro-proto/v3 v3.4.1 h1:UTjLSRz2YZuaHk9iSlVqqsA50JQNAEK2ZFboGqtEa9Q=
|
||||||
github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ=
|
go.unistack.org/micro-proto/v3 v3.4.1/go.mod h1:okx/cnOhzuCX0ggl/vToatbCupi0O44diiiLLsZ93Zo=
|
||||||
github.com/silas/dag v0.0.0-20210626123444-3804bac2d6d4/go.mod h1:7RTUFBdIRC9nZ7/3RyRNH1bdqIShrDejd1YbLwgPS+I=
|
go.unistack.org/micro/v3 v3.10.97 h1:8l7fv+i06/PjPrBBhRC/ZQkWGIOuHPg3jJN0vktYE78=
|
||||||
go.unistack.org/micro-proto/v3 v3.1.0 h1:q39FwjFiRZn+Ux/tt+d3bJTmDtsQQWa+3SLYVo1vLfA=
|
go.unistack.org/micro/v3 v3.10.97/go.mod h1:YzMldzHN9Ei+zy5t/Psu7RUWDZwUfrNYiStSQtTz90g=
|
||||||
go.unistack.org/micro-proto/v3 v3.1.0/go.mod h1:DpRhYCBXlmSJ/AAXTmntvlh7kQkYU6eFvlmYAx4BQS8=
|
go.unistack.org/micro/v3 v3.11.14 h1:3e9T30Ih9cvqZTCD8inG1qsBWRk4x5ZinWuTiDFM4CE=
|
||||||
go.unistack.org/micro/v3 v3.8.5 h1:DIYWRsQF+NPhKZP45sCtNsUhaRw6u2+Ps7U+pKU7i3s=
|
go.unistack.org/micro/v3 v3.11.14/go.mod h1:k++F5Ej4LIy3XnOW/oj3P7B97wp2t9yLSlqtUzMpatM=
|
||||||
go.unistack.org/micro/v3 v3.8.5/go.mod h1:KMMmOmbgo/D52/rCAbqeKbBsgEEbSKM69he54J3ZIuA=
|
google.golang.org/protobuf v1.35.2 h1:8Ar7bF+apOIoThw1EdZl0p1oWvMqTHmpA2fRTyZO8io=
|
||||||
golang.org/x/net v0.0.0-20210928044308-7d9f5e0b762b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
google.golang.org/protobuf v1.35.2/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
|
||||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
|
||||||
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
|
||||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
|
||||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
|
||||||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
|
|
||||||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
|
||||||
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
|
||||||
google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ=
|
|
||||||
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
|
38
options.go
38
options.go
@ -1,6 +1,8 @@
|
|||||||
package flag
|
package flag
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"flag"
|
||||||
|
|
||||||
"go.unistack.org/micro/v3/config"
|
"go.unistack.org/micro/v3/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -24,3 +26,39 @@ type timeFormatKey struct{}
|
|||||||
func TimeFormat(s string) config.Option {
|
func TimeFormat(s string) config.Option {
|
||||||
return config.SetOption(timeFormatKey{}, s)
|
return config.SetOption(timeFormatKey{}, s)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type flagSetKey struct{}
|
||||||
|
|
||||||
|
// FlagSet set flag set name
|
||||||
|
func FlagSet(f *flag.FlagSet) config.Option {
|
||||||
|
return config.SetOption(flagSetKey{}, f)
|
||||||
|
}
|
||||||
|
|
||||||
|
type flagSetNameKey struct{}
|
||||||
|
|
||||||
|
// FlagSetName set flag set name
|
||||||
|
func FlagSetName(n string) config.Option {
|
||||||
|
return config.SetOption(flagSetNameKey{}, n)
|
||||||
|
}
|
||||||
|
|
||||||
|
type flagSetErrorHandlingKey struct{}
|
||||||
|
|
||||||
|
// FlagErrorHandling set flag set error handling
|
||||||
|
func FlagErrorHandling(eh flag.ErrorHandling) config.Option {
|
||||||
|
return config.SetOption(flagSetErrorHandlingKey{}, eh)
|
||||||
|
}
|
||||||
|
|
||||||
|
type flagSetUsageKey struct{}
|
||||||
|
|
||||||
|
// FlagUsage set flag set usage func
|
||||||
|
func FlagUsage(fn func()) config.Option {
|
||||||
|
return config.SetOption(flagSetUsageKey{}, fn)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
type flagEnvKey struct{}
|
||||||
|
|
||||||
|
// FlagEnv set flag set usage func
|
||||||
|
func FlagEnv(n string) config.Option {
|
||||||
|
return config.SetOption(flagEnvKey{}, n)
|
||||||
|
}
|
||||||
|
333
util.go
333
util.go
@ -2,12 +2,139 @@ package flag
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type mapValue struct {
|
||||||
|
delim string
|
||||||
|
def string
|
||||||
|
v reflect.Value
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v *mapValue) String() string {
|
||||||
|
if v.v.Kind() != reflect.Invalid {
|
||||||
|
var kv []string
|
||||||
|
it := v.v.MapRange()
|
||||||
|
for it.Next() {
|
||||||
|
k := it.Key().Interface()
|
||||||
|
v := it.Value().Interface()
|
||||||
|
kv = append(kv, fmt.Sprintf("%v=%v", k, v))
|
||||||
|
}
|
||||||
|
return strings.Join(kv, ",")
|
||||||
|
}
|
||||||
|
return v.def
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v *mapValue) Get() interface{} {
|
||||||
|
return v.v.Interface()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v *mapValue) Set(s string) error {
|
||||||
|
ps := strings.Split(s, v.delim)
|
||||||
|
if len(ps) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
v.v.Set(reflect.MakeMapWithSize(v.v.Type(), len(ps)))
|
||||||
|
kt := v.v.Type().Key().Kind()
|
||||||
|
vt := v.v.Type().Elem().Kind()
|
||||||
|
|
||||||
|
for i := 0; i < len(ps); i++ {
|
||||||
|
fs := strings.Split(ps[i], "=")
|
||||||
|
switch len(fs) {
|
||||||
|
case 0:
|
||||||
|
return nil
|
||||||
|
case 1:
|
||||||
|
if len(fs[0]) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return ErrInvalidValue
|
||||||
|
case 2:
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
return ErrInvalidValue
|
||||||
|
}
|
||||||
|
key, err := convertType(reflect.ValueOf(fs[0]), kt)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
val, err := convertType(reflect.ValueOf(fs[1]), vt)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
v.v.SetMapIndex(key.Convert(v.v.Type().Key()), val.Convert(v.v.Type().Elem()))
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type sliceValue struct {
|
||||||
|
delim string
|
||||||
|
def string
|
||||||
|
v reflect.Value
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v *sliceValue) String() string {
|
||||||
|
if v.v.Kind() != reflect.Invalid {
|
||||||
|
var kv []string
|
||||||
|
for idx := 0; idx < v.v.Len(); idx++ {
|
||||||
|
kv = append(kv, fmt.Sprintf("%v", v.v.Index(idx).Interface()))
|
||||||
|
}
|
||||||
|
return strings.Join(kv, ",")
|
||||||
|
}
|
||||||
|
return v.def
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v *sliceValue) Get() interface{} {
|
||||||
|
return v.v.Interface()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (v *sliceValue) Set(s string) error {
|
||||||
|
p := strings.Split(s, v.delim)
|
||||||
|
v.v.Set(reflect.MakeSlice(v.v.Type(), len(p), len(p)))
|
||||||
|
switch v.v.Type().Elem().Kind() {
|
||||||
|
case reflect.Int, reflect.Int64:
|
||||||
|
for idx := range p {
|
||||||
|
i, err := strconv.ParseInt(p[idx], 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
v.v.Index(idx).SetInt(i)
|
||||||
|
}
|
||||||
|
case reflect.Uint, reflect.Uint64:
|
||||||
|
for idx := range p {
|
||||||
|
i, err := strconv.ParseUint(p[idx], 10, 64)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
v.v.Index(idx).SetUint(i)
|
||||||
|
}
|
||||||
|
case reflect.Float64:
|
||||||
|
for idx := range p {
|
||||||
|
i, err := strconv.ParseFloat(p[idx], 64)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
v.v.Index(idx).SetFloat(i)
|
||||||
|
}
|
||||||
|
case reflect.Bool:
|
||||||
|
for idx := range p {
|
||||||
|
i, err := strconv.ParseBool(p[idx])
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
v.v.Index(idx).SetBool(i)
|
||||||
|
}
|
||||||
|
case reflect.String:
|
||||||
|
for idx := range p {
|
||||||
|
v.v.Index(idx).SetString(p[idx])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func convertType(v reflect.Value, t reflect.Kind) (reflect.Value, error) {
|
func convertType(v reflect.Value, t reflect.Kind) (reflect.Value, error) {
|
||||||
switch v.Kind() {
|
switch v.Kind() {
|
||||||
case reflect.String:
|
case reflect.String:
|
||||||
@ -51,50 +178,12 @@ func (c *flagConfig) flagSlice(v reflect.Value, fn, fv, fd string) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
flag.Func(fn, fd, func(s string) error {
|
v.Set(reflect.MakeSlice(v.Type(), 0, 0))
|
||||||
p := strings.Split(s, delim)
|
mp := &sliceValue{v: v, def: fv, delim: delim}
|
||||||
v.Set(reflect.MakeSlice(v.Type(), len(p), len(p)))
|
if err := mp.Set(fv); err != nil {
|
||||||
switch v.Type().Elem().Kind() {
|
return err
|
||||||
case reflect.Int, reflect.Int64:
|
}
|
||||||
for idx := range p {
|
flag.Var(mp, fn, fd)
|
||||||
i, err := strconv.ParseInt(p[idx], 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
v.Index(idx).SetInt(i)
|
|
||||||
}
|
|
||||||
case reflect.Uint, reflect.Uint64:
|
|
||||||
for idx := range p {
|
|
||||||
i, err := strconv.ParseUint(p[idx], 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
v.Index(idx).SetUint(i)
|
|
||||||
}
|
|
||||||
case reflect.Float64:
|
|
||||||
for idx := range p {
|
|
||||||
i, err := strconv.ParseFloat(p[idx], 64)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
v.Index(idx).SetFloat(i)
|
|
||||||
}
|
|
||||||
case reflect.Bool:
|
|
||||||
for idx := range p {
|
|
||||||
i, err := strconv.ParseBool(p[idx])
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
v.Index(idx).SetBool(i)
|
|
||||||
}
|
|
||||||
case reflect.String:
|
|
||||||
for idx := range p {
|
|
||||||
v.Index(idx).SetString(p[idx])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
})
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -105,43 +194,12 @@ func (c *flagConfig) flagMap(v reflect.Value, fn, fv, fd string) error {
|
|||||||
delim = d
|
delim = d
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
flag.Func(fn, fd, func(s string) error {
|
v.Set(reflect.MakeMapWithSize(v.Type(), 0))
|
||||||
ps := strings.Split(s, delim)
|
mp := &mapValue{v: v, def: fv, delim: delim}
|
||||||
if len(ps) == 0 {
|
if err := mp.Set(fv); err != nil {
|
||||||
return nil
|
return err
|
||||||
}
|
}
|
||||||
v.Set(reflect.MakeMapWithSize(v.Type(), len(ps)))
|
flag.Var(mp, fn, fd)
|
||||||
kt := v.Type().Key().Kind()
|
|
||||||
vt := v.Type().Elem().Kind()
|
|
||||||
|
|
||||||
for i := 0; i < len(ps); i++ {
|
|
||||||
fs := strings.Split(ps[i], "=")
|
|
||||||
switch len(fs) {
|
|
||||||
case 0:
|
|
||||||
return nil
|
|
||||||
case 1:
|
|
||||||
if len(fs[0]) == 0 {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
return ErrInvalidValue
|
|
||||||
case 2:
|
|
||||||
break
|
|
||||||
default:
|
|
||||||
return ErrInvalidValue
|
|
||||||
}
|
|
||||||
key, err := convertType(reflect.ValueOf(fs[0]), kt)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
val, err := convertType(reflect.ValueOf(fs[1]), vt)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
v.SetMapIndex(key.Convert(v.Type().Key()), val.Convert(v.Type().Elem()))
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
})
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -172,7 +230,7 @@ func (c *flagConfig) flagDuration(v reflect.Value, fn, fv, fd string) error {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return ErrInvalidValue
|
return ErrInvalidValue
|
||||||
}
|
}
|
||||||
i, err := time.ParseDuration(fd)
|
i, err := time.ParseDuration(fv)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -185,7 +243,7 @@ func (c *flagConfig) flagBool(v reflect.Value, fn, fv, fd string) error {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return ErrInvalidValue
|
return ErrInvalidValue
|
||||||
}
|
}
|
||||||
i, err := strconv.ParseBool(fd)
|
i, err := strconv.ParseBool(fv)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -207,11 +265,11 @@ func (c *flagConfig) flagInt(v reflect.Value, fn, fv, fd string) error {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return ErrInvalidValue
|
return ErrInvalidValue
|
||||||
}
|
}
|
||||||
i, err := strconv.ParseInt(fd, 10, 64)
|
i, err := strconv.ParseInt(fv, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
flag.IntVar(nv, fn, int(i), fd)
|
flag.IntVar(nv, fn, int(i), fv)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -220,11 +278,11 @@ func (c *flagConfig) flagInt64(v reflect.Value, fn, fv, fd string) error {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return ErrInvalidValue
|
return ErrInvalidValue
|
||||||
}
|
}
|
||||||
i, err := strconv.ParseInt(fd, 10, 64)
|
i, err := strconv.ParseInt(fv, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
flag.Int64Var(nv, fn, int64(i), fd)
|
flag.Int64Var(nv, fn, int64(i), fv)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -233,11 +291,11 @@ func (c *flagConfig) flagUint(v reflect.Value, fn, fv, fd string) error {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return ErrInvalidValue
|
return ErrInvalidValue
|
||||||
}
|
}
|
||||||
i, err := strconv.ParseUint(fd, 10, 64)
|
i, err := strconv.ParseUint(fv, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
flag.UintVar(nv, fn, uint(i), fd)
|
flag.UintVar(nv, fn, uint(i), fv)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -246,11 +304,11 @@ func (c *flagConfig) flagUint64(v reflect.Value, fn, fv, fd string) error {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return ErrInvalidValue
|
return ErrInvalidValue
|
||||||
}
|
}
|
||||||
i, err := strconv.ParseUint(fd, 10, 64)
|
i, err := strconv.ParseUint(fv, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
flag.Uint64Var(nv, fn, uint64(i), fd)
|
flag.Uint64Var(nv, fn, uint64(i), fv)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -259,14 +317,15 @@ func (c *flagConfig) flagFloat64(v reflect.Value, fn, fv, fd string) error {
|
|||||||
if !ok {
|
if !ok {
|
||||||
return ErrInvalidValue
|
return ErrInvalidValue
|
||||||
}
|
}
|
||||||
i, err := strconv.ParseFloat(fd, 64)
|
i, err := strconv.ParseFloat(fv, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
flag.Float64Var(nv, fn, float64(i), fd)
|
flag.Float64Var(nv, fn, float64(i), fv)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
func (c *flagConfig) flagStringSlice(v reflect.Value, fn, fv, fd string) error {
|
func (c *flagConfig) flagStringSlice(v reflect.Value, fn, fv, fd string) error {
|
||||||
nv, ok := v.Addr().Interface().(*string)
|
nv, ok := v.Addr().Interface().(*string)
|
||||||
if !ok {
|
if !ok {
|
||||||
@ -275,33 +334,77 @@ func (c *flagConfig) flagStringSlice(v reflect.Value, fn, fv, fd string) error {
|
|||||||
flag.StringVar(nv, fn, fv, fd)
|
flag.StringVar(nv, fn, fv, fd)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
func getFlagOpts(tf string) (string, string, string) {
|
func getFlagOpts(tf string) (string, string, string) {
|
||||||
ret := make([]string, 3)
|
var name, desc, def string
|
||||||
vals := strings.Split(tf, ",")
|
delim := ","
|
||||||
f := 0
|
|
||||||
for _, val := range vals {
|
var buf string
|
||||||
p := strings.Split(val, "=")
|
for idx := 0; idx < len(tf); idx++ {
|
||||||
switch p[0] {
|
buf += string(tf[idx])
|
||||||
|
switch buf {
|
||||||
case "name":
|
case "name":
|
||||||
f = 0
|
ndx := idx + 2
|
||||||
|
stop := ","
|
||||||
|
var quote bool
|
||||||
|
for ; ndx < len(tf); ndx++ {
|
||||||
|
if string(tf[ndx]) == stop {
|
||||||
|
if quote {
|
||||||
|
ndx++
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
if string(tf[ndx]) == "'" {
|
||||||
|
stop = "'"
|
||||||
|
quote = true
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
name += string(tf[ndx])
|
||||||
|
}
|
||||||
|
idx = ndx
|
||||||
|
buf = ""
|
||||||
case "desc":
|
case "desc":
|
||||||
f = 1
|
ndx := idx + 2
|
||||||
|
stop := ","
|
||||||
|
var quote bool
|
||||||
|
for ; ndx < len(tf); ndx++ {
|
||||||
|
if string(tf[ndx]) == stop {
|
||||||
|
if quote {
|
||||||
|
ndx++
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
if string(tf[ndx]) == "'" {
|
||||||
|
stop = "'"
|
||||||
|
quote = true
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
desc += string(tf[ndx])
|
||||||
|
}
|
||||||
|
idx = ndx
|
||||||
|
buf = ""
|
||||||
case "default":
|
case "default":
|
||||||
f = 2
|
ndx := idx + 2
|
||||||
default:
|
stop := ","
|
||||||
ret[f] += "," + val
|
var quote bool
|
||||||
continue
|
for ; ndx < len(tf); ndx++ {
|
||||||
}
|
if string(tf[ndx]) == stop && (stop != delim) {
|
||||||
ret[f] = p[1]
|
if quote {
|
||||||
}
|
ndx++
|
||||||
for idx := range ret {
|
}
|
||||||
if ret[idx][0] == '\'' {
|
break
|
||||||
ret[idx] = ret[idx][1:]
|
}
|
||||||
}
|
if string(tf[ndx]) == "'" {
|
||||||
if ret[idx][len(ret[idx])-1] == '\'' {
|
stop = "'"
|
||||||
ret[idx] = ret[idx][:len(ret[idx])-1]
|
quote = true
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
def += string(tf[ndx])
|
||||||
|
}
|
||||||
|
idx = ndx
|
||||||
|
buf = ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ret[0], ret[1], ret[2]
|
return name, desc, def
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user