aboutsummaryrefslogtreecommitdiffstats
path: root/entity
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-02-11 09:51:32 +0100
committerMichael Muré <batolettre@gmail.com>2021-02-14 12:19:03 +0100
commit59e9981161acea461a3ef9d386f20e23e78d8433 (patch)
tree27f80e97049c106a1e20259c51fc6b4c87d0b716 /entity
parentef05c15f87468e0f4f1c688b0b9359cee2181c68 (diff)
downloadgit-bug-59e9981161acea461a3ef9d386f20e23e78d8433.tar.gz
entity: expose create and edit lamport clocks
Diffstat (limited to 'entity')
-rw-r--r--entity/dag/entity.go51
1 files changed, 38 insertions, 13 deletions
diff --git a/entity/dag/entity.go b/entity/dag/entity.go
index 3f4dfcb4..d92b386e 100644
--- a/entity/dag/entity.go
+++ b/entity/dag/entity.go
@@ -35,6 +35,12 @@ type Definition struct {
// Entity is a data structure stored in a chain of git objects, supporting actions like Push, Pull and Merge.
type Entity struct {
+ // A Lamport clock is a logical clock that allow to order event
+ // inside a distributed system.
+ // It must be the first field in this struct due to https://github.com/golang/go/issues/36606
+ createTime lamport.Time
+ editTime lamport.Time
+
Definition
// operations that are already stored in the repository
@@ -42,8 +48,6 @@ type Entity struct {
// operations not yet stored in the repository
staging []Operation
- // TODO: add here createTime and editTime
-
lastCommit repository.Hash
}
@@ -210,16 +214,26 @@ func read(def Definition, repo repository.ClockedRepo, ref string) (*Entity, err
// Now that we ordered the operationPacks, we have the order of the Operations
ops := make([]Operation, 0, opsCount)
+ var createTime lamport.Time
+ var editTime lamport.Time
for _, pack := range oppSlice {
for _, operation := range pack.Operations {
ops = append(ops, operation)
}
+ if pack.CreateTime > createTime {
+ createTime = pack.CreateTime
+ }
+ if pack.EditTime > editTime {
+ editTime = pack.EditTime
+ }
}
return &Entity{
Definition: def,
ops: ops,
lastCommit: rootHash,
+ createTime: createTime,
+ editTime: editTime,
}, nil
}
@@ -349,7 +363,8 @@ func (e *Entity) Commit(repo repository.ClockedRepo) error {
return fmt.Errorf("can't commit an entity with no pending operation")
}
- if err := e.Validate(); err != nil {
+ err := e.Validate()
+ if err != nil {
return errors.Wrapf(err, "can't commit a %s with invalid data", e.Definition.typename)
}
@@ -361,23 +376,23 @@ func (e *Entity) Commit(repo repository.ClockedRepo) error {
author = op.Author()
}
- editTime, err := repo.Increment(fmt.Sprintf(editClockPattern, e.namespace))
+ e.editTime, err = repo.Increment(fmt.Sprintf(editClockPattern, e.namespace))
if err != nil {
return err
}
- var creationTime lamport.Time
- if e.lastCommit == "" {
- creationTime, err = repo.Increment(fmt.Sprintf(creationClockPattern, e.namespace))
- if err != nil {
- return err
- }
- }
opp := &operationPack{
Author: author,
Operations: e.staging,
- CreateTime: creationTime,
- EditTime: editTime,
+ EditTime: e.editTime,
+ }
+
+ if e.lastCommit == "" {
+ e.createTime, err = repo.Increment(fmt.Sprintf(creationClockPattern, e.namespace))
+ if err != nil {
+ return err
+ }
+ opp.CreateTime = e.createTime
}
var commitHash repository.Hash
@@ -401,3 +416,13 @@ func (e *Entity) Commit(repo repository.ClockedRepo) error {
ref := fmt.Sprintf(refsPattern, e.namespace, e.Id().String())
return repo.UpdateRef(ref, commitHash)
}
+
+// CreateLamportTime return the Lamport time of creation
+func (e *Entity) CreateLamportTime() lamport.Time {
+ return e.createTime
+}
+
+// EditLamportTime return the Lamport time of the last edition
+func (e *Entity) EditLamportTime() lamport.Time {
+ return e.editTime
+}