Skip to content

Commit

Permalink
WIP - Implement branchable collections
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewSisley committed Oct 28, 2024
1 parent a7a1669 commit b688548
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions internal/core/crdt/collection.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Copyright 2024 Democratized Data Foundation
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.

package crdt

import (
"context"

"github.com/sourcenetwork/defradb/internal/core"
)

type CollectionDelta struct {
Priority uint64
// todo: This is temporary pending a global collection id (link to ticket)
SchemaVersionID string
}

var _ core.Delta = (*CollectionDelta)(nil)
var _ core.ReplicatedData = (*CollectionDelta)(nil)

func (delta *CollectionDelta) IPLDSchemaBytes() []byte { //todo
return []byte(`
type CounterDelta struct {
docID Bytes
fieldName String
priority Int
nonce Int
schemaVersionID String
data Bytes
}`)
}

func (d *CollectionDelta) GetPriority() uint64 {
panic("todo")
}

func (d *CollectionDelta) SetPriority(uint64) {
panic("todo")
}

func (d *CollectionDelta) Merge(ctx context.Context, other core.Delta) error {
panic("todo")
}

0 comments on commit b688548

Please sign in to comment.