blob: 5720a6caf3e8418dff2d15c78cd4a87479bbba50 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 service
import (
"context"
"errors"
"github.com/apache/servicecomb-kie/pkg/model"
)
//services
var (
KVService KV
HistoryService History
RevisionService Revision
LabelService Label
DBInit Init
)
//db errors
var (
ErrKeyNotExists = errors.New("can not find any key value")
ErrRecordNotExists = errors.New("can not find any polling data")
ErrRevisionNotExist = errors.New("revision does not exist")
ErrAliasNotGiven = errors.New("label alias not given")
)
//KV provide api of KV entity
type KV interface {
//below 3 methods is usually for admin console
CreateOrUpdate(ctx context.Context, kv *model.KVDoc) (*model.KVDoc, error)
List(ctx context.Context, domain, project string, options ...FindOption) (*model.KVResponse, error)
Delete(ctx context.Context, kvID string, domain, project string) error
//FindKV is usually for service to pull configs
FindKV(ctx context.Context, domain, project string, options ...FindOption) ([]*model.KVResponse, error)
}
//History provide api of History entity
type History interface {
GetHistory(ctx context.Context, keyID string, options ...FindOption) ([]*model.KVDoc, int, error)
}
//Revision is global revision number management
type Revision interface {
GetRevision(ctx context.Context, domain string) (int64, error)
}
//Label manages labels data
type Label interface {
CreateOrUpdate(ctx context.Context, label *model.LabelDoc) (*model.LabelDoc, error)
}
//View create update and get view data
type View interface {
Create(ctx context.Context, viewDoc *model.ViewDoc, options ...FindOption) error
Update(ctx context.Context, viewDoc *model.ViewDoc) error
//TODO
List(ctx context.Context, domain, project string, options ...FindOption) ([]*model.ViewDoc, error)
GetCriteria(ctx context.Context, viewName, domain, project string) (map[string]map[string]string, error)
GetContent(ctx context.Context, id, domain, project string, options ...FindOption) ([]*model.KVResponse, error)
}
//Init init db session
type Init func() error