-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Converts the given list of tags to floats and compares them based on the ordering rule. If a tag is not convertible, it will err and fail to compute the latest version. Fixes #102 Signed-off-by: Aurel Canciu <aurelcanciu@gmail.com>
- Loading branch information
Showing
7 changed files
with
134 additions
and
3 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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,79 @@ | ||
/* | ||
Copyright 2021 The Flux authors | ||
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 policy | ||
|
||
import ( | ||
"fmt" | ||
"strconv" | ||
) | ||
|
||
const ( | ||
// NumericalOrderAsc ascending order | ||
NumericalOrderAsc = "ASC" | ||
// NumericalOrderDesc descending order | ||
NumericalOrderDesc = "DESC" | ||
) | ||
|
||
// Numerical representes a Numerical ordering policy | ||
type Numerical struct { | ||
Order string | ||
} | ||
|
||
// NewNumerical constructs a Numerical object validating the provided | ||
// order argument | ||
func NewNumerical(order string) (*Numerical, error) { | ||
switch order { | ||
case "": | ||
order = NumericalOrderAsc | ||
case NumericalOrderAsc, NumericalOrderDesc: | ||
break | ||
default: | ||
return nil, fmt.Errorf("invalid order argument provided: '%s', must be one of: %s, %s", order, NumericalOrderAsc, NumericalOrderDesc) | ||
} | ||
|
||
return &Numerical{ | ||
Order: order, | ||
}, nil | ||
} | ||
|
||
// Latest returns latest version from a provided list of strings | ||
func (p *Numerical) Latest(versions []string) (string, error) { | ||
if len(versions) == 0 { | ||
return "", fmt.Errorf("version list argument cannot be empty") | ||
} | ||
|
||
var latest string | ||
var pv float64 | ||
for i, version := range versions { | ||
cv, err := strconv.ParseFloat(version, 64) | ||
if err != nil { | ||
return "", fmt.Errorf("failed to parse invalid numeric value '%s'", version) | ||
} | ||
|
||
switch { | ||
case i == 0: | ||
break // First iteration, nothing to compare | ||
case p.Order == NumericalOrderAsc && cv < pv, p.Order == NumericalOrderDesc && cv > pv: | ||
continue | ||
} | ||
|
||
latest = version | ||
pv = cv | ||
} | ||
|
||
return latest, nil | ||
} |