-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutils.go
91 lines (77 loc) · 1.8 KB
/
utils.go
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
// Copyright (c) 2023 dhn. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package go_utils
import (
"fmt"
jsoniter "github.com/json-iterator/go"
"os"
"sync"
"github.com/projectdiscovery/gologger"
)
// Print results as JSON
func WriteJSON(results <-chan interface{}) {
encoder := jsoniter.NewEncoder(os.Stdout)
for result := range results {
err := encoder.Encode(&result)
if err != nil {
gologger.Fatal().Msgf(err.Error())
}
}
}
// Print results as JSON or plain
func PrintResults(json bool, results <-chan interface{}) {
if json {
WriteJSON(results)
} else {
for result := range results {
gologger.Silent().Msg(fmt.Sprintf("%v", result))
}
}
}
// Remove duplicate strings
func RemoveDuplicateStr(strSlice []string) []string {
allKeys := make(map[string]bool)
list := []string{}
for _, item := range strSlice {
if _, value := allKeys[item]; !value {
allKeys[item] = true
list = append(list, item)
}
}
return list
}
// Remove duplicates from a channel and return a channel from type Result
func RemoveDuplicates(input <-chan interface{}) <-chan interface{} {
output := make(chan interface{})
go func() {
set := make(map[interface{}]struct{})
for index := range input {
if _, ok := set[index]; !ok {
set[index] = struct{}{}
output <- index
}
}
close(output)
}()
return output
}
// Merge multiple channels from type Result
func MergeChannels(channels ...<-chan interface{}) <-chan interface{} {
out := make(chan interface{})
wg := sync.WaitGroup{}
wg.Add(len(channels))
for _, channel := range channels {
go func(channel <-chan interface{}) {
for value := range channel {
out <- value
}
wg.Done()
}(channel)
}
go func() {
wg.Wait()
close(out)
}()
return out
}