Documentation ¶
Overview ¶
Package storage provides a simple interface to store and retrieve data from multiple data stores.
Index ¶
- Constants
- Variables
- func Count(ctx context.Context, s IStorage, target string, prm *count.Count, ...) (int64, error)
- func CountFromMany(ctx context.Context, m Map, target string, prm *count.Count, ...) ([]int64, error)
- func Create[T any](ctx context.Context, s IStorage, id, target string, t T, prm *create.Create, ...) (string, error)
- func CreateIntoMany[T any](ctx context.Context, m Map, id, target string, t T, prm *create.Create, ...) ([]string, error)
- func CreateMany[T any](ctx context.Context, str IStorage, target string, prm *create.Create, ...) ([]string, error)
- func Delete(ctx context.Context, s IStorage, id, target string, prm *delete.Delete, ...) error
- func DeleteFromMany(ctx context.Context, m Map, id, target string, prm *delete.Delete, ...) ([]bool, error)
- func DeleteMany(ctx context.Context, str IStorage, target string, prm *delete.Delete, ...) ([]bool, error)
- func Flatten2D[T any](data [][]T) []T
- func List[T any](ctx context.Context, s IStorage, target string, prm *list.List, ...) (T, error)
- func ListFromMany[T any](ctx context.Context, m Map, target string, prm *list.List, ...) ([]T, error)
- func ParseToStruct(from, to any) error
- func Retrieve[T any](ctx context.Context, s IStorage, id, target string, prm *retrieve.Retrieve, ...) (T, error)
- func RetrieveFromMany[T any](ctx context.Context, m Map, id, target string, prm *retrieve.Retrieve, ...) ([]T, error)
- func RetrieveMany[T any](ctx context.Context, str IStorage, target string, prm *retrieve.Retrieve, ...) ([]T, error)
- func Update[T any](ctx context.Context, s IStorage, id, target string, t T, prm *update.Update, ...) error
- func UpdateIntoMany(ctx context.Context, m Map, id, target string, v any, prm *update.Update, ...) ([]bool, error)
- func UpdateMany[T any](ctx context.Context, str IStorage, target string, prm *update.Update, ...) ([]bool, error)
- type Func
- type HookFunc
- type IStorage
- type Map
- type Mock
- func (m *Mock) Count(ctx context.Context, target string, prm *count.Count, ...) (int64, error)
- func (m *Mock) Create(ctx context.Context, id, target string, v any, prm *create.Create, ...) (string, error)
- func (m *Mock) Delete(ctx context.Context, id, target string, prm *delete.Delete, ...) error
- func (m *Mock) GetClient() any
- func (m *Mock) GetCounterCounted() *expvar.Int
- func (m *Mock) GetCounterCountedFailed() *expvar.Int
- func (m *Mock) GetCounterCreated() *expvar.Int
- func (m *Mock) GetCounterCreatedFailed() *expvar.Int
- func (m *Mock) GetCounterDeleted() *expvar.Int
- func (m *Mock) GetCounterDeletedFailed() *expvar.Int
- func (m *Mock) GetCounterListed() *expvar.Int
- func (m *Mock) GetCounterListedFailed() *expvar.Int
- func (m *Mock) GetCounterPingFailed() *expvar.Int
- func (m *Mock) GetCounterRetrieved() *expvar.Int
- func (m *Mock) GetCounterRetrievedFailed() *expvar.Int
- func (m *Mock) GetCounterUpdated() *expvar.Int
- func (m *Mock) GetCounterUpdatedFailed() *expvar.Int
- func (m *Mock) GetLogger() sypl.ISypl
- func (m *Mock) GetName() string
- func (m *Mock) GetType() string
- func (m *Mock) List(ctx context.Context, target string, v any, prm *list.List, ...) error
- func (m *Mock) Retrieve(ctx context.Context, id, target string, v any, prm *retrieve.Retrieve, ...) error
- func (m *Mock) Update(ctx context.Context, id, target string, v any, prm *update.Update, ...) error
- type Operation
- type Options
- type Storage
- func (s *Storage) GetCounterCounted() *expvar.Int
- func (s *Storage) GetCounterCountedFailed() *expvar.Int
- func (s *Storage) GetCounterCreated() *expvar.Int
- func (s *Storage) GetCounterCreatedFailed() *expvar.Int
- func (s *Storage) GetCounterDeleted() *expvar.Int
- func (s *Storage) GetCounterDeletedFailed() *expvar.Int
- func (s *Storage) GetCounterListed() *expvar.Int
- func (s *Storage) GetCounterListedFailed() *expvar.Int
- func (s *Storage) GetCounterPingFailed() *expvar.Int
- func (s *Storage) GetCounterRetrieved() *expvar.Int
- func (s *Storage) GetCounterRetrievedFailed() *expvar.Int
- func (s *Storage) GetCounterUpdated() *expvar.Int
- func (s *Storage) GetCounterUpdatedFailed() *expvar.Int
- func (s *Storage) GetLogger() sypl.ISypl
- func (s *Storage) GetName() string
- func (s *Storage) GetType() string
Constants ¶
const ( DefaultMetricCounterLabel = "counter" Type = "storage" )
Type is the type of the entity regarding the framework. It is used to for example, to identify the entity in the logs, metrics, and for tracing.
Variables ¶
var ( // ErrRequiredPostHook is the error returned when the post-hook function is // missing. ErrRequiredPostHook = customerror.NewRequiredError("post-hook function", customerror.WithErrorCode("ERR_REQUIRED_POST_HOOK")) // ErrRequiredPreHook is the error returned when the pre-hook function is // missing. ErrRequiredPreHook = customerror.NewRequiredError("pre-hook function", customerror.WithErrorCode("ERR_REQUIRED_PRE_HOOK")) )
Functions ¶
func Count ¶ added in v0.0.28
func Count(ctx context.Context, s IStorage, target string, prm *count.Count, options ...Func[*count.Count]) (int64, error)
Count data.
func CountFromMany ¶ added in v0.1.12
func CountFromMany( ctx context.Context, m Map, target string, prm *count.Count, options ...Func[*count.Count], ) ([]int64, error)
CountFromMany counts documents concurrently against all DALs in the map.
func Create ¶ added in v0.0.28
func Create[T any](ctx context.Context, s IStorage, id, target string, t T, prm *create.Create, options ...Func[*create.Create]) (string, error)
Create data.
func CreateIntoMany ¶ added in v0.1.12
func CreateIntoMany[T any]( ctx context.Context, m Map, id, target string, t T, prm *create.Create, options ...Func[*create.Create], ) ([]string, error)
CreateIntoMany creates one document concurrently against all DALs in the map.
func CreateMany ¶ added in v0.0.20
func CreateMany[T any]( ctx context.Context, str IStorage, target string, prm *create.Create, itemsMap map[string]T, ) ([]string, error)
CreateMany creates many documents concurrently against the same DAL.
func Delete ¶ added in v0.0.28
func Delete(ctx context.Context, s IStorage, id, target string, prm *delete.Delete, options ...Func[*delete.Delete]) error
Delete data.
func DeleteFromMany ¶ added in v0.1.12
func DeleteFromMany( ctx context.Context, m Map, id, target string, prm *delete.Delete, options ...Func[*delete.Delete], ) ([]bool, error)
DeleteFromMany deletes one documents concurrently against all DALs in the map.
func DeleteMany ¶ added in v0.0.20
func DeleteMany( ctx context.Context, str IStorage, target string, prm *delete.Delete, ids ...string, ) ([]bool, error)
DeleteMany deletes many documents concurrently against the same DAL.
func Flatten2D ¶ added in v0.1.0
func Flatten2D[T any](data [][]T) []T
Flatten2D takes a 2D slice and returns a 1D slice containing all the elements.
func List ¶ added in v0.0.28
func List[T any](ctx context.Context, s IStorage, target string, prm *list.List, options ...Func[*list.List]) (T, error)
List data.
func ListFromMany ¶ added in v0.1.12
func ListFromMany[T any]( ctx context.Context, m Map, target string, prm *list.List, options ...Func[*list.List], ) ([]T, error)
ListFromMany lists documents concurrently against all DALs in the map.
NOTE: The results are flattened into a single slice.
func ParseToStruct ¶
ParseToStruct parses the given JSON (`from`) to struct (`to`).
func Retrieve ¶ added in v0.0.28
func Retrieve[T any](ctx context.Context, s IStorage, id, target string, prm *retrieve.Retrieve, options ...Func[*retrieve.Retrieve]) (T, error)
Retrieve data.
func RetrieveFromMany ¶ added in v0.1.12
func RetrieveFromMany[T any]( ctx context.Context, m Map, id, target string, prm *retrieve.Retrieve, options ...Func[*retrieve.Retrieve], ) ([]T, error)
RetrieveFromMany retrieves one document concurrently against all DALs in the map.
func RetrieveMany ¶ added in v0.0.20
func RetrieveMany[T any]( ctx context.Context, str IStorage, target string, prm *retrieve.Retrieve, ids ...string, ) ([]T, error)
RetrieveMany retrieves many documents concurrently against the same DAL.
func Update ¶ added in v0.0.28
func Update[T any](ctx context.Context, s IStorage, id, target string, t T, prm *update.Update, options ...Func[*update.Update]) error
Update data.
Types ¶
type Func ¶
Func allows to set options.
func WithPostHook ¶
WithPostHook set the post-hook function.
func WithPreHook ¶
WithPreHook set the pre-hook function.
type HookFunc ¶
type HookFunc[T any] func(ctx context.Context, strg IStorage, id, target string, data any, param T) error
HookFunc specifies the function that will be called before and after the operation.
type IStorage ¶
type IStorage interface { // Count data. Count(ctx context.Context, target string, prm *count.Count, options ...Func[*count.Count]) (int64, error) // Delete data. Delete(ctx context.Context, id, target string, prm *delete.Delete, options ...Func[*delete.Delete]) error // Retrieve data. Retrieve(ctx context.Context, id, target string, v any, prm *retrieve.Retrieve, options ...Func[*retrieve.Retrieve]) error // List data. List(ctx context.Context, target string, v any, prm *list.List, options ...Func[*list.List]) error // Create data. Create(ctx context.Context, id, target string, v any, prm *create.Create, options ...Func[*create.Create]) (string, error) // Update data. Update(ctx context.Context, id, target string, v any, prm *update.Update, options ...Func[*update.Update]) error // GetType returns its type. GetType() string // GetClient returns the storage client. Use that to interact with the // underlying storage client. GetClient() any // GetLogger returns the logger. GetLogger() sypl.ISypl // GetName returns the storage name. GetName() string // GetCounterCounted returns the metric. GetCounterCounted() *expvar.Int // GetCounterCountedFailed returns the metric. GetCounterCountedFailed() *expvar.Int // GetCounterDeleted returns the metric. GetCounterDeleted() *expvar.Int // GetCounterDeletedFailed returns the metric. GetCounterDeletedFailed() *expvar.Int // GetCounterRetrieved returns the metric. GetCounterRetrieved() *expvar.Int // GetCounterRetrievedFailed returns the metric. GetCounterRetrievedFailed() *expvar.Int // GetCounterListed returns the metric. GetCounterListed() *expvar.Int // GetCounterListedFailed returns the metric. GetCounterListedFailed() *expvar.Int // GetCounterPingFailed returns the metric. GetCounterPingFailed() *expvar.Int // GetCounterCreated returns the metric. GetCounterCreated() *expvar.Int // GetCounterCreatedFailed returns the metric. GetCounterCreatedFailed() *expvar.Int // GetCounterUpdated returns the metric. GetCounterUpdated() *expvar.Int // GetCounterUpdatedFailed returns the metric. GetCounterUpdatedFailed() *expvar.Int }
IStorage defines the data access layer interface.
The Data Access Layer (DAL) is generally more abstract and wider than the Data Access Object (DAO).
The DAL is responsible for providing a consistent and unified interface to access data from different data sources (such as databases, files, or web services) regardless of their underlying implementation details. It abstracts away the complexity of data access by providing a simple, unified interface that shields the rest of the application from the underlying data storage details.
On the other hand, the DAO is typically more specific to a particular data source, such as a particular database management system (such as MySQL or MongoDB) or a particular web service API. Its primary responsibility is to abstract away the details of the underlying data source and provide a simplified interface for performing CRUD (Create, Read, Update, Delete) operations on that data source.
So while both DAL and DAO are used to abstract away the complexities of data access, the DAL is generally wider and more abstract because it deals with multiple data sources, while the DAO is more specific and deals with a particular data source.
type Map ¶ added in v0.0.20
Map is a map of strgs
type Mock ¶
type Mock struct { // Count data. MockCount func(ctx context.Context, target string, prm *count.Count, options ...Func[*count.Count]) (int64, error) // Delete data. MockDelete func(ctx context.Context, id, target string, prm *delete.Delete, options ...Func[*delete.Delete]) error // Retrieve data. MockRetrieve func(ctx context.Context, id, target string, v any, prm *retrieve.Retrieve, options ...Func[*retrieve.Retrieve]) error // List data. MockList func(ctx context.Context, target string, v any, prm *list.List, options ...Func[*list.List]) error // Create data. MockCreate func(ctx context.Context, id, target string, v any, prm *create.Create, options ...Func[*create.Create]) (string, error) // Update data. MockUpdate func(ctx context.Context, id, target string, v any, prm *update.Update, options ...Func[*update.Update]) error // GetType returns its type. MockGetType func() string // GetClient returns the storage client. Use that to interact with the underlying storage client. MockGetClient func() any // GetLogger returns the logger. MockGetLogger func() sypl.ISypl // GetName returns the storage name. MockGetName func() string // GetCounterCounted returns the metric. MockGetCounterCounted func() *expvar.Int // GetCounterCountedFailed returns the metric. MockGetCounterCountedFailed func() *expvar.Int // GetCounterDeleted returns the metric. MockGetCounterDeleted func() *expvar.Int // GetCounterDeletedFailed returns the metric. MockGetCounterDeletedFailed func() *expvar.Int // GetCounterRetrieved returns the metric. MockGetCounterRetrieved func() *expvar.Int // GetCounterRetrievedFailed returns the metric. MockGetCounterRetrievedFailed func() *expvar.Int // GetCounterListed returns the metric. MockGetCounterListed func() *expvar.Int // GetCounterListedFailed returns the metric. MockGetCounterListedFailed func() *expvar.Int // GetCounterPingFailed returns the metric. MockGetCounterPingFailed func() *expvar.Int // GetCounterCreated returns the metric. MockGetCounterCreated func() *expvar.Int // GetCounterCreatedFailed returns the metric. MockGetCounterCreatedFailed func() *expvar.Int // GetCounterUpdated returns the metric. MockGetCounterUpdated func() *expvar.Int // GetCounterUpdatedFailed returns the metric. MockGetCounterUpdatedFailed func() *expvar.Int }
Mock is a struct which satisfies the storage.IStorage interface.
func (*Mock) Count ¶
func (m *Mock) Count(ctx context.Context, target string, prm *count.Count, options ...Func[*count.Count]) (int64, error)
Count data.
func (*Mock) Create ¶ added in v0.0.17
func (m *Mock) Create(ctx context.Context, id, target string, v any, prm *create.Create, options ...Func[*create.Create]) (string, error)
Create data.
func (*Mock) Delete ¶
func (m *Mock) Delete(ctx context.Context, id, target string, prm *delete.Delete, options ...Func[*delete.Delete]) error
Delete data.
func (*Mock) GetClient ¶
GetClient returns the storage client. Use that to interact with the underlying storage client.
func (*Mock) GetCounterCounted ¶ added in v0.0.17
GetCounterCounted returns the metric.
func (*Mock) GetCounterCountedFailed ¶ added in v0.0.17
GetCounterCountedFailed returns the metric.
func (*Mock) GetCounterCreated ¶ added in v0.0.17
GetCounterCreated returns the metric.
func (*Mock) GetCounterCreatedFailed ¶ added in v0.0.17
GetCounterCreatedFailed returns the metric.
func (*Mock) GetCounterDeleted ¶ added in v0.0.17
GetCounterDeleted returns the metric.
func (*Mock) GetCounterDeletedFailed ¶ added in v0.0.17
GetCounterDeletedFailed returns the metric.
func (*Mock) GetCounterListed ¶ added in v0.0.17
GetCounterListed returns the metric.
func (*Mock) GetCounterListedFailed ¶ added in v0.0.17
GetCounterListedFailed returns the metric.
func (*Mock) GetCounterPingFailed ¶ added in v0.0.17
GetCounterPingFailed returns the metric.
func (*Mock) GetCounterRetrieved ¶ added in v0.0.17
GetCounterRetrieved returns the metric.
func (*Mock) GetCounterRetrievedFailed ¶ added in v0.0.17
GetCounterRetrievedFailed returns the metric.
func (*Mock) GetCounterUpdated ¶ added in v0.0.17
GetCounterUpdated returns the metric.
func (*Mock) GetCounterUpdatedFailed ¶ added in v0.0.17
GetCounterUpdatedFailed returns the metric.
func (*Mock) List ¶
func (m *Mock) List(ctx context.Context, target string, v any, prm *list.List, options ...Func[*list.List]) error
List data.
type Options ¶
type Options[T any] struct { // PreHookFunc is the function which runs before the operation. PreHookFunc HookFunc[T] `json:"-"` // PostHookFunc is the function which runs after the operation. PostHookFunc HookFunc[T] `json:"-"` }
Options for operations.
type Storage ¶
type Storage struct { // Logger. Logger sypl.ISypl `json:"-" validate:"required"` // Name of the storage type. Name string `json:"name" validate:"required,lowercase,gte=1"` // contains filtered or unexported fields }
Storage definition.
func (*Storage) GetCounterCounted ¶ added in v0.0.15
GetCounterCounted returns the metric.
func (*Storage) GetCounterCountedFailed ¶ added in v0.0.15
GetCounterCountedFailed returns the metric.
func (*Storage) GetCounterCreated ¶ added in v0.0.15
GetCounterCreated returns the metric.
func (*Storage) GetCounterCreatedFailed ¶ added in v0.0.15
GetCounterCreatedFailed returns the metric.
func (*Storage) GetCounterDeleted ¶ added in v0.0.15
GetCounterDeleted returns the metric.
func (*Storage) GetCounterDeletedFailed ¶ added in v0.0.15
GetCounterDeletedFailed returns the metric.
func (*Storage) GetCounterListed ¶ added in v0.0.15
GetCounterListed returns the metric.
func (*Storage) GetCounterListedFailed ¶ added in v0.0.15
GetCounterListedFailed returns the metric.
func (*Storage) GetCounterPingFailed ¶ added in v0.0.15
GetCounterPingFailed returns the metric.
func (*Storage) GetCounterRetrieved ¶ added in v0.0.15
GetCounterRetrieved returns the metric.
func (*Storage) GetCounterRetrievedFailed ¶ added in v0.0.15
GetCounterRetrievedFailed returns the metric.
func (*Storage) GetCounterUpdated ¶ added in v0.0.15
GetCounterUpdated returns the metric.
func (*Storage) GetCounterUpdatedFailed ¶ added in v0.0.15
GetCounterUpdatedFailed returns the metric.