mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
110 lines
2.6 KiB
Go
110 lines
2.6 KiB
Go
package simulationmodel
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.rwth-aachen.de/acs/public/villas/villasweb-backend-go/common"
|
|
"git.rwth-aachen.de/acs/public/villas/villasweb-backend-go/routes/scenario"
|
|
"git.rwth-aachen.de/acs/public/villas/villasweb-backend-go/routes/simulator"
|
|
)
|
|
|
|
type SimulationModel struct {
|
|
common.SimulationModel
|
|
}
|
|
|
|
func (m *SimulationModel) save() error {
|
|
db := common.GetDB()
|
|
err := db.Create(m).Error
|
|
return err
|
|
}
|
|
|
|
func (m *SimulationModel) ByID(id uint) error {
|
|
db := common.GetDB()
|
|
err := db.Find(m, id).Error
|
|
if err != nil {
|
|
return fmt.Errorf("Simulation Model with id=%v does not exist", id)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SimulationModel) addToScenario() error {
|
|
db := common.GetDB()
|
|
var so scenario.Scenario
|
|
err := so.ByID(m.ScenarioID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// save simulation model to DB
|
|
err = m.save()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// associate simulator with simulation model
|
|
var simltr simulator.Simulator
|
|
err = simltr.ByID(m.SimulatorID)
|
|
err = db.Model(&simltr).Association("SimulationModels").Append(m).Error
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// associate simulation model with scenario
|
|
err = db.Model(&so).Association("SimulationModels").Append(m).Error
|
|
|
|
return err
|
|
}
|
|
|
|
func (m *SimulationModel) Update(modifiedSimulationModel common.SimulationModelResponse) error {
|
|
db := common.GetDB()
|
|
|
|
if m.SimulatorID != modifiedSimulationModel.SimulatorID {
|
|
// update simulator
|
|
var s simulator.Simulator
|
|
var s_old simulator.Simulator
|
|
err := s.ByID(modifiedSimulationModel.SimulatorID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = s_old.ByID(m.SimulatorID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// remove simulation model from old simulator
|
|
err = db.Model(&s_old).Association("SimulationModels").Delete(m).Error
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// add simulation model to new simulator
|
|
err = db.Model(&s).Association("SimulationModels").Append(m).Error
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
err := db.Model(m).Updates(map[string]interface{}{
|
|
"Name": modifiedSimulationModel.Name,
|
|
"OutputLength": modifiedSimulationModel.OutputLength,
|
|
"InputLength": modifiedSimulationModel.InputLength,
|
|
"StartParameters": modifiedSimulationModel.StartParameters,
|
|
"SimulatorID": modifiedSimulationModel.SimulatorID,
|
|
}).Error
|
|
|
|
return err
|
|
}
|
|
|
|
func (m *SimulationModel) delete() error {
|
|
|
|
db := common.GetDB()
|
|
var so scenario.Scenario
|
|
err := so.ByID(m.ScenarioID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// remove association between SimulationModel and Scenario
|
|
// SimulationModel itself is not deleted from DB, it remains as "dangling"
|
|
err = db.Model(&so).Association("SimulationModels").Delete(m).Error
|
|
|
|
return err
|
|
}
|