dns

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: 23 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func FastestIp

func FastestIp(domain string, ipList pie.Strings) string

func InitDnsClient

func InitDnsClient() (bool, error)

func InitDnsService

func InitDnsService() (bool, error)

func LockupDefault

func LockupDefault(domain string) (hostList pie.Strings)

func LookupAllHosts

func LookupAllHosts(domain string) (hostList pie.Strings)

func LookupHostsFastestBack

func LookupHostsFastestBack(domain string) string

func LookupHostsFastestIp

func LookupHostsFastestIp(domain string) string

func Ping

func Ping(ip string, useproxy bool) time.Duration

Types

type Dns

type Dns struct {
	// contains filtered or unexported fields
}

Dns TODO ipv6的支持

func NewDns

func NewDns() *Dns

func (*Dns) AddServiceList

func (p *Dns) AddServiceList(serviceList ...string) *Dns

func (*Dns) Init

func (p *Dns) Init() error

func (*Dns) QueryIpV4

func (p *Dns) QueryIpV4(domain string) (hostList pie.Strings)

func (*Dns) QueryIpv4FastestBack

func (p *Dns) QueryIpv4FastestBack(domain string) string

QueryIpv4FastestBack 最快返回的结果

func (*Dns) QueryIpv4FastestIp

func (p *Dns) QueryIpv4FastestIp(domain string) string

QueryIpv4FastestIp 最快的ip

type DnsClient

type DnsClient interface {
	Init() error
	LookupHost(domain string) pie.Strings
}

func ParseDnsUrl

func ParseDnsUrl(dnsServiceAddr string) DnsClient

type DnsClientList

type DnsClientList []DnsClient

func (DnsClientList) All

func (ss DnsClientList) All(fn func(value DnsClient) 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 (DnsClientList) Any

func (ss DnsClientList) Any(fn func(value DnsClient) 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 (DnsClientList) Append

func (ss DnsClientList) Append(elements ...DnsClient) DnsClientList

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

It is acceptable to provide zero arguments.

func (DnsClientList) Bottom

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

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 (DnsClientList) Chunk

func (ss DnsClientList) Chunk(chunkSize int, callback func(chunk DnsClientList) (stopped bool))

Split slice to chunks

func (DnsClientList) Contains

func (ss DnsClientList) Contains(lookingFor DnsClient) 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 (DnsClientList) Diff

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

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 (DnsClientList) DropTop

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

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 (DnsClientList) Each

func (ss DnsClientList) Each(fn func(DnsClient)) DnsClientList

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 (DnsClientList) Equals

func (ss DnsClientList) Equals(rhs DnsClientList) 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 (DnsClientList) Extend

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

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

It is acceptable to provide zero arguments.

func (DnsClientList) Filter

func (ss DnsClientList) Filter(condition func(DnsClient) bool) (ss2 DnsClientList)

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 (DnsClientList) FilterNot

func (ss DnsClientList) FilterNot(condition func(DnsClient) bool) (ss2 DnsClientList)

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 (DnsClientList) FindFirstUsing

func (ss DnsClientList) FindFirstUsing(fn func(value DnsClient) 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 (DnsClientList) First

func (ss DnsClientList) First() DnsClient

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

func (DnsClientList) FirstOr

func (ss DnsClientList) FirstOr(defaultValue DnsClient) DnsClient

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

func (DnsClientList) Float64s

func (ss DnsClientList) Float64s() pie.Float64s

Float64s transforms each element to a float64.

func (DnsClientList) Insert

func (ss DnsClientList) Insert(index int, values ...DnsClient) DnsClientList

Insert a value at an index

func (DnsClientList) Ints

func (ss DnsClientList) Ints() pie.Ints

Ints transforms each element to an integer.

func (DnsClientList) JSONBytes

func (ss DnsClientList) 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 (DnsClientList) JSONBytesIndent

func (ss DnsClientList) 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 (DnsClientList) JSONString

func (ss DnsClientList) 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 (DnsClientList) JSONStringIndent

func (ss DnsClientList) 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 (DnsClientList) Join

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

Join returns a string from joining each of the elements.

func (DnsClientList) Last

func (ss DnsClientList) Last() DnsClient

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

func (DnsClientList) LastOr

func (ss DnsClientList) LastOr(defaultValue DnsClient) DnsClient

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

func (DnsClientList) Len

func (ss DnsClientList) Len() int

Len returns the number of elements.

func (DnsClientList) Map

func (ss DnsClientList) Map(fn func(DnsClient) DnsClient) (ss2 DnsClientList)

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 (DnsClientList) Mode

func (ss DnsClientList) Mode() DnsClientList

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 (*DnsClientList) Pop

func (ss *DnsClientList) Pop() (popped *DnsClient)

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 (DnsClientList) Random

func (ss DnsClientList) Random(source rand.Source) DnsClient

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

func (DnsClientList) Reverse

func (ss DnsClientList) Reverse() DnsClientList

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 (DnsClientList) Send

func (ss DnsClientList) Send(ctx context.Context, ch chan<- DnsClient) DnsClientList

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 (DnsClientList) SequenceUsing

func (ss DnsClientList) SequenceUsing(creator func(int) DnsClient, params ...int) DnsClientList

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 (DnsClientList) Shift

func (ss DnsClientList) Shift() (DnsClient, DnsClientList)

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

func (DnsClientList) Shuffle

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

Shuffle returns shuffled slice by your rand.Source

func (DnsClientList) SortStableUsing

func (ss DnsClientList) SortStableUsing(less func(a, b DnsClient) bool) DnsClientList

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

func (DnsClientList) SortUsing

func (ss DnsClientList) SortUsing(less func(a, b DnsClient) bool) DnsClientList

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

func (DnsClientList) Strings

func (ss DnsClientList) 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 (DnsClientList) StringsUsing

func (ss DnsClientList) StringsUsing(transform func(DnsClient) string) pie.Strings

StringsUsing transforms each element to a string.

func (DnsClientList) SubSlice

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

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 (DnsClientList) Top

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

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 (DnsClientList) Unshift

func (ss DnsClientList) Unshift(elements ...DnsClient) (unshift DnsClientList)

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

type DohClient

type DohClient struct {
	// contains filtered or unexported fields
}

func NewDohClient

func NewDohClient(dnsService string) *DohClient

func (*DohClient) Init

func (p *DohClient) Init() error

func (*DohClient) LookupHost

func (p *DohClient) LookupHost(domain string) (hostList pie.Strings)

type DotClient

type DotClient struct {
	// contains filtered or unexported fields
}

func NewDotClient

func NewDotClient(dnsService string) *DotClient

func (*DotClient) Init

func (p *DotClient) Init() error

func (*DotClient) LookupHost

func (p *DotClient) LookupHost(domain string) (hostList pie.Strings)

type InitClient

type InitClient struct {
}

func (*InitClient) Init

func (p *InitClient) Init() (needRun bool, err error)

func (*InitClient) Name

func (p *InitClient) Name() string

func (*InitClient) WaitFinish

func (p *InitClient) WaitFinish()

type InitServer

type InitServer struct {
}

func (*InitServer) Init

func (p *InitServer) Init() (needRun bool, err error)

func (*InitServer) Name

func (p *InitServer) Name() string

func (*InitServer) WaitFinish

func (p *InitServer) WaitFinish()

type UdpClient

type UdpClient struct {
	// contains filtered or unexported fields
}

func NewUdpClient

func NewUdpClient(dnsService string) *UdpClient

net default: udp

func (*UdpClient) Init

func (p *UdpClient) Init() error

func (*UdpClient) LookupHost

func (p *UdpClient) LookupHost(domain string) (hostList pie.Strings)

Jump to

Keyboard shortcuts

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