2024-07-18 11:51:12 +02:00
|
|
|
package processing
|
|
|
|
|
|
|
|
import (
|
2024-07-18 14:39:54 +02:00
|
|
|
"encoding/json"
|
|
|
|
|
2024-07-18 13:35:14 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
2024-07-18 11:51:12 +02:00
|
|
|
)
|
|
|
|
|
2024-07-19 10:54:58 +02:00
|
|
|
type ProcessingResource struct {
|
2024-07-26 10:36:23 +02:00
|
|
|
utils.AbstractResource
|
2024-07-18 11:51:12 +02:00
|
|
|
CPUs uint `bson:"cp_us,omitempty" json:"cp_us,omitempty"`
|
|
|
|
GPUs uint `bson:"gp_us,omitempty" json:"gp_us,omitempty"`
|
|
|
|
RAM uint `bson:"ram,omitempty" json:"ram,omitempty"`
|
|
|
|
|
|
|
|
Parallel bool `bson:"parallel,omitempty" json:"parallel,omitempty"`
|
|
|
|
ScalingModel uint `bson:"scaling_model,omitempty" json:"scaling_model,omitempty"`
|
|
|
|
DiskIO string `bson:"disk_io,omitempty" json:"disk_io,omitempty"`
|
2024-07-26 08:27:09 +02:00
|
|
|
|
|
|
|
// Price uint `bson:"price,omitempty" json:"price,omitempty"`
|
|
|
|
// License string `bson:"license,omitempty" json:"license,omitempty"`
|
2024-07-18 11:51:12 +02:00
|
|
|
}
|
|
|
|
|
2024-07-19 10:54:58 +02:00
|
|
|
func (dma *ProcessingResource) Deserialize(j map[string]interface{}) utils.DBObject {
|
2024-07-18 14:39:54 +02:00
|
|
|
b, err := json.Marshal(j)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
json.Unmarshal(b, dma)
|
|
|
|
return dma
|
|
|
|
}
|
|
|
|
|
2024-07-19 10:54:58 +02:00
|
|
|
func (dma *ProcessingResource) Serialize() map[string]interface{} {
|
2024-07-19 09:32:58 +02:00
|
|
|
var m map[string]interface{}
|
|
|
|
b, err := json.Marshal(dma)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-07-24 09:53:30 +02:00
|
|
|
json.Unmarshal(b, &m)
|
2024-07-19 09:32:58 +02:00
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2024-07-19 10:54:58 +02:00
|
|
|
func (d *ProcessingResource) GetAccessor() utils.Accessor {
|
2024-07-18 15:02:39 +02:00
|
|
|
data := &ProcessingMongoAccessor{}
|
2024-07-19 10:54:58 +02:00
|
|
|
data.SetLogger(utils.PROCESSING_RESOURCE)
|
2024-07-18 11:51:12 +02:00
|
|
|
return data
|
|
|
|
}
|