zutils

package
v1.2.3 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2024 License: GPL-3.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Prime   = 16777619
	HashVal = 2166136261
)

Variables

View Source
var ShardCount = 32

Functions

func Zip added in v1.1.20

func Zip(dst io.Writer, src string) error

Zip 压缩文件或目录 @params dst io.Writer 压缩文件可写流 @params src string 待压缩源文件/目录路径

func ZipToFile added in v1.1.20

func ZipToFile(dst, src string) error

ZipToFile 压缩至文件 @params dst string 压缩文件目标路径 @params src string 待压缩源文件/目录路径 @return error 错误信息

Types

type Fnv32Hash added in v1.2.2

type Fnv32Hash struct{}

func (*Fnv32Hash) Sum added in v1.2.2

func (f *Fnv32Hash) Sum(key string) uint32

fnv32 algorithm

type IDWorker

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

func NewIDWorker

func NewIDWorker(workerId int64) (*IDWorker, error)

func (*IDWorker) NextID

func (w *IDWorker) NextID() (int64, error)

type IHash added in v1.2.2

type IHash interface {
	Sum(string) uint32
}

func DefaultHash added in v1.2.2

func DefaultHash() IHash

type IterCb added in v1.2.0

type IterCb func(key string, v interface{})

IterCb Iterator callback,called for every key,value found in maps. RLock is held for all calls for a given shard therefore callback sess consistent view of a shard, but not across the shards

type RemoveCb added in v1.2.0

type RemoveCb func(key string, v interface{}, exists bool) bool

RemoveCb is a callback executed in a map.RemoveCb() call, while Lock is held If returns true, the element will be removed from the map

type ShardLockMaps added in v1.2.0

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

ShardLockMaps A "thread" safe map of type string:Anything. To avoid lock bottlenecks this map is dived to several (ShardCount) map shards.

func NewShardLockMaps added in v1.2.0

func NewShardLockMaps() ShardLockMaps

NewShardLockMaps Creates a new ShardLockMaps.

func NewWithCustomHash added in v1.2.2

func NewWithCustomHash(hash IHash) ShardLockMaps

func (ShardLockMaps) Clear added in v1.2.0

func (slm ShardLockMaps) Clear()

Clear removes all items from map.

func (ShardLockMaps) Count added in v1.2.0

func (slm ShardLockMaps) Count() int

Count returns the number of elements within the map.

func (ShardLockMaps) Get added in v1.2.0

func (slm ShardLockMaps) Get(key string) (interface{}, bool)

Get retrieves an element from map under given key.

func (ShardLockMaps) GetShard added in v1.2.0

func (slm ShardLockMaps) GetShard(key string) *SingleShardMap

GetShard returns shard under given key

func (ShardLockMaps) Has added in v1.2.0

func (slm ShardLockMaps) Has(key string) bool

Has Looks up an item under specified key

func (ShardLockMaps) IsEmpty added in v1.2.0

func (slm ShardLockMaps) IsEmpty() bool

IsEmpty checks if map is empty.

func (ShardLockMaps) Items added in v1.2.0

func (slm ShardLockMaps) Items() map[string]interface{}

Items returns all items as map[string]interface{}

func (ShardLockMaps) IterBuffered added in v1.2.0

func (slm ShardLockMaps) IterBuffered() <-chan Tuple

IterBuffered returns a buffered iterator which could be used in a for range loop.

func (ShardLockMaps) IterCb added in v1.2.0

func (slm ShardLockMaps) IterCb(fn IterCb)

IterCb Callback based iterator, cheapest way to read all elements in a map.

func (ShardLockMaps) Keys added in v1.2.0

func (slm ShardLockMaps) Keys() []string

Keys returns all keys as []string

func (ShardLockMaps) MSet added in v1.2.0

func (slm ShardLockMaps) MSet(data map[string]interface{})

MSet Sets the given value under the specified key.

func (ShardLockMaps) MarshalJSON added in v1.2.0

func (slm ShardLockMaps) MarshalJSON() ([]byte, error)

MarshalJSON Reviles ConcurrentMap "private" variables to json marshal.

func (ShardLockMaps) Pop added in v1.2.0

func (slm ShardLockMaps) Pop(key string) (v interface{}, exists bool)

Pop removes an element from the map and returns it

func (ShardLockMaps) Remove added in v1.2.0

func (slm ShardLockMaps) Remove(key string)

Remove removes an element from the map.

func (ShardLockMaps) RemoveCb added in v1.2.0

func (slm ShardLockMaps) RemoveCb(key string, cb RemoveCb) bool

RemoveCb locks the shard containing the key, retrieves its current value and calls the callback with those params If callback returns true and element exists, it will remove it from the map Returns the value returned by the callback (even if element was not present in the map)

func (ShardLockMaps) Set added in v1.2.0

func (slm ShardLockMaps) Set(key string, value interface{})

Set Sets the given value under the specified key.

func (ShardLockMaps) SetNX added in v1.2.0

func (slm ShardLockMaps) SetNX(key string, value interface{}) bool

SetNX Sets the given value under the specified key if no value was associated with it.

func (ShardLockMaps) UnmarshalJSON added in v1.2.0

func (slm ShardLockMaps) UnmarshalJSON(b []byte) (err error)

UnmarshalJSON Reverse process of Marshal.

type SingleShardMap added in v1.2.0

type SingleShardMap struct {
	sync.RWMutex
	// contains filtered or unexported fields
}

SingleShardMap A "thread" safe string to anything map.

type Tuple added in v1.2.0

type Tuple struct {
	Key string
	Val interface{}
}

Tuple Used by the IterBuffered functions to wrap two variables together over a channel,

type Writer added in v1.1.18

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

func New added in v1.1.18

func New(path string) *Writer

func (*Writer) Close added in v1.1.18

func (w *Writer) Close() error

func (*Writer) SetCons added in v1.1.18

func (w *Writer) SetCons(b bool)

SetCons 同时输出控制台

func (*Writer) SetMaxAge added in v1.1.18

func (w *Writer) SetMaxAge(ma int)

SetMaxAge 最大保留天数

func (*Writer) SetMaxSize added in v1.1.18

func (w *Writer) SetMaxSize(ms int64)

SetMaxSize 单个日志最大容量

func (*Writer) Write added in v1.1.18

func (w *Writer) Write(p []byte) (n int, err error)

Jump to

Keyboard shortcuts

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