mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-20 17:41:01 +08:00
158 lines
3.8 KiB
Go
158 lines
3.8 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package ucloud
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
|
|
api "yunion.io/x/onecloud/pkg/apis/compute"
|
|
"yunion.io/x/onecloud/pkg/cloudprovider"
|
|
"yunion.io/x/onecloud/pkg/multicloud"
|
|
)
|
|
|
|
type SStorage struct {
|
|
multicloud.SStorageBase
|
|
multicloud.UcloudTags
|
|
zone *SZone
|
|
storageType string
|
|
}
|
|
|
|
func (self *SStorage) GetId() string {
|
|
return fmt.Sprintf("%s-%s-%s", self.zone.region.client.cpcfg.Id, self.zone.GetId(), self.storageType)
|
|
}
|
|
|
|
func (self *SStorage) GetName() string {
|
|
return fmt.Sprintf("%s-%s-%s", self.zone.region.client.cpcfg.Name, self.zone.GetId(), self.storageType)
|
|
}
|
|
|
|
func (self *SStorage) GetGlobalId() string {
|
|
return fmt.Sprintf("%s-%s-%s", self.zone.region.client.cpcfg.Id, self.zone.GetGlobalId(), self.storageType)
|
|
}
|
|
|
|
func (self *SStorage) GetStatus() string {
|
|
return api.STORAGE_ONLINE
|
|
}
|
|
|
|
func (self *SStorage) Refresh() error {
|
|
return nil
|
|
}
|
|
|
|
func (self *SStorage) IsEmulated() bool {
|
|
return true
|
|
}
|
|
|
|
func (self *SStorage) GetIStoragecache() cloudprovider.ICloudStoragecache {
|
|
return self.zone.region.getStoragecache()
|
|
}
|
|
|
|
func (self *SStorage) GetIZone() cloudprovider.ICloudZone {
|
|
return self.zone
|
|
}
|
|
|
|
func (self *SStorage) GetIDisks() ([]cloudprovider.ICloudDisk, error) {
|
|
disks, err := self.zone.region.GetDisks(self.zone.GetId(), "", nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
filtedDisks := make([]SDisk, 0)
|
|
for _, disk := range disks {
|
|
// ssd 盘
|
|
if self.storageType == api.STORAGE_UCLOUD_CLOUD_SSD && strings.Contains(disk.DiskType, "SSD") {
|
|
filtedDisks = append(filtedDisks, disk)
|
|
}
|
|
|
|
// 普通盘
|
|
if self.storageType == api.STORAGE_UCLOUD_CLOUD_NORMAL && !strings.Contains(disk.DiskType, "SSD") {
|
|
filtedDisks = append(filtedDisks, disk)
|
|
}
|
|
}
|
|
|
|
idisks := make([]cloudprovider.ICloudDisk, len(filtedDisks))
|
|
for i := 0; i < len(filtedDisks); i += 1 {
|
|
filtedDisks[i].storage = self
|
|
idisks[i] = &filtedDisks[i]
|
|
}
|
|
return idisks, nil
|
|
}
|
|
|
|
func (self *SStorage) GetStorageType() string {
|
|
return self.storageType
|
|
}
|
|
|
|
func (self *SStorage) GetMediumType() string {
|
|
if self.storageType == api.STORAGE_UCLOUD_CLOUD_SSD {
|
|
return api.DISK_TYPE_SSD
|
|
} else {
|
|
return api.DISK_TYPE_ROTATE
|
|
}
|
|
}
|
|
|
|
func (self *SStorage) GetCapacityMB() int64 {
|
|
return 0 // unlimited
|
|
}
|
|
|
|
func (self *SStorage) GetCapacityUsedMB() int64 {
|
|
return 0
|
|
}
|
|
|
|
func (self *SStorage) GetStorageConf() jsonutils.JSONObject {
|
|
return jsonutils.NewDict()
|
|
}
|
|
|
|
func (self *SStorage) GetEnabled() bool {
|
|
return true
|
|
}
|
|
|
|
func (self *SStorage) CreateIDisk(conf *cloudprovider.DiskCreateConfig) (cloudprovider.ICloudDisk, error) {
|
|
diskType := "DataDisk"
|
|
switch self.storageType {
|
|
case api.STORAGE_UCLOUD_CLOUD_SSD:
|
|
diskType = "SSDDataDisk"
|
|
}
|
|
diskId, err := self.zone.region.CreateDisk(self.zone.GetId(), diskType, conf.Name, conf.SizeGb)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
disk, err := self.zone.region.GetDisk(diskId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
disk.storage = self
|
|
return disk, nil
|
|
}
|
|
|
|
func (self *SStorage) GetIDiskById(idStr string) (cloudprovider.ICloudDisk, error) {
|
|
if disk, err := self.zone.region.GetDisk(idStr); err != nil {
|
|
return nil, err
|
|
} else {
|
|
disk.storage = self
|
|
return disk, nil
|
|
}
|
|
}
|
|
|
|
func (self *SStorage) GetMountPoint() string {
|
|
return ""
|
|
}
|
|
|
|
func (self *SStorage) IsSysDiskStore() bool {
|
|
return true
|
|
}
|