version.go 1.7 KB
Newer Older
F
fatedier 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright 2016 fatedier, fatedier@gmail.com
//
// 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.

F
fatedier 已提交
15 16 17 18 19 20 21
package version

import (
	"strconv"
	"strings"
)

W
wuqing 已提交
22
var version string = "0.36.1"
F
fatedier 已提交
23 24 25 26 27

func Full() string {
	return version
}

X
xiaox0321 已提交
28
func getSubVersion(v string, position int) int64 {
F
fatedier 已提交
29
	arr := strings.Split(v, ".")
F
fatedier 已提交
30
	if len(arr) < 3 {
F
fatedier 已提交
31 32
		return 0
	}
X
xiaox0321 已提交
33
	res, _ := strconv.ParseInt(arr[position], 10, 64)
F
fatedier 已提交
34 35 36
	return res
}

X
xiaox0321 已提交
37 38 39 40
func Proto(v string) int64 {
	return getSubVersion(v, 0)
}

F
fatedier 已提交
41
func Major(v string) int64 {
X
xiaox0321 已提交
42
	return getSubVersion(v, 1)
F
fatedier 已提交
43 44 45
}

func Minor(v string) int64 {
X
xiaox0321 已提交
46
	return getSubVersion(v, 2)
F
fatedier 已提交
47 48 49
}

// add every case there if server will not accept client's protocol and return false
F
fatedier 已提交
50
func Compat(client string) (ok bool, msg string) {
F
fatedier 已提交
51 52
	if LessThan(client, "0.18.0") {
		return false, "Please upgrade your frpc version to at least 0.18.0"
F
fatedier 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
	}
	return true, ""
}

func LessThan(client string, server string) bool {
	vc := Proto(client)
	vs := Proto(server)
	if vc > vs {
		return false
	} else if vc < vs {
		return true
	}

	vc = Major(client)
	vs = Major(server)
	if vc > vs {
		return false
	} else if vc < vs {
		return true
	}

	vc = Minor(client)
	vs = Minor(server)
	if vc > vs {
		return false
	} else if vc < vs {
		return true
	}
	return false
F
fatedier 已提交
82
}