Skip to content

Commit 891a493

Browse files
committed
wsl
1 parent 0dff69c commit 891a493

File tree

282 files changed

+2186
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

282 files changed

+2186
-2
lines changed

.golangci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ linters:
2121
- revive
2222
- stylecheck
2323
- testifylint
24+
- wsl
2425
linters-settings:
2526
revive:
2627
rules:

internal/app/cli/cli.go

+6
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,13 @@ func New(p Params) (Result, error) {
3030
sort.Slice(commands, func(i, j int) bool {
3131
return strings.Compare(commands[i].Name, commands[j].Name) < 0
3232
})
33+
3334
name := "bitmagnet"
35+
3436
if version.GitTag != "" {
3537
name += " " + version.GitTag
3638
}
39+
3740
app := &cli.App{
3841
Name: name,
3942
Commands: commands,
@@ -47,7 +50,9 @@ func New(p Params) (Result, error) {
4750
// disabling the version flag as for some reason the After hook never gets called
4851
HideVersion: true,
4952
}
53+
5054
app.Setup()
55+
5156
p.Lifecycle.Append(fx.Hook{
5257
OnStart: func(context.Context) error {
5358
go (func() {
@@ -63,6 +68,7 @@ func New(p Params) (Result, error) {
6368
return nil
6469
},
6570
})
71+
6672
return Result{
6773
App: app,
6874
}, nil

internal/app/cli/hooks/hooks.go

+1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ func New(p Params) (Result, error) {
2121
for _, hook := range p.Hooks {
2222
p.Lifecycle.Append(hook)
2323
}
24+
2425
return Result{}, nil
2526
}

internal/app/cmd/classifiercmd/command.go

+4
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ func write(writer io.Writer, src any, format string) error {
6565
output []byte
6666
outputErr error
6767
)
68+
6869
switch format {
6970
case "json":
7071
output, outputErr = json.MarshalIndent(src, "", " ")
@@ -74,9 +75,12 @@ func write(writer io.Writer, src any, format string) error {
7475
default:
7576
outputErr = fmt.Errorf("unsupported format: %s", format)
7677
}
78+
7779
if outputErr != nil {
7880
return outputErr
7981
}
82+
8083
_, writeErr := writer.Write(output)
84+
8185
return writeErr
8286
}

internal/app/cmd/configcmd/command.go

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ func New(p Params) (Result, error) {
4040
},
4141
},
4242
}
43+
4344
return Result{Command: cmd}, nil
4445
}
4546

@@ -48,15 +49,18 @@ func appendRows(tw table.Writer, node config.ResolvedNode) {
4849
tw.AppendSeparator()
4950
tw.AppendRow(table.Row{node.PathString + ":", node.Type})
5051
tw.AppendSeparator()
52+
5153
for _, child := range node.Children() {
5254
appendRows(tw, child)
5355
}
56+
5457
tw.AppendSeparator()
5558
} else {
5659
from := node.ResolverKey
5760
if from == "" {
5861
from = "default"
5962
}
63+
6064
tw.AppendRow(table.Row{node.PathString, node.Type, node.ValueLabel, node.DefaultLabel, from})
6165
}
6266
}

internal/app/cmd/workercmd/command.go

+1
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,6 @@ func New(p Params) (Result, error) {
6060
},
6161
},
6262
}
63+
6364
return Result{Command: cmd}, nil
6465
}

internal/blocking/factory.go

+3
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,17 @@ func New(params Params) Result {
2929
if err != nil {
3030
return nil, err
3131
}
32+
3233
params.PgxPoolWait.Add(1)
34+
3335
return &manager{
3436
pool: pool,
3537
buffer: make(map[protocol.ID]struct{}, 1000),
3638
maxBufferSize: 1000,
3739
maxFlushWait: time.Minute * 5,
3840
}, nil
3941
})
42+
4043
return Result{
4144
Manager: lazyManager,
4245
AppHook: fx.Hook{

internal/blocking/manager.go

+18
Original file line numberDiff line numberDiff line change
@@ -33,44 +33,55 @@ type manager struct {
3333
func (m *manager) Filter(ctx context.Context, hashes []protocol.ID) ([]protocol.ID, error) {
3434
m.mutex.Lock()
3535
defer m.mutex.Unlock()
36+
3637
if m.filter == nil || m.shouldFlush() {
3738
if flushErr := m.flush(ctx); flushErr != nil {
3839
return nil, flushErr
3940
}
4041
}
42+
4143
var filtered []protocol.ID
44+
4245
for _, hash := range hashes {
4346
if _, ok := m.buffer[hash]; ok {
4447
continue
4548
}
49+
4650
if m.filter.Test(hash[:]) {
4751
continue
4852
}
53+
4954
filtered = append(filtered, hash)
5055
}
56+
5157
return filtered, nil
5258
}
5359

5460
func (m *manager) Block(ctx context.Context, hashes []protocol.ID, flush bool) error {
5561
m.mutex.Lock()
5662
defer m.mutex.Unlock()
63+
5764
for _, hash := range hashes {
5865
m.buffer[hash] = struct{}{}
5966
}
67+
6068
if flush || m.shouldFlush() {
6169
if flushErr := m.flush(ctx); flushErr != nil {
6270
return flushErr
6371
}
6472
}
73+
6574
return nil
6675
}
6776

6877
func (m *manager) Flush(ctx context.Context) error {
6978
m.mutex.Lock()
7079
defer m.mutex.Unlock()
80+
7181
if len(m.buffer) == 0 {
7282
return nil
7383
}
84+
7485
return m.flush(ctx)
7586
}
7687

@@ -88,6 +99,7 @@ func (m *manager) flush(ctx context.Context) error {
8899
if err != nil {
89100
return fmt.Errorf("failed to begin transaction: %w", err)
90101
}
102+
91103
defer func() {
92104
_ = tx.Rollback(ctx)
93105
}()
@@ -106,18 +118,24 @@ func (m *manager) flush(ctx context.Context) error {
106118
found := false
107119

108120
var oid uint32
121+
109122
var nullOid sql.NullInt32
123+
110124
err = tx.QueryRow(ctx, "SELECT oid FROM bloom_filters WHERE key = $1", blockedTorrentsBloomFilterKey).Scan(&nullOid)
111125
if err == nil {
112126
found = true
127+
113128
if nullOid.Valid {
114129
oid = uint32(nullOid.Int32)
130+
115131
obj, err := lobs.Open(ctx, oid, pgx.LargeObjectModeRead)
116132
if err != nil {
117133
return fmt.Errorf("failed to open large object for reading: %w", err)
118134
}
135+
119136
_, err = bf.ReadFrom(obj)
120137
obj.Close()
138+
121139
if err != nil {
122140
return fmt.Errorf("failed to read current bloom filter: %w", err)
123141
}

internal/bloom/bloom.go

+2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ func FromScrape(f dht.ScrapeBloomFilter) Filter {
2424

2525
func convertBytes(b [byteSize]byte) []uint64 {
2626
ret := make([]uint64, size)
27+
2728
for i := range size {
2829
startPos := i * 8
2930
ret[i] = binary.BigEndian.Uint64(b[startPos : startPos+8])
3031
}
32+
3133
return ret
3234
}

internal/bloom/bloom_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010

1111
func TestScrapeBloomFilter(t *testing.T) {
1212
var s dht.ScrapeBloomFilter
13+
1314
assert.InDelta(t, 0.5, s.EstimateCount(), 0)
1415
s.AddIP(net.IPv4(127, 0, 0, 1))
1516
c := s.EstimateCount()
@@ -19,6 +20,7 @@ func TestScrapeBloomFilter(t *testing.T) {
1920

2021
func TestConvertBloom(t *testing.T) {
2122
var s dht.ScrapeBloomFilter
23+
2224
s.AddIP(net.IPv4(127, 0, 0, 1))
2325
s.AddIP(net.IPv4(127, 0, 0, 2))
2426
f := FromScrape(s)

internal/bloom/stable.go

+4
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,21 @@ func (s *StableBloomFilter) Scan(value interface{}) error {
2424
if !ok {
2525
return errors.New("invalid type for StableBloomFilter")
2626
}
27+
2728
bf := boom.NewStableBloomFilter(0, 0, 0)
2829
if err := bf.GobDecode(bytes); err != nil {
2930
return err
3031
}
32+
3133
s.StableBloomFilter = *bf
34+
3235
return nil
3336
}
3437

3538
func (s StableBloomFilter) Value() (driver.Value, error) {
3639
if s.Cells() == 0 {
3740
return nil, nil
3841
}
42+
3943
return s.GobEncode()
4044
}

internal/classifier/action.go

+6
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,18 @@ type actionDefinition interface {
2525

2626
func (c compilerContext) compileAction(ctx compilerContext) (action, error) {
2727
var rawActions []any
28+
2829
isArray := false
30+
2931
if s, ok := ctx.source.([]any); ok {
3032
rawActions = s
3133
isArray = true
3234
} else {
3335
rawActions = []any{ctx.source}
3436
}
37+
3538
var actions []action
39+
3640
var errs []error
3741
outer:
3842
for i, rawAction := range rawActions {
@@ -52,9 +56,11 @@ outer:
5256
}
5357
errs = append(errs, fmt.Errorf("no action matched: %v", ctx.source))
5458
}
59+
5560
if len(errs) > 0 {
5661
return action{}, errors.Join(errs...)
5762
}
63+
5864
return action{func(ctx executionContext) (classification.Result, error) {
5965
for _, a := range actions {
6066
result, err := a.run(ctx)

internal/classifier/action_add_tag.go

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ func (addTagAction) compileAction(ctx compilerContext) (action, error) {
4242
if err != nil {
4343
return action{}, ctx.error(err)
4444
}
45+
4546
return action{
4647
func(ctx executionContext) (classification.Result, error) {
4748
cl := ctx.result

internal/classifier/action_attach_local_content_by_id.go

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ func (attachLocalContentByIDAction) compileAction(ctx compilerContext) (action,
2222
if _, err := attachLocalContentByIDPayloadSpec.Unmarshal(ctx); err != nil {
2323
return action{}, ctx.error(err)
2424
}
25+
2526
return action{
2627
run: func(ctx executionContext) (classification.Result, error) {
2728
cl := ctx.result

internal/classifier/action_attach_local_content_by_search.go

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ func (attachLocalContentBySearchAction) compileAction(ctx compilerContext) (acti
2121
if _, err := attachLocalContentBySearchPayloadSpec.Unmarshal(ctx); err != nil {
2222
return action{}, ctx.error(err)
2323
}
24+
2425
return action{
2526
run: func(ctx executionContext) (classification.Result, error) {
2627
cl := ctx.result

internal/classifier/action_attach_tmdb_content_by_id.go

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ func (attachTMDBContentByIDAction) compileAction(ctx compilerContext) (action, e
2424
if _, err := attachTMDBContentByIDPayloadSpec.Unmarshal(ctx); err != nil {
2525
return action{}, ctx.error(err)
2626
}
27+
2728
return action{
2829
run: func(ctx executionContext) (classification.Result, error) {
2930
cl := ctx.result

internal/classifier/action_attach_tmdb_content_by_search.go

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ func (attachTmdbContentBySearchAction) compileAction(ctx compilerContext) (actio
2222
if _, err := attachTmdbContentBySearchPayloadSpec.Unmarshal(ctx); err != nil {
2323
return action{}, ctx.error(err)
2424
}
25+
2526
return action{
2627
run: func(ctx executionContext) (classification.Result, error) {
2728
cl := ctx.result

internal/classifier/action_delete.go

+2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ func (deleteAction) compileAction(ctx compilerContext) (action, error) {
1919
if _, err := deletePayloadSpec.Unmarshal(ctx); err != nil {
2020
return action{}, ctx.error(err)
2121
}
22+
2223
path := ctx.path
24+
2325
return action{
2426
run: func(ctx executionContext) (classification.Result, error) {
2527
return ctx.result, classification.RuntimeError{Cause: classification.ErrDeleteTorrent, Path: path}

internal/classifier/action_find_match.go

+5
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,20 @@ func (findMatchAction) compileAction(ctx compilerContext) (action, error) {
2929
if err != nil {
3030
return action{}, ctx.error(err)
3131
}
32+
3233
actions := make([]action, len(payload))
34+
3335
for i, actionPayload := range payload {
3436
a, err := ctx.compileAction(ctx.child(numericPathPart(i), actionPayload))
3537
if err != nil {
3638
return action{}, err
3739
}
40+
3841
actions[i] = a
3942
}
43+
4044
path := ctx.path
45+
4146
return action{
4247
func(ctx executionContext) (classification.Result, error) {
4348
for _, action := range actions {

internal/classifier/action_if_else.go

+7
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,32 @@ func (ifElseAction) compileAction(ctx compilerContext) (action, error) {
4444
if decodeErr != nil {
4545
return action{}, ctx.error(decodeErr)
4646
}
47+
4748
cond, cErr := ctx.compileCondition(ctx.child("condition", p.Condition))
4849
if cErr != nil {
4950
return action{}, ctx.error(cErr)
5051
}
52+
5153
var ifAction, elseAction action
54+
5255
if p.IfAction != nil {
5356
pIfAction, ifErr := ctx.compileAction(ctx.child("if_action", p.IfAction))
5457
if ifErr != nil {
5558
return action{}, ctx.error(ifErr)
5659
}
60+
5761
ifAction = pIfAction
5862
}
63+
5964
if p.ElseAction != nil {
6065
pElseAction, err := ctx.compileAction(ctx.child("else_action", p.ElseAction))
6166
if err != nil {
6267
return action{}, ctx.error(err)
6368
}
69+
6470
elseAction = pElseAction
6571
}
72+
6673
return action{
6774
run: func(ctx executionContext) (classification.Result, error) {
6875
if result, err := cond.check(ctx); err != nil {

0 commit comments

Comments
 (0)