-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://jira.hyperledger.org/browse/FAB-2262 The configtx manager.go file has gotten large and unweildly. As preparation for supporting partial updates, and to facilitate the development of tests, this CR simply splits the manager.go file into manager.go, update.go, and config.go. This CR contains no functional changes. Change-Id: I21db6dee4ed5cf8819050ee8c04cbe123b76040c Signed-off-by: Jason Yellick <jyellick@us.ibm.com>
- Loading branch information
Jason Yellick
committed
Feb 17, 2017
1 parent
9381acb
commit 3b9cc55
Showing
3 changed files
with
275 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
/* | ||
Copyright IBM Corp. 2016-2017 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 configtx | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/hyperledger/fabric/common/configtx/api" | ||
cb "github.com/hyperledger/fabric/protos/common" | ||
) | ||
|
||
type configResult struct { | ||
handler api.Transactional | ||
subResults []*configResult | ||
} | ||
|
||
func (cr *configResult) commit() { | ||
for _, subResult := range cr.subResults { | ||
subResult.commit() | ||
} | ||
cr.handler.CommitConfig() | ||
} | ||
|
||
func (cr *configResult) rollback() { | ||
for _, subResult := range cr.subResults { | ||
subResult.rollback() | ||
} | ||
cr.handler.RollbackConfig() | ||
} | ||
|
||
// proposeGroup proposes a group configuration with a given handler | ||
// it will in turn recursively call itself until all groups have been exhausted | ||
// at each call, it returns the handler that was passed in, plus any handlers returned | ||
// by recursive calls into proposeGroup | ||
func (cm *configManager) proposeGroup(name string, group *cb.ConfigGroup, handler api.Handler) (*configResult, error) { | ||
subGroups := make([]string, len(group.Groups)) | ||
i := 0 | ||
for subGroup := range group.Groups { | ||
subGroups[i] = subGroup | ||
i++ | ||
} | ||
|
||
logger.Debugf("Beginning new config for channel %s and group %s", cm.chainID, name) | ||
subHandlers, err := handler.BeginConfig(subGroups) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if len(subHandlers) != len(subGroups) { | ||
return nil, fmt.Errorf("Programming error, did not return as many handlers as groups %d vs %d", len(subHandlers), len(subGroups)) | ||
} | ||
|
||
result := &configResult{ | ||
handler: handler, | ||
subResults: make([]*configResult, 0, len(subGroups)), | ||
} | ||
|
||
for i, subGroup := range subGroups { | ||
subResult, err := cm.proposeGroup(name+"/"+subGroup, group.Groups[subGroup], subHandlers[i]) | ||
if err != nil { | ||
result.rollback() | ||
return nil, err | ||
} | ||
result.subResults = append(result.subResults, subResult) | ||
} | ||
|
||
for key, value := range group.Values { | ||
if err := handler.ProposeConfig(key, value); err != nil { | ||
result.rollback() | ||
return nil, err | ||
} | ||
} | ||
|
||
return result, nil | ||
} | ||
|
||
func (cm *configManager) proposePolicies(rootGroup *cb.ConfigGroup) (*configResult, error) { | ||
cm.initializer.PolicyHandler().BeginConfig(nil) // XXX temporary workaround until policy manager is adapted with sub-policies | ||
|
||
for key, policy := range rootGroup.Policies { | ||
logger.Debugf("Proposing policy: %s", key) | ||
if err := cm.initializer.PolicyHandler().ProposePolicy(key, []string{RootGroupKey}, policy); err != nil { | ||
cm.initializer.PolicyHandler().RollbackConfig() | ||
return nil, err | ||
} | ||
} | ||
|
||
return &configResult{handler: cm.initializer.PolicyHandler()}, nil | ||
} | ||
|
||
func (cm *configManager) processConfig(channelGroup *cb.ConfigGroup) (*configResult, error) { | ||
helperGroup := cb.NewConfigGroup() | ||
helperGroup.Groups[RootGroupKey] = channelGroup | ||
groupResult, err := cm.proposeGroup("", helperGroup, cm.initializer) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
policyResult, err := cm.proposePolicies(channelGroup) | ||
if err != nil { | ||
groupResult.rollback() | ||
return nil, err | ||
} | ||
policyResult.subResults = []*configResult{groupResult} | ||
|
||
return policyResult, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.