mirror of
https://github.com/tim-beatham/smegmesh.git
synced 2025-02-14 00:09:16 +01:00
main
Fixed problems with timestamp not updating
This commit is contained in:
parent
0d63cd6624
commit
06542da03c
@ -55,7 +55,7 @@ func (c *CrdtMeshManager) GetMesh() (mesh.MeshSnapshot, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if c.cache == nil || len(changes) > 3 {
|
if c.cache == nil || len(changes) > 0 {
|
||||||
c.lastCacheHash = c.LastHash
|
c.lastCacheHash = c.LastHash
|
||||||
cache, err := automerge.As[*MeshCrdt](c.doc.Root())
|
cache, err := automerge.As[*MeshCrdt](c.doc.Root())
|
||||||
|
|
||||||
@ -113,7 +113,7 @@ func NewCrdtNodeManager(params *NewCrdtNodeMangerParams) (*CrdtMeshManager, erro
|
|||||||
// NodeExists: returns true if the node exists. Returns false
|
// NodeExists: returns true if the node exists. Returns false
|
||||||
func (m *CrdtMeshManager) NodeExists(key string) bool {
|
func (m *CrdtMeshManager) NodeExists(key string) bool {
|
||||||
node, err := m.doc.Path("nodes").Map().Get(key)
|
node, err := m.doc.Path("nodes").Map().Get(key)
|
||||||
return node.Kind() == automerge.KindMap && err != nil
|
return node.Kind() == automerge.KindMap && err == nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *CrdtMeshManager) GetNode(endpoint string) (mesh.MeshNode, error) {
|
func (m *CrdtMeshManager) GetNode(endpoint string) (mesh.MeshNode, error) {
|
||||||
|
@ -53,8 +53,6 @@ type WgMeshConfiguration struct {
|
|||||||
Profile bool `yaml:"profile"`
|
Profile bool `yaml:"profile"`
|
||||||
// StubWg whether or not to stub the WireGuard types
|
// StubWg whether or not to stub the WireGuard types
|
||||||
StubWg bool `yaml:"stubWg"`
|
StubWg bool `yaml:"stubWg"`
|
||||||
// What8Words file path for the what 8 words word list.
|
|
||||||
What8Words string `yaml:"what8Words"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func ValidateConfiguration(c *WgMeshConfiguration) error {
|
func ValidateConfiguration(c *WgMeshConfiguration) error {
|
||||||
|
@ -338,6 +338,10 @@ func (s *MeshManagerImpl) GetSelf(meshId string) (MeshNode, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (s *MeshManagerImpl) ApplyConfig() error {
|
func (s *MeshManagerImpl) ApplyConfig() error {
|
||||||
|
if s.conf.StubWg {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
err := s.configApplyer.ApplyConfig()
|
err := s.configApplyer.ApplyConfig()
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -201,8 +201,8 @@ func TestSetDescription(t *testing.T) {
|
|||||||
manager := getMeshManager()
|
manager := getMeshManager()
|
||||||
description := "wooooo"
|
description := "wooooo"
|
||||||
|
|
||||||
meshId1, _ := manager.CreateMesh("wg0", 5000)
|
meshId1, _ := manager.CreateMesh(5000)
|
||||||
meshId2, _ := manager.CreateMesh("wg0", 5001)
|
meshId2, _ := manager.CreateMesh(5001)
|
||||||
|
|
||||||
manager.AddSelf(&AddSelfParams{
|
manager.AddSelf(&AddSelfParams{
|
||||||
MeshId: meshId1,
|
MeshId: meshId1,
|
||||||
@ -225,8 +225,8 @@ func TestSetDescription(t *testing.T) {
|
|||||||
func TestUpdateTimeStampUpdatesAllMeshes(t *testing.T) {
|
func TestUpdateTimeStampUpdatesAllMeshes(t *testing.T) {
|
||||||
manager := getMeshManager()
|
manager := getMeshManager()
|
||||||
|
|
||||||
meshId1, _ := manager.CreateMesh("wg0", 5000)
|
meshId1, _ := manager.CreateMesh(5000)
|
||||||
meshId2, _ := manager.CreateMesh("wg0", 5001)
|
meshId2, _ := manager.CreateMesh(5001)
|
||||||
|
|
||||||
manager.AddSelf(&AddSelfParams{
|
manager.AddSelf(&AddSelfParams{
|
||||||
MeshId: meshId1,
|
MeshId: meshId1,
|
||||||
|
@ -5,20 +5,6 @@ import (
|
|||||||
"github.com/tim-beatham/wgmesh/pkg/lib"
|
"github.com/tim-beatham/wgmesh/pkg/lib"
|
||||||
)
|
)
|
||||||
|
|
||||||
// SyncScheduler: Loops through all nodes in the mesh and runs a schedule to
|
|
||||||
// sync each event
|
|
||||||
type SyncScheduler interface {
|
|
||||||
Run() error
|
|
||||||
Stop() error
|
|
||||||
}
|
|
||||||
|
|
||||||
// SyncSchedulerImpl scheduler for sync scheduling
|
|
||||||
type SyncSchedulerImpl struct {
|
|
||||||
quit chan struct{}
|
|
||||||
server *ctrlserver.MeshCtrlServer
|
|
||||||
syncer Syncer
|
|
||||||
}
|
|
||||||
|
|
||||||
// Run implements SyncScheduler.
|
// Run implements SyncScheduler.
|
||||||
func syncFunction(syncer Syncer) lib.TimerFunc {
|
func syncFunction(syncer Syncer) lib.TimerFunc {
|
||||||
return func() error {
|
return func() error {
|
||||||
|
@ -64,11 +64,11 @@ func (s *SyncServiceImpl) SyncMesh(stream rpc.SyncService_SyncMeshServer) error
|
|||||||
|
|
||||||
syncer = mesh.GetSyncer()
|
syncer = mesh.GetSyncer()
|
||||||
} else if meshId != in.MeshId {
|
} else if meshId != in.MeshId {
|
||||||
return errors.New("Differing MeshIDs")
|
return errors.New("differing meshids")
|
||||||
}
|
}
|
||||||
|
|
||||||
if syncer == nil {
|
if syncer == nil {
|
||||||
return errors.New("Syncer should not be nil")
|
return errors.New("syncer should not be nil")
|
||||||
}
|
}
|
||||||
|
|
||||||
msg, moreMessages := syncer.GenerateMessage()
|
msg, moreMessages := syncer.GenerateMessage()
|
||||||
|
@ -2,8 +2,8 @@ package wg
|
|||||||
|
|
||||||
type WgInterfaceManipulatorStub struct{}
|
type WgInterfaceManipulatorStub struct{}
|
||||||
|
|
||||||
func (i *WgInterfaceManipulatorStub) CreateInterface(port int) error {
|
func (i *WgInterfaceManipulatorStub) CreateInterface(port int) (string, error) {
|
||||||
return nil
|
return "", nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *WgInterfaceManipulatorStub) AddAddress(ifName string, addr string) error {
|
func (i *WgInterfaceManipulatorStub) AddAddress(ifName string, addr string) error {
|
||||||
|
Loading…
Reference in New Issue
Block a user