-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathversion.go
50 lines (44 loc) · 1.8 KB
/
version.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package gorums
import "github.com/relab/gorums/internal/version"
const (
// MaxVersion is the maximum supported version for generated .pb.go files.
// It is always the current version of the module.
MaxVersion = version.Minor
// GenVersion is the runtime version required by generated .pb.go files.
// This is incremented when generated code relies on new functionality
// in the runtime.
GenVersion = 7
// MinVersion is the minimum supported version for generated .pb.go files.
// This is incremented when the runtime drops support for old code.
MinVersion = 7
)
// EnforceVersion is used by code generated by protoc-gen-gorums
// to statically enforce minimum and maximum versions of this package.
// A compilation failure implies either that:
// * the runtime package is too old and needs to be updated OR
// * the generated code is too old and needs to be regenerated.
//
// The runtime package can be upgraded by running:
// go get github.com/relab/gorums
//
// The generated code can be regenerated by running:
// protoc --gorums_out=${PROTOC_GEN_GORUMS_ARGS} ${PROTO_FILES}
//
// Example usage by generated code:
// const (
// // Verify that this generated code is sufficiently up-to-date.
// _ = gorums.EnforceVersion(genVersion - gorums.MinVersion)
// // Verify that runtime/protoimpl is sufficiently up-to-date.
// _ = gorums.EnforceVersion(gorums.MaxVersion - genVersion)
// )
//
// The genVersion is the current minor version used to generated the code.
// This compile-time check relies on negative integer overflow of a uint
// being a compilation failure (guaranteed by the Go specification).
type EnforceVersion uint
// This enforces the following invariant:
// MinVersion ≤ GenVersion ≤ MaxVersion
const (
_ = EnforceVersion(GenVersion - MinVersion)
_ = EnforceVersion(MaxVersion - GenVersion)
)