Fairly general building blocks used in Arista Go code and open-sourced for the benefit of all (Evacuated from NSA/Microsoft Github)

anonymous 00fb388f27 ugh where does redis v.4 come from преди 5 години
areflect 7c4a5f2e51 all: Minor changes to copyright statement преди 6 години
cmd f772bcb45e WIP преди 5 години
debian 00fb388f27 ugh where does redis v.4 come from преди 5 години
dscp f772bcb45e WIP преди 5 години
elasticsearch 7c4a5f2e51 all: Minor changes to copyright statement преди 6 години
gnmi f772bcb45e WIP преди 5 години
kafka f772bcb45e WIP преди 5 години
key f772bcb45e WIP преди 5 години
lanz f772bcb45e WIP преди 5 години
monitor f772bcb45e WIP преди 5 години
monotime f772bcb45e WIP преди 5 години
netns f772bcb45e WIP преди 5 години
openconfig f772bcb45e WIP преди 5 години
path f772bcb45e WIP преди 5 години
sizeof f772bcb45e WIP преди 5 години
test f772bcb45e WIP преди 5 години
value 7c4a5f2e51 all: Minor changes to copyright statement преди 6 години
.travis.yml ed0049784a travis.yml: Test with go1.10 преди 6 години
AUTHORS 431849814c Initial open-source release under Apache License 2.0 преди 8 години
COPYING 431849814c Initial open-source release under Apache License 2.0 преди 8 години
DEPENDENCIES f772bcb45e WIP преди 5 години
Dockerfile f772bcb45e WIP преди 5 години
Makefile f772bcb45e WIP преди 5 години
README.md f772bcb45e WIP преди 5 години
check_copyright_notice.sh 7c4a5f2e51 all: Minor changes to copyright statement преди 6 години
check_line_len.awk 7c4a5f2e51 all: Minor changes to copyright statement преди 6 години
rpmbuild.sh 7c4a5f2e51 all: Minor changes to copyright statement преди 6 години
test.go f772bcb45e WIP преди 5 години

README.md

Arista Go library Build Status codecov.io GoDoc Go Report Card

areflect

Helper functions to work with the reflect package. Contains ForceExport(), which bypasses the check in reflect.Value that prevents accessing unexported attributes.

monotime

Provides access to a fast monotonic clock source, to fill in the gap in the Go standard library, which lacks one. Don't use time.Now() in code that needs to time things or otherwise assume that time passes at a constant rate, instead use monotime.Now().

cmd

See the cmd directory.

dscp

Provides ListenTCPWithTOS(), which is a replacement for net.ListenTCP() that allows specifying the ToS (Type of Service), to specify DSCP / ECN / class of service flags to use for incoming connections. Requires go1.9.

key

Provides common types used across various Arista projects. The type key.Key is used to work around the fact that Go can't let one use a non-hashable type as a key to a map, and we sometimes need to use a map[string]interface{} (or something containing one) as a key to maps. As a result, we frequently use map[key.Key]interface{} instead of just map[interface{}]interface{} when we need a generic key-value collection. The type key.Path is the representation of a path broken down into individual elements, where each element is a key.Key. The type key.Pointer represents a pointer to a key.Path.

path

Provides functions that can be used to manipulate key.Path objects. The type path.Map may be used for mapping paths to values. It allows for some fuzzy matching for paths containing path.Wildcard keys.

lanz

A client for LANZ streaming servers. It connects to a LANZ streaming server, listens for notifications, decodes them and sends the LANZ protobuf on the provided channel.

monitor

A library to help expose monitoring metrics on top of the expvar infrastructure.

netns

netns.Do(namespace, cb) provides a handy mechanism to execute the given callback cb in the given network namespace.

test

This is a Go library to help in writing unit tests.

Examples

TBD