mb

package module
v1.0.3 Latest Latest
Warning

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

Go to latest
Published: Apr 29, 2021 License: BSD-2-Clause Imports: 2 Imported by: 5

README

Message batching queue

This package very useful for organizing batch messages.
Can help you create batch inserts to a database for example. Thread safe and well tested.

// create new queue object
batch := mb.New(0)

// add new message to the queue
batch.Add(msg)

// wait until anybody add message/messages
// will return the slice of all queued messages. ([]interface{})
messages := batch.Wait()

// wait until count of messages will be more than 10
// if we have more than 100 messages, will be returned only 100
messages := batch.WaitMinMax(10, 100)

// when we have 0 messages returned that means the queue is closed.
if len(messages) == 0 {
	return
}

// close queue
// if the queue has messages all receivers will get remaining data.
batch.Close()
Docs

https://godoc.org/github.com/cheggaaa/mb

Installation

go get -u github.com/cheggaaa/mb

Example
package main

import (
	"fmt"
	"time"

	"github.com/cheggaaa/mb"
)

func main() {
	// create the queue with 10 items capacity
	q := mb.New(10)

	// create the channel for showing when all work will be done
	done := make(chan bool)

	// start two workers
	go worker("first", q, done)
	go worker("second", q, done)

	// start two publishers
	go publisher("first", q)
	go publisher("second", q)

	// give time to work
	time.Sleep(time.Second)

	// close the queue
	q.Close()

	// and wait until all sent messages will be processed
	for i := 0; i < 2; i++ {
		<-done
	}
}

func publisher(name string, q *mb.MB) {
	fmt.Printf("Publisher %s: started\n", name)
	var i int
	for {
		// will sending name and counter
		msg := fmt.Sprintf("%s - %d", name, i)
		// add
		if err := q.Add(msg); err != nil {
			// non-nil err mean that queue is closed
			break
		}
		// 10 messages per second
		time.Sleep(time.Second / 10)
		i++
	}
	fmt.Printf("Publisher %s: closed\n", name)
}

func worker(name string, q *mb.MB, done chan bool) {
	fmt.Printf("Worker %s: started\n", name)
	for {
		// getting messages
		msgs := q.Wait()

		if len(msgs) == 0 {
			// 0 messages mean that queue is closed
			break
		}

		msgsForPrint := ""
		for _, msg := range msgs {
			msgsForPrint += fmt.Sprintf("\t%s\n", msg)
		}
		fmt.Printf("Worker %s: %d messages received\n%s", name, len(msgs), msgsForPrint)

		// doing working, for example, send messages to remote server
		time.Sleep(time.Second / 3)
	}
	fmt.Printf("Worker %s: closed\n", name)
	done <- true
}

Documentation

Overview

Package mb - queue with message batching feature

Index

Constants

This section is empty.

Variables

View Source
var ErrClosed = errors.New("mb: MB closed")

ErrClosed is returned when you add message to closed queue

View Source
var ErrOverflowed = errors.New("mb: overflowed")

ErrOverflowed means new messages can't be added until there is free space in the queue

View Source
var ErrTooManyMessages = errors.New("mb: too many messages")

ErrTooManyMessages means that adding more messages (at one call) than the limit

Functions

This section is empty.

Types

type MB

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

MB - message batching object Implements queue. Based on condition variables

func New

func New(size int) *MB

New returns a new MB with given queue size. size <= 0 means unlimited

func (*MB) Add

func (mb *MB) Add(msgs ...interface{}) (err error)

Add - adds new messages to queue. When queue is closed - returning ErrClosed When count messages bigger then queue size - returning ErrTooManyMessages When the queue is full - wait until will free place

func (*MB) Close

func (mb *MB) Close() (err error)

Close closes the queue All added messages will be available for Wait When queue paused messages do not be released for Wait (use GetAll for fetching them)

func (*MB) GetAll added in v1.0.1

func (mb *MB) GetAll() (msgs []interface{})

GetAll return all messages and flush queue Works on closed queue

func (*MB) Len

func (mb *MB) Len() (l int)

Len returning current size of queue

func (*MB) Pause added in v1.0.2

func (mb *MB) Pause()

Pause lock all "Wait" routines until call Resume

func (*MB) Resume added in v1.0.2

func (mb *MB) Resume()

Resume release all "Wait" routines

func (*MB) Stats

func (mb *MB) Stats() (addCount, addMsgsCount, getCount, getMsgsCount int64)

Stats returning current statistic of queue usage addCount - count of calls Add addMsgsCount - count of added messages getCount - count of calls Wait getMsgsCount - count of issued messages

func (*MB) TryAdd added in v1.0.3

func (mb *MB) TryAdd(msgs ...interface{}) (err error)

TryAdd - adds new messages to queue. When queue is closed - returning ErrClosed When count messages bigger then queue size - returning ErrTooManyMessages When the queue is full - returning ErrOverflowed

func (*MB) Wait

func (mb *MB) Wait() (msgs []interface{})

Wait until anybody add message Returning array of accumulated messages When queue will be closed length of array will be 0

func (*MB) WaitMax

func (mb *MB) WaitMax(max int) (msgs []interface{})

WaitMax it's Wait with limit of maximum returning array size

func (*MB) WaitMin added in v1.0.1

func (mb *MB) WaitMin(min int) (msgs []interface{})

WaitMin it's Wait with limit of minimum returning array size

func (*MB) WaitMinMax added in v1.0.1

func (mb *MB) WaitMinMax(min, max int) (msgs []interface{})

WaitMinMax it's Wait with limit of minimum and maximum returning array size value < 0 means no limit

Jump to

Keyboard shortcuts

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