5 Commits

Author SHA1 Message Date
Adrian Zuercher
4221815def modify drivers 2025-07-29 12:37:04 +02:00
Adrian Zuercher
eabac1b11b modify and add new fields for drivers 2025-07-29 12:05:03 +02:00
Adrian Zuercher
2d6db85b8c remove rename and add has children to set 2025-07-25 17:47:38 +02:00
Adrian Zuercher
8e742ba1d3 add new paramter rename to set 2025-07-24 09:51:09 +02:00
Adrian Zuercher
2dc3baca3c add right to subscription 2025-07-15 20:17:21 +02:00
7 changed files with 160 additions and 34 deletions

36
models/bus.go Normal file
View File

@@ -0,0 +1,36 @@
package models
import "slices"
// bus model
type Bus struct {
Name string `json:"name,omitempty"`
Address []uint `json:"address,omitempty"` // address of bus
Topic *Topic `json:"topic,omitempty"` // address of bus
}
func (b *Bus) AddAddress(address ...uint) {
for _, a := range address {
if slices.Contains(b.Address, a) {
continue
}
b.Address = append(b.Address, a)
slices.Sort(b.Address)
}
}
func (b *Bus) AddSubscription(sub ...string) {
if b.Topic == nil {
b.Topic = &Topic{}
}
b.Topic.AddSubscription(sub...)
}
func (b *Bus) AddPublish(pub ...string) {
if b.Topic == nil {
b.Topic = &Topic{}
}
b.Topic.AddPublish(pub...)
}

43
models/driver.go Normal file
View File

@@ -0,0 +1,43 @@
package models
// driver model
type Driver struct {
Type string `json:"type"` // driver type name of driver in collection
Buses map[string]*Bus `json:"buses"` // name of driver bus
}
func (d *Driver) AddNewBus(name string) *Bus {
if d.Buses == nil {
d.Buses = make(map[string]*Bus)
}
if b, ok := d.Buses[name]; ok {
return b
}
d.Buses[name] = &Bus{Name: name}
return d.Buses[name]
}
func (d *Driver) AddBuses(buses map[string]*Bus) {
if d.Buses == nil {
d.Buses = make(map[string]*Bus)
}
for key, newBus := range buses {
if currentBus, ok := d.Buses[key]; ok {
currentBus.AddAddress(newBus.Address...)
if newBus.Topic == nil {
continue
}
currentBus.AddSubscription(newBus.Topic.Subscribe...)
currentBus.AddPublish(newBus.Topic.Publish...)
continue
}
d.Buses[key] = newBus
}
}
func (d *Driver) GetBus(name string) *Bus {
if b, ok := d.Buses[name]; ok {
return b
}
return nil
}

View File

@@ -3,23 +3,18 @@ package models
// collection of drivers ordered in map
type Drivers map[string]*Driver
// driver model
type Driver struct {
Type string `json:"type,omitempty"` // driver type name of driver in collection
Bus string `json:"bus"` // name of driver bus
Address uint `json:"address"` // address of bus
}
// returns a new collection of drivers
func NewDrivers() Drivers {
return make(Drivers)
}
// Add new driver to driver collection
// typ is the name of the driver in driver collection
func (d *Drivers) AddDriver(typ, bus string, address uint) {
(*d)[typ] = &Driver{
Bus: bus,
Address: address,
func (d *Drivers) AddNewDriver(typ string) *Driver {
if drv, ok := (*d)[typ]; ok {
return drv
}
(*d)[typ] = &Driver{Type: typ}
return (*d)[typ]
}
func (d *Drivers) AddDriver(drv Driver) {
if driver, ok := (*d)[drv.Type]; ok {
driver.AddBuses(drv.Buses)
(*d)[drv.Type] = driver
}
(*d)[drv.Type] = &drv
}

View File

@@ -10,7 +10,7 @@ type Get struct {
Drivers *Drivers `json:"drivers,omitempty"` // assigned drivers
Type Type `json:"type,omitempty"` // dbm datatype
Value any `json:"value,omitempty"` // dbm value
HasChild bool `json:"hasChild,omitempty"` // inidicates path has child/ren
HasChild bool `json:"hasChild,omitempty"` // inidicates path has children
Rights Rights `json:"rights,omitempty"` // dbm read /write rights
}

View File

@@ -12,6 +12,7 @@ type Set struct {
Value any `json:"value,omitempty"` // dbm value
Rights Rights `json:"rights,omitempty"` // dbm read /write rights
Create bool `json:"create,omitempty"` // dbm create new datapoint
HasChild bool `json:"hasChild,omitempty"` // inidicates path has children
Updated bool `json:"-"`
}
@@ -36,10 +37,31 @@ func (s *Set) New(path string, typ Type, value any, rights Rights) {
}
// sets new driver typ with bus and address
func (s *Set) NewDriver(typ, bus string, address uint) {
s.Driver = &Driver{
Type: typ,
Bus: bus,
Address: address,
func (s *Set) NewDriverAddress(typ, bus string, address uint) {
if s.Drivers == nil {
s.Drivers = &Drivers{}
}
drv := s.Drivers.AddNewDriver(typ)
b := drv.AddNewBus(bus)
b.AddAddress(address)
}
// sets new driver typ with bus and subscription
func (s *Set) NewDriverSubscribe(typ, bus string, sub string) {
if s.Drivers == nil {
s.Drivers = &Drivers{}
}
drv := s.Drivers.AddNewDriver(typ)
b := drv.AddNewBus(bus)
b.AddSubscription(sub)
}
// sets new driver typ with bus and publish
func (s *Set) NewDriverPublish(typ, bus string, pub string) {
if s.Drivers == nil {
s.Drivers = &Drivers{}
}
drv := s.Drivers.AddNewDriver(typ)
b := drv.AddNewBus(bus)
b.AddPublish(pub)
}

View File

@@ -8,7 +8,8 @@ type Subscription struct {
Path string `json:"path,omitempty"` // dbm path
Depth uint `json:"depth,omitempty"` // depth of subscriptions from found path or uuid
Value any `json:"value,omitempty"` // current value
HasChild bool `json:"hasChild,omitempty"` // inidicates path has child/ren
Rights Rights `json:"rights,omitempty"` // read /write rights
HasChild bool `json:"hasChild,omitempty"` // inidicates path has children
Drivers *Drivers `json:"drivers,omitempty"` // assigned drivers
Driver string `json:"driver,omitempty"` // driver type to assign this subscription
OnCreate bool `json:"onCreate,omitempty"` // notify at datapoint creation

29
models/topic.go Normal file
View File

@@ -0,0 +1,29 @@
package models
import "slices"
// topic model
type Topic struct {
Publish []string `json:"Publish,omitempty"`
Subscribe []string `json:"subscribe,omitempty"`
}
func (t *Topic) AddSubscription(subs ...string) {
for _, sub := range subs {
if slices.Contains(t.Subscribe, sub) {
continue
}
t.Subscribe = append(t.Subscribe, sub)
slices.Sort(t.Subscribe)
}
}
func (t *Topic) AddPublish(pubs ...string) {
for _, pub := range pubs {
if slices.Contains(t.Publish, pub) {
continue
}
t.Subscribe = append(t.Publish, pub)
slices.Sort(t.Publish)
}
}