proxies

package
v0.0.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 5, 2022 License: MPL-2.0 Imports: 29 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ClashTplUrl string

Functions

func InitProxies

func InitProxies() error

Types

type ClashConfig

type ClashConfig struct {
	DnsType        DnsType
	DnsServiceList pie.Strings
	EnableIpv6     bool
}

func NewClashConfig

func NewClashConfig() ClashConfig

type DnsType

type DnsType uint32
const (
	DnsTypeNil DnsType = iota
	DnsTypeBase
	DnsTypeLocal
	DnsTypeAssign
)

type Init

type Init struct {
}

func (*Init) Init

func (p *Init) Init() (bool, error)

func (*Init) Name

func (p *Init) Name() string

func (*Init) WaitFinish

func (p *Init) WaitFinish()

type Proxies

type Proxies struct {
	Total, UsableTotal atomic.Uint64
	// contains filtered or unexported fields
}

func GenClashProxies

func GenClashProxies(count int, mustUsable, needCheck bool) *Proxies

func NewProxies

func NewProxies() *Proxies

func (*Proxies) Append

func (ps *Proxies) Append(contact string, name string) *Proxies

func (*Proxies) AppendNetEaseWithUrl

func (ps *Proxies) AppendNetEaseWithUrl(contact string) *Proxies

func (*Proxies) AppendWithUrl

func (ps *Proxies) AppendWithUrl(contact string) *Proxies

func (*Proxies) Clone

func (ps *Proxies) Clone() *Proxies

func (*Proxies) GetUsableList

func (ps *Proxies) GetUsableList(checkUrl string) (psn *Proxies)

func (*Proxies) Len

func (ps *Proxies) Len() int

func (*Proxies) NameAddIndex

func (ps *Proxies) NameAddIndex() *Proxies

func (*Proxies) NameReIndex

func (ps *Proxies) NameReIndex() *Proxies

func (*Proxies) ToClashConfig

func (ps *Proxies) ToClashConfig(c ClashConfig) string

func (*Proxies) ToV2rayConfig

func (ps *Proxies) ToV2rayConfig() string

type ProxyList

type ProxyList []proxy2.Proxy

func (ProxyList) All

func (ss ProxyList) All(fn func(value proxy.Proxy) bool) bool

All will return true if all callbacks return true. It follows the same logic as the all() function in Python.

If the list is empty then true is always returned.

func (ProxyList) Any

func (ss ProxyList) Any(fn func(value proxy.Proxy) bool) bool

Any will return true if any callbacks return true. It follows the same logic as the any() function in Python.

If the list is empty then false is always returned.

func (ProxyList) Append

func (ss ProxyList) Append(elements ...proxy.Proxy) ProxyList

Append will return a new slice with the elements appended to the end.

It is acceptable to provide zero arguments.

func (ProxyList) Bottom

func (ss ProxyList) Bottom(n int) (top ProxyList)

Bottom will return n elements from bottom

that means that elements is taken from the end of the slice for this [1,2,3] slice with n == 2 will be returned [3,2] if the slice has less elements then n that'll return all elements if n < 0 it'll return empty slice.

func (ProxyList) Contains

func (ss ProxyList) Contains(lookingFor proxy.Proxy) bool

Contains returns true if the element exists in the slice.

When using slices of pointers it will only compare by address, not value.

func (ProxyList) Diff

func (ss ProxyList) Diff(against ProxyList) (added, removed ProxyList)

Diff returns the elements that needs to be added or removed from the first slice to have the same elements in the second slice.

The order of elements is not taken into consideration, so the slices are treated sets that allow duplicate items.

The added and removed returned may be blank respectively, or contain upto as many elements that exists in the largest slice.

func (ProxyList) DropTop

func (ss ProxyList) DropTop(n int) (drop ProxyList)

DropTop will return the rest slice after dropping the top n elements if the slice has less elements then n that'll return empty slice if n < 0 it'll return empty slice.

func (ProxyList) Each

func (ss ProxyList) Each(fn func(proxy.Proxy)) ProxyList

Each is more condensed version of Transform that allows an action to happen on each elements and pass the original slice on.

cars.Each(func (car *Car) {
    fmt.Printf("Car color is: %s\n", car.Color)
})

Pie will not ensure immutability on items passed in so they can be manipulated, if you choose to do it this way, for example:

// Set all car colors to Red.
cars.Each(func (car *Car) {
    car.Color = "Red"
})

func (ProxyList) Equals

func (ss ProxyList) Equals(rhs ProxyList) bool

Equals compare elements from the start to the end,

if they are the same is considered the slices are equal if all elements are the same is considered the slices are equal if each slice == nil is considered that they're equal

if element realizes Equals interface it uses that method, in other way uses default compare

func (ProxyList) Extend

func (ss ProxyList) Extend(slices ...ProxyList) (ss2 ProxyList)

Extend will return a new slice with the slices of elements appended to the end.

It is acceptable to provide zero arguments.

func (ProxyList) Filter

func (ss ProxyList) Filter(condition func(proxy.Proxy) bool) (ss2 ProxyList)

Filter will return a new slice containing only the elements that return true from the condition. The returned slice may contain zero elements (nil).

FilterNot works in the opposite way of Filter.

func (ProxyList) FilterNot

func (ss ProxyList) FilterNot(condition func(proxy.Proxy) bool) (ss2 ProxyList)

FilterNot works the same as Filter, with a negated condition. That is, it will return a new slice only containing the elements that returned false from the condition. The returned slice may contain zero elements (nil).

func (ProxyList) FindFirstUsing

func (ss ProxyList) FindFirstUsing(fn func(value proxy.Proxy) bool) int

FindFirstUsing will return the index of the first element when the callback returns true or -1 if no element is found. It follows the same logic as the findIndex() function in Javascript.

If the list is empty then -1 is always returned.

func (ProxyList) First

func (ss ProxyList) First() proxy.Proxy

First returns the first element, or zero. Also see FirstOr().

func (ProxyList) FirstOr

func (ss ProxyList) FirstOr(defaultValue proxy.Proxy) proxy.Proxy

FirstOr returns the first element or a default value if there are no elements.

func (ProxyList) Float64s

func (ss ProxyList) Float64s() pie.Float64s

Float64s transforms each element to a float64.

func (ProxyList) Insert

func (ss ProxyList) Insert(index int, values ...proxy.Proxy) ProxyList

Insert a value at an index

func (ProxyList) Ints

func (ss ProxyList) Ints() pie.Ints

Ints transforms each element to an integer.

func (ProxyList) JSONBytes

func (ss ProxyList) JSONBytes() []byte

JSONBytes returns the JSON encoded array as bytes.

One important thing to note is that it will treat a nil slice as an empty slice to ensure that the JSON value return is always an array.

func (ProxyList) JSONBytesIndent

func (ss ProxyList) JSONBytesIndent(prefix, indent string) []byte

JSONBytesIndent returns the JSON encoded array as bytes with indent applied.

One important thing to note is that it will treat a nil slice as an empty slice to ensure that the JSON value return is always an array. See json.MarshalIndent for details.

func (ProxyList) JSONString

func (ss ProxyList) JSONString() string

JSONString returns the JSON encoded array as a string.

One important thing to note is that it will treat a nil slice as an empty slice to ensure that the JSON value return is always an array.

func (ProxyList) JSONStringIndent

func (ss ProxyList) JSONStringIndent(prefix, indent string) string

JSONStringIndent returns the JSON encoded array as a string with indent applied.

One important thing to note is that it will treat a nil slice as an empty slice to ensure that the JSON value return is always an array. See json.MarshalIndent for details.

func (ProxyList) Join

func (ss ProxyList) Join(glue string) (s string)

Join returns a string from joining each of the elements.

func (ProxyList) Last

func (ss ProxyList) Last() proxy.Proxy

Last returns the last element, or zero. Also see LastOr().

func (ProxyList) LastOr

func (ss ProxyList) LastOr(defaultValue proxy.Proxy) proxy.Proxy

LastOr returns the last element or a default value if there are no elements.

func (ProxyList) Len

func (ss ProxyList) Len() int

Len returns the number of elements.

func (ProxyList) Map

func (ss ProxyList) Map(fn func(proxy.Proxy) proxy.Proxy) (ss2 ProxyList)

Map will return a new slice where each element has been mapped (transformed). The number of elements returned will always be the same as the input.

Be careful when using this with slices of pointers. If you modify the input value it will affect the original slice. Be sure to return a new allocated object or deep copy the existing one.

func (ProxyList) Mode

func (ss ProxyList) Mode() ProxyList

Mode returns a new slice containing the most frequently occuring values.

The number of items returned may be the same as the input or less. It will never return zero items unless the input slice has zero items.

func (*ProxyList) Pop

func (ss *ProxyList) Pop() (popped *proxy.Proxy)

Pop the first element of the slice

Usage Example:

type knownGreetings []string
greetings := knownGreetings{"ciao", "hello", "hola"}
for greeting := greetings.Pop(); greeting != nil; greeting = greetings.Pop() {
    fmt.Println(*greeting)
}

func (ProxyList) Random

func (ss ProxyList) Random(source rand.Source) proxy.Proxy

Random returns a random element by your rand.Source, or zero

func (ProxyList) Reverse

func (ss ProxyList) Reverse() ProxyList

Reverse returns a new copy of the slice with the elements ordered in reverse. This is useful when combined with Sort to get a descending sort order:

ss.Sort().Reverse()

func (ProxyList) Send

func (ss ProxyList) Send(ctx context.Context, ch chan<- proxy.Proxy) ProxyList

Send sends elements to channel in normal act it sends all elements but if func canceled it can be less

it locks execution of gorutine it doesn't close channel after work returns sended elements if len(this) != len(old) considered func was canceled

func (ProxyList) SequenceUsing

func (ss ProxyList) SequenceUsing(creator func(int) proxy.Proxy, params ...int) ProxyList

SequenceUsing generates slice in range using creator function

There are 3 variations to generate:

  1. [0, n).
  2. [min, max).
  3. [min, max) with step.

if len(params) == 1 considered that will be returned slice between 0 and n, where n is the first param, [0, n). if len(params) == 2 considered that will be returned slice between min and max, where min is the first param, max is the second, [min, max). if len(params) > 2 considered that will be returned slice between min and max with step, where min is the first param, max is the second, step is the third one, [min, max) with step, others params will be ignored

func (ProxyList) Shift

func (ss ProxyList) Shift() (proxy.Proxy, ProxyList)

Shift will return two values: the shifted value and the rest slice.

func (ProxyList) Shuffle

func (ss ProxyList) Shuffle(source rand.Source) ProxyList

Shuffle returns shuffled slice by your rand.Source

func (ProxyList) SortStableUsing

func (ss ProxyList) SortStableUsing(less func(a, b proxy.Proxy) bool) ProxyList

SortStableUsing works similar to sort.SliceStable. However, unlike sort.SliceStable the slice returned will be reallocated as to not modify the input slice.

func (ProxyList) SortUsing

func (ss ProxyList) SortUsing(less func(a, b proxy.Proxy) bool) ProxyList

SortUsing works similar to sort.Slice. However, unlike sort.Slice the slice returned will be reallocated as to not modify the input slice.

func (ProxyList) Strings

func (ss ProxyList) Strings() pie.Strings

Strings transforms each element to a string.

If the element type implements fmt.Stringer it will be used. Otherwise it will fallback to the result of:

fmt.Sprintf("%v")

func (ProxyList) StringsUsing

func (ss ProxyList) StringsUsing(transform func(proxy.Proxy) string) pie.Strings

StringsUsing transforms each element to a string.

func (ProxyList) SubSlice

func (ss ProxyList) SubSlice(start int, end int) (subSlice ProxyList)

SubSlice will return the subSlice from start to end(excluded)

Condition 1: If start < 0 or end < 0, nil is returned. Condition 2: If start >= end, nil is returned. Condition 3: Return all elements that exist in the range provided, if start or end is out of bounds, zero items will be placed.

func (ProxyList) Top

func (ss ProxyList) Top(n int) (top ProxyList)

Top will return n elements from head of the slice if the slice has less elements then n that'll return all elements if n < 0 it'll return empty slice.

func (ProxyList) Unshift

func (ss ProxyList) Unshift(elements ...proxy.Proxy) (unshift ProxyList)

Unshift adds one or more elements to the beginning of the slice and returns the new slice.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL