2024-07-18 11:51:12 +02:00
|
|
|
package processing
|
|
|
|
|
|
|
|
import (
|
2024-07-18 14:39:54 +02:00
|
|
|
"encoding/json"
|
|
|
|
|
2024-07-30 12:08:13 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/models/resource_model"
|
2024-11-07 11:05:24 +01:00
|
|
|
"cloud.o-forge.io/core/oc-lib/models/resources/compute"
|
2024-07-18 13:35:14 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/models/utils"
|
2024-08-12 16:11:25 +02:00
|
|
|
"cloud.o-forge.io/core/oc-lib/tools"
|
2024-07-18 11:51:12 +02:00
|
|
|
)
|
|
|
|
|
2024-09-26 15:52:35 +02:00
|
|
|
type Container struct {
|
2024-10-01 09:36:31 +02:00
|
|
|
Image string `json:"image,omitempty" bson:"image,omitempty"` // Image is the container image
|
|
|
|
Command string `json:"command,omitempty" bson:"command,omitempty"` // Command is the container command
|
|
|
|
Args string `json:"args,omitempty" bson:"args,omitempty"` // Args is the container arguments
|
|
|
|
Env map[string]string `json:"env,omitempty" bson:"env,omitempty"` // Env is the container environment variables
|
2024-10-01 10:17:22 +02:00
|
|
|
Volumes map[string]string `json:"volumes,omitempty" bson:"volumes,omitempty"` // Volumes is the container volumes
|
2024-09-26 15:52:35 +02:00
|
|
|
}
|
|
|
|
|
2024-10-01 10:14:05 +02:00
|
|
|
type Expose struct {
|
2024-09-27 11:45:36 +02:00
|
|
|
Port int `json:"port,omitempty" bson:"port,omitempty"` // Port is the port
|
|
|
|
Reverse string `json:"reverse,omitempty" bson:"reverse,omitempty"` // Reverse is the reverse
|
|
|
|
PAT int `json:"pat,omitempty" bson:"pat,omitempty"` // PAT is the PAT
|
|
|
|
}
|
|
|
|
|
2024-08-30 14:50:48 +02:00
|
|
|
/*
|
|
|
|
* ProcessingResource is a struct that represents a processing resource
|
|
|
|
* it defines the resource processing
|
|
|
|
*/
|
2024-07-19 10:54:58 +02:00
|
|
|
type ProcessingResource struct {
|
2024-07-30 12:08:13 +02:00
|
|
|
resource_model.AbstractResource
|
2024-11-07 11:11:33 +01:00
|
|
|
IsService bool `json:"is_service,omitempty" bson:"is_service,omitempty"` // IsService is a flag that indicates if the processing is a service
|
2024-11-07 11:05:24 +01:00
|
|
|
CPUs []*compute.CPU `bson:"cpus,omitempty" json:"cp_us,omitempty"` // CPUs is the list of CPUs
|
|
|
|
GPUs []*compute.GPU `bson:"gpus,omitempty" json:"gp_us,omitempty"` // GPUs is the list of GPUs
|
|
|
|
RAM *compute.RAM `bson:"ram,omitempty" json:"ram,omitempty"` // RAM is the RAM
|
2024-08-30 14:50:48 +02:00
|
|
|
Storage uint `bson:"storage,omitempty" json:"storage,omitempty"` // Storage is the storage
|
|
|
|
Parallel bool `bson:"parallel,omitempty" json:"parallel,omitempty"` // Parallel is a flag that indicates if the processing is parallel
|
|
|
|
ScalingModel uint `bson:"scaling_model,omitempty" json:"scaling_model,omitempty"` // ScalingModel is the scaling model
|
|
|
|
DiskIO string `bson:"disk_io,omitempty" json:"disk_io,omitempty"` // DiskIO is the disk IO
|
2024-10-01 09:15:26 +02:00
|
|
|
Container *Container `bson:"container,omitempty" json:"container,omitempty"` // Container is the container
|
2024-10-01 10:14:05 +02:00
|
|
|
Expose []Expose `bson:"expose,omitempty" json:"expose,omitempty"` // Expose is the execution
|
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-08-12 16:11:25 +02:00
|
|
|
func (d *ProcessingResource) GetAccessor(caller *tools.HTTPCaller) utils.Accessor {
|
2024-08-30 14:50:48 +02:00
|
|
|
data := New() // Create a new instance of the accessor
|
2024-10-02 11:35:22 +02:00
|
|
|
data.Init(tools.PROCESSING_RESOURCE, caller) // Initialize the accessor with the PROCESSING_RESOURCE model type
|
2024-07-18 11:51:12 +02:00
|
|
|
return data
|
|
|
|
}
|