| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- // 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 storagedrivers
- import (
- "context"
- "time"
- "yunion.io/x/jsonutils"
- "yunion.io/x/log"
- "yunion.io/x/pkg/util/timeutils"
- api "yunion.io/x/onecloud/pkg/apis/compute"
- "yunion.io/x/onecloud/pkg/cloudcommon/db"
- "yunion.io/x/onecloud/pkg/compute/models"
- "yunion.io/x/onecloud/pkg/compute/options"
- "yunion.io/x/onecloud/pkg/mcclient"
- )
- type SGpfsStorageDriver struct {
- SBaseStorageDriver
- }
- func init() {
- driver := SGpfsStorageDriver{}
- models.RegisterStorageDriver(&driver)
- }
- func (self *SGpfsStorageDriver) GetStorageType() string {
- return api.STORAGE_GPFS
- }
- func (self *SGpfsStorageDriver) ValidateCreateData(ctx context.Context, userCred mcclient.TokenCredential, input *api.StorageCreateInput) error {
- return nil
- }
- func (self *SGpfsStorageDriver) PostCreate(ctx context.Context, userCred mcclient.TokenCredential, storage *models.SStorage, data jsonutils.JSONObject) {
- sc := &models.SStoragecache{}
- sc.Path = options.Options.DefaultImageCacheDir
- sc.ExternalId = storage.Id
- timeutils.IsoTime(time.Now())
- sc.Name = "gpfs-" + storage.Name + timeutils.IsoTime(time.Now())
- if err := models.StoragecacheManager.TableSpec().Insert(ctx, sc); err != nil {
- log.Errorf("insert storagecache for storage %s error: %v", storage.Name, err)
- return
- }
- _, err := db.Update(storage, func() error {
- storage.StoragecacheId = sc.Id
- storage.Status = api.STORAGE_ONLINE
- return nil
- })
- if err != nil {
- log.Errorf("update storagecache info for storage %s error: %v", storage.Name, err)
- }
- }
|