pkg/scheduler/objects/template/template.go (93 lines of code) (raw):
/*
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 template
import (
"github.com/apache/yunikorn-core/pkg/common/configs"
"github.com/apache/yunikorn-core/pkg/common/resources"
"github.com/apache/yunikorn-core/pkg/webservice/dao"
)
type Template struct {
maxApplications uint64
properties map[string]string
maxResource *resources.Resource
guaranteedResource *resources.Resource
}
// FromConf converts the configs.ChildTemplate to a Template.
// It returns error if it fails to parse configs.
// It returns nil value if the configs.ChildTemplate is empty
func FromConf(template *configs.ChildTemplate) (*Template, error) {
if template == nil || isChildTemplateEmpty(template) {
return nil, nil
}
maxResource, err := resources.NewResourceFromConf(template.Resources.Max)
if err != nil {
return nil, err
}
guaranteedResource, err := resources.NewResourceFromConf(template.Resources.Guaranteed)
if err != nil {
return nil, err
}
return newTemplate(template.MaxApplications, template.Properties, maxResource, guaranteedResource), nil
}
func isChildTemplateEmpty(template *configs.ChildTemplate) bool {
return template.MaxApplications == 0 &&
isMapEmpty(template.Properties) &&
isMapEmpty(template.Resources.Guaranteed) &&
isMapEmpty(template.Resources.Max)
}
// A non-empty list of empty property values is also empty
func isMapEmpty(m map[string]string) bool {
for k, v := range m {
if k != "" && v != "" {
return false
}
}
return true
}
func newTemplate(maxApplications uint64, properties map[string]string, maxResource *resources.Resource, guaranteedResource *resources.Resource) *Template {
template := &Template{
maxApplications: maxApplications,
properties: make(map[string]string),
maxResource: nil,
guaranteedResource: nil,
}
if resources.StrictlyGreaterThanZero(maxResource) {
template.maxResource = maxResource.Clone()
}
if resources.StrictlyGreaterThanZero(guaranteedResource) {
template.guaranteedResource = guaranteedResource.Clone()
}
for k, v := range properties {
if k != "" && v != "" {
template.properties[k] = v
}
}
return template
}
// GetMaxApplications returns max applications.
func (t *Template) GetMaxApplications() uint64 {
return t.maxApplications
}
// GetProperties returns a copy of properties. An empty map replaces the null value
func (t *Template) GetProperties() map[string]string {
props := make(map[string]string)
for k, v := range t.properties {
props[k] = v
}
return props
}
// GetMaxResource returns a copy of max resource. it can be null
func (t *Template) GetMaxResource() *resources.Resource {
if t == nil {
return nil
}
return t.maxResource.Clone()
}
// GetGuaranteedResource returns a copy of guaranteed resource. it can be null
func (t *Template) GetGuaranteedResource() *resources.Resource {
if t == nil {
return nil
}
return t.guaranteedResource.Clone()
}
// GetTemplateInfo converts this to a TemplateInfo
func (t *Template) GetTemplateInfo() *dao.TemplateInfo {
if t == nil {
return nil
}
return &dao.TemplateInfo{
MaxApplications: t.GetMaxApplications(),
Properties: t.GetProperties(),
MaxResource: t.maxResource.DAOMap(),
GuaranteedResource: t.guaranteedResource.DAOMap(),
}
}