| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- // 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 storageman
- import (
- "context"
- "fmt"
- "path"
- "yunion.io/x/jsonutils"
- "yunion.io/x/log"
- "yunion.io/x/pkg/errors"
- "yunion.io/x/onecloud/pkg/apis"
- "yunion.io/x/onecloud/pkg/hostman/hostutils"
- modules "yunion.io/x/onecloud/pkg/mcclient/modules/compute"
- )
- type INasStorage interface {
- newDisk(diskId string) IDisk
- StorageType() string
- }
- type SNasStorage struct {
- SLocalStorage
- ins INasStorage
- }
- func NewNasStorage(manager *SStorageManager, path string, ins INasStorage) *SNasStorage {
- ret := &SNasStorage{*NewLocalStorage(manager, path, 0), ins}
- return ret
- }
- func (s *SNasStorage) GetComposedName() string {
- return fmt.Sprintf("host_%s_%s_storage_%d", s.Manager.host.GetMasterIp(), s.ins.StorageType(), s.Index)
- }
- func (s *SNasStorage) GetSnapshotDir() string {
- return path.Join(s.Path, _SNAPSHOT_PATH_)
- }
- func (s *SNasStorage) CreateDisk(diskId string) IDisk {
- s.DiskLock.Lock()
- defer s.DiskLock.Unlock()
- disk := s.ins.newDisk(diskId)
- s.Disks = append(s.Disks, disk)
- return disk
- }
- func (s *SNasStorage) GetDiskById(diskId string) (IDisk, error) {
- s.DiskLock.Lock()
- defer s.DiskLock.Unlock()
- for i := 0; i < len(s.Disks); i++ {
- if s.Disks[i].GetId() == diskId {
- return s.Disks[i], s.Disks[i].Probe()
- }
- }
- var disk = s.ins.newDisk(diskId)
- if disk.Probe() == nil {
- s.Disks = append(s.Disks, disk)
- return disk, nil
- }
- return nil, errors.ErrNotFound
- }
- func (s *SNasStorage) SyncStorageInfo() (jsonutils.JSONObject, error) {
- if len(s.StorageId) == 0 {
- return nil, fmt.Errorf("Sync nfs storage without storage id")
- }
- content := jsonutils.NewDict()
- content.Set("capacity", jsonutils.NewInt(int64(s.GetAvailSizeMb())))
- content.Set("storage_type", jsonutils.NewString(s.ins.StorageType()))
- content.Set("zone", jsonutils.NewString(s.GetZoneId()))
- log.Infof("Sync storage info %s", s.StorageId)
- res, err := modules.Storages.Put(
- hostutils.GetComputeSession(context.Background()),
- s.StorageId, content)
- if err != nil {
- log.Errorf("SyncStorageInfo Failed: %s: %s", content, err)
- }
- return res, err
- }
- func (s *SNasStorage) CreateDiskFromSnapshot(ctx context.Context, disk IDisk, input *SDiskCreateByDiskinfo) (jsonutils.JSONObject, error) {
- info := input.DiskInfo
- var encryptInfo *apis.SEncryptInfo
- if info.Encryption {
- encryptInfo = &info.EncryptInfo
- }
- return disk.CreateFromSnapshotLocation(ctx, input.DiskInfo.SnapshotUrl, int64(input.DiskInfo.DiskSizeMb), encryptInfo)
- }
|