3 Star 6 Fork 7

Gitee 极速下载/Hyperledger fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
controller.go 6.26 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. 2016 All Rights Reserved.
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 container
import (
"fmt"
"io"
"sync"
"golang.org/x/net/context"
"github.com/hyperledger/fabric/core/container/api"
"github.com/hyperledger/fabric/core/container/ccintf"
"github.com/hyperledger/fabric/core/container/dockercontroller"
"github.com/hyperledger/fabric/core/container/inproccontroller"
)
type refCountedLock struct {
refCount int
lock *sync.RWMutex
}
//VMController - manages VMs
// . abstract construction of different types of VMs (we only care about Docker for now)
// . manage lifecycle of VM (start with build, start, stop ...
// eventually probably need fine grained management)
type VMController struct {
sync.RWMutex
// Handlers for each chaincode
containerLocks map[string]*refCountedLock
}
//singleton...acess through NewVMController
var vmcontroller *VMController
//constants for supported containers
const (
DOCKER = "Docker"
SYSTEM = "System"
)
//NewVMController - creates/returns singleton
func init() {
vmcontroller = new(VMController)
vmcontroller.containerLocks = make(map[string]*refCountedLock)
}
func (vmc *VMController) newVM(typ string) api.VM {
var (
v api.VM
)
switch typ {
case DOCKER:
v = &dockercontroller.DockerVM{}
case SYSTEM:
v = &inproccontroller.InprocVM{}
default:
v = &dockercontroller.DockerVM{}
}
return v
}
func (vmc *VMController) lockContainer(id string) {
//get the container lock under global lock
vmcontroller.Lock()
var refLck *refCountedLock
var ok bool
if refLck, ok = vmcontroller.containerLocks[id]; !ok {
refLck = &refCountedLock{refCount: 1, lock: &sync.RWMutex{}}
vmcontroller.containerLocks[id] = refLck
} else {
refLck.refCount++
vmLogger.Debugf("refcount %d (%s)", refLck.refCount, id)
}
vmcontroller.Unlock()
vmLogger.Debugf("waiting for container(%s) lock", id)
refLck.lock.Lock()
vmLogger.Debugf("got container (%s) lock", id)
}
func (vmc *VMController) unlockContainer(id string) {
vmcontroller.Lock()
if refLck, ok := vmcontroller.containerLocks[id]; ok {
if refLck.refCount <= 0 {
panic("refcnt <= 0")
}
refLck.lock.Unlock()
if refLck.refCount--; refLck.refCount == 0 {
vmLogger.Debugf("container lock deleted(%s)", id)
delete(vmcontroller.containerLocks, id)
}
} else {
vmLogger.Debugf("no lock to unlock(%s)!!", id)
}
vmcontroller.Unlock()
}
//VMCReqIntf - all requests should implement this interface.
//The context should be passed and tested at each layer till we stop
//note that we'd stop on the first method on the stack that does not
//take context
type VMCReqIntf interface {
do(ctxt context.Context, v api.VM) VMCResp
getCCID() ccintf.CCID
}
//VMCResp - response from requests. resp field is a anon interface.
//It can hold any response. err should be tested first
type VMCResp struct {
Err error
Resp interface{}
}
//CreateImageReq - properties for creating an container image
type CreateImageReq struct {
ccintf.CCID
Reader io.Reader
Args []string
Env []string
}
func (bp CreateImageReq) do(ctxt context.Context, v api.VM) VMCResp {
var resp VMCResp
if err := v.Deploy(ctxt, bp.CCID, bp.Args, bp.Env, bp.Reader); err != nil {
resp = VMCResp{Err: err}
} else {
resp = VMCResp{}
}
return resp
}
func (bp CreateImageReq) getCCID() ccintf.CCID {
return bp.CCID
}
//StartImageReq - properties for starting a container.
type StartImageReq struct {
ccintf.CCID
Builder api.BuildSpecFactory
Args []string
Env []string
}
func (si StartImageReq) do(ctxt context.Context, v api.VM) VMCResp {
var resp VMCResp
if err := v.Start(ctxt, si.CCID, si.Args, si.Env, si.Builder); err != nil {
resp = VMCResp{Err: err}
} else {
resp = VMCResp{}
}
return resp
}
func (si StartImageReq) getCCID() ccintf.CCID {
return si.CCID
}
//StopImageReq - properties for stopping a container.
type StopImageReq struct {
ccintf.CCID
Timeout uint
//by default we will kill the container after stopping
Dontkill bool
//by default we will remove the container after killing
Dontremove bool
}
func (si StopImageReq) do(ctxt context.Context, v api.VM) VMCResp {
var resp VMCResp
if err := v.Stop(ctxt, si.CCID, si.Timeout, si.Dontkill, si.Dontremove); err != nil {
resp = VMCResp{Err: err}
} else {
resp = VMCResp{}
}
return resp
}
func (si StopImageReq) getCCID() ccintf.CCID {
return si.CCID
}
//DestroyImageReq - properties for stopping a container.
type DestroyImageReq struct {
ccintf.CCID
Timeout uint
Force bool
NoPrune bool
}
func (di DestroyImageReq) do(ctxt context.Context, v api.VM) VMCResp {
var resp VMCResp
if err := v.Destroy(ctxt, di.CCID, di.Force, di.NoPrune); err != nil {
resp = VMCResp{Err: err}
} else {
resp = VMCResp{}
}
return resp
}
func (di DestroyImageReq) getCCID() ccintf.CCID {
return di.CCID
}
//VMCProcess should be used as follows
// . construct a context
// . construct req of the right type (e.g., CreateImageReq)
// . call it in a go routine
// . process response in the go routing
//context can be cancelled. VMCProcess will try to cancel calling functions if it can
//For instance docker clients api's such as BuildImage are not cancelable.
//In all cases VMCProcess will wait for the called go routine to return
func VMCProcess(ctxt context.Context, vmtype string, req VMCReqIntf) (interface{}, error) {
v := vmcontroller.newVM(vmtype)
if v == nil {
return nil, fmt.Errorf("Unknown VM type %s", vmtype)
}
c := make(chan struct{})
var resp interface{}
go func() {
defer close(c)
id, err := v.GetVMName(req.getCCID())
if err != nil {
resp = VMCResp{Err: err}
return
}
vmcontroller.lockContainer(id)
resp = req.do(ctxt, v)
vmcontroller.unlockContainer(id)
}()
select {
case <-c:
return resp, nil
case <-ctxt.Done():
//TODO cancel req.do ... (needed) ?
<-c
return nil, ctxt.Err()
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/fabric.git
git@gitee.com:mirrors/fabric.git
mirrors
fabric
Hyperledger fabric
v1.0.0-alpha2

搜索帮助