本文整理匯總了Golang中github.com/bitrise-io/stepman/models.StepModel.FillMissingDeafults方法的典型用法代碼示例。如果您正苦於以下問題:Golang StepModel.FillMissingDeafults方法的具體用法?Golang StepModel.FillMissingDeafults怎麽用?Golang StepModel.FillMissingDeafults使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/bitrise-io/stepman/models.StepModel
的用法示例。
在下文中一共展示了StepModel.FillMissingDeafults方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: ReadSpecStep
// ReadSpecStep ...
func ReadSpecStep(pth string) (stepmanModels.StepModel, error) {
if isExists, err := pathutil.IsPathExists(pth); err != nil {
return stepmanModels.StepModel{}, err
} else if !isExists {
return stepmanModels.StepModel{}, errors.New(fmt.Sprint("No file found at path", pth))
}
bytes, err := ioutil.ReadFile(pth)
if err != nil {
return stepmanModels.StepModel{}, err
}
var stepModel stepmanModels.StepModel
if err := yaml.Unmarshal(bytes, &stepModel); err != nil {
return stepmanModels.StepModel{}, err
}
if err := stepModel.Normalize(); err != nil {
return stepmanModels.StepModel{}, err
}
if err := stepModel.Validate(); err != nil {
return stepmanModels.StepModel{}, err
}
if err := stepModel.FillMissingDeafults(); err != nil {
return stepmanModels.StepModel{}, err
}
return stepModel, nil
}
示例2: MergeStepWith
// MergeStepWith ...
func MergeStepWith(step, otherStep stepmanModels.StepModel) (stepmanModels.StepModel, error) {
if err := step.FillMissingDeafults(); err != nil {
return stepmanModels.StepModel{}, err
}
if otherStep.Title != nil {
*step.Title = *otherStep.Title
}
if otherStep.Description != nil {
*step.Description = *otherStep.Description
}
if otherStep.Summary != nil {
*step.Summary = *otherStep.Summary
}
if otherStep.Website != nil {
*step.Website = *otherStep.Website
}
if otherStep.SourceCodeURL != nil {
*step.SourceCodeURL = *otherStep.SourceCodeURL
}
if otherStep.SupportURL != nil {
*step.SupportURL = *otherStep.SupportURL
}
if otherStep.Source.Git != nil {
*step.Source.Git = *otherStep.Source.Git
}
if len(otherStep.HostOsTags) > 0 {
step.HostOsTags = otherStep.HostOsTags
}
if len(otherStep.ProjectTypeTags) > 0 {
step.ProjectTypeTags = otherStep.ProjectTypeTags
}
if len(otherStep.TypeTags) > 0 {
step.TypeTags = otherStep.TypeTags
}
if otherStep.IsRequiresAdminUser != nil {
*step.IsRequiresAdminUser = *otherStep.IsRequiresAdminUser
}
if otherStep.IsAlwaysRun != nil {
*step.IsAlwaysRun = *otherStep.IsAlwaysRun
}
if otherStep.IsSkippable != nil {
*step.IsSkippable = *otherStep.IsSkippable
}
if otherStep.RunIf != nil {
*step.RunIf = *otherStep.RunIf
}
for _, input := range step.Inputs {
key, _, err := input.GetKeyValuePair()
if err != nil {
return stepmanModels.StepModel{}, err
}
otherInput, found := getInputByKey(otherStep, key)
if found {
err := MergeEnvironmentWith(&input, otherInput)
if err != nil {
return stepmanModels.StepModel{}, err
}
}
}
for _, output := range step.Outputs {
key, _, err := output.GetKeyValuePair()
if err != nil {
return stepmanModels.StepModel{}, err
}
otherOutput, found := getOutputByKey(otherStep, key)
if found {
err := MergeEnvironmentWith(&output, otherOutput)
if err != nil {
return stepmanModels.StepModel{}, err
}
}
}
return step, nil
}