blob: bc924b803e5575d85abdb0f501f71410462ef7d6 [file] [log] [blame]
// Copyright 2020 Google LLC
//
// 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
//
// https://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
package wire
import (
"strconv"
"strings"
)
type version struct {
Major string
Minor string
}
// parseVersion attempts to parse the pubsublite library version in the format:
// "1.2.3".
func parseVersion(value string) (v version, ok bool) {
components := strings.Split(value, ".")
if len(components) >= 2 {
if _, err := strconv.ParseInt(components[0], 10, 32); err != nil {
return
}
if _, err := strconv.ParseInt(components[1], 10, 32); err != nil {
return
}
v = version{Major: components[0], Minor: components[1]}
ok = true
}
return
}