-
Notifications
You must be signed in to change notification settings - Fork 196
/
repo.go
132 lines (110 loc) · 3.64 KB
/
repo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// Copyright (c) 2014 - The Event Horizon authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package eventhorizon
import (
"context"
"errors"
"github.com/looplab/eventhorizon/uuid"
)
// ReadRepo is a read repository for entities.
type ReadRepo interface {
// InnerRepo returns the inner read repository, if there is one.
// Useful for iterating a wrapped set of repositories to get a specific one.
InnerRepo(context.Context) ReadRepo
// Find returns an entity for an ID.
Find(context.Context, uuid.UUID) (Entity, error)
// FindAll returns all entities in the repository.
FindAll(context.Context) ([]Entity, error)
// Close closes the ReadRepo.
Close() error
}
// WriteRepo is a write repository for entities.
type WriteRepo interface {
// Save saves a entity in the storage.
Save(context.Context, Entity) error
// Remove removes a entity by ID from the storage.
Remove(context.Context, uuid.UUID) error
}
// ReadWriteRepo is a combined read and write repo, mainly useful for testing.
type ReadWriteRepo interface {
ReadRepo
WriteRepo
}
// Iter is a stateful iterator object that when called Next() readies the next
// value that can be retrieved from Value(). Enables incremental object retrieval
// from repos that support it. You must call Close() on each Iter even when
// results were delivered without apparent error.
type Iter interface {
Next(context.Context) bool
Value() interface{}
// Close must be called after the last Next() to retrieve error if any
Close(context.Context) error
}
var (
// ErrEntityNotFound is when a entity could not be found.
ErrEntityNotFound = errors.New("could not find entity")
// ErrEntityHasNoVersion is when an entity has no version number.
ErrEntityHasNoVersion = errors.New("entity has no version")
// ErrIncorrectEntityVersion is when an entity has an incorrect version.
ErrIncorrectEntityVersion = errors.New("incorrect entity version")
)
// RepoOperation is the operation done when an error happened.
type RepoOperation string
const (
// Errors during finding of an entity.
RepoOpFind = "find"
// Errors during finding of all entities.
RepoOpFindAll = "find all"
// Errors during finding of entities by query.
RepoOpFindQuery = "find query"
// Errors during saving of an entity.
RepoOpSave = "save"
// Errors during removing of an entity.
RepoOpRemove = "remove"
// Errors during clearing of all entities.
RepoOpClear = "clear"
)
// RepoError is an error in the read repository.
type RepoError struct {
// Err is the error.
Err error
// Op is the operation for the error.
Op RepoOperation
// EntityID of related operation.
EntityID uuid.UUID
}
// Error implements the Error method of the errors.Error interface.
func (e *RepoError) Error() string {
str := "repo: "
if e.Op != "" {
str += string(e.Op) + ": "
}
if e.Err != nil {
str += e.Err.Error()
} else {
str += "unknown error"
}
if e.EntityID != uuid.Nil {
str += " " + e.EntityID.String() + " "
}
return str
}
// Unwrap implements the errors.Unwrap method.
func (e *RepoError) Unwrap() error {
return e.Err
}
// Cause implements the github.com/pkg/errors Unwrap method.
func (e *RepoError) Cause() error {
return e.Unwrap()
}