forked from mondoohq/cnquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
featureflags.go
147 lines (123 loc) · 4.13 KB
/
featureflags.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
51
52
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// Copyright (c) Mondoo, Inc.
// SPDX-License-Identifier: BUSL-1.1
//
// In this file we introduce feature flags. They help us activate optional
// features on requests.
//
// Features can only be activated, never deactivated. Features are efficiently encoded.
// They are introduced at a given version and destined to be removed at a later version.
// Please mark them accordingly. Feature flags are short term contextual information.
//
// Example usage:
//
// features := []Feature{ MassResolver, LiveQueries }
//
// features.IsActive( MassResolver ) // true
//
package cnquery
//go:generate go run golang.org/x/tools/cmd/stringer -type=Feature
import (
"bytes"
"context"
"encoding/base64"
)
const (
// For all features, use this format:
// desc: A description of this feature and what it does...
// start: vX.x (the version when it is introduced)
// end: vZ.0 (the version when this flag will be removed)
// Feature flags:
// MassQueries feature flag
// desc: Resolve similar queries the same way. If 100 assets have the same
// dependent queries and overrides, they create the same resolved
// plan. Cannot be used with old resolver at the same time for asset.
// start: v3.x, available at v4.x, default at v5.x
// end: v6.0 => default now, no need to set it anymore
MassQueries Feature = iota + 1
// PiperCode feature flag
// desc: Allows MQL to use variable references across blocks. Fully changes
// the compiled code.
// start: v5.x
// end: v7.0 => default now, no need to set it anymore
PiperCode
// BoolAssertions feature flag
// desc: Only boolean results are checked when evaluating a query for success
//
// start: v6.x
// end: v8.0
BoolAssertions
// K8sNodeDiscovery feature flag
// desc: Enables discovery of Kubernetes cluster nodes as individual assets
//
// start: v6.12
// end: unknown
K8sNodeDiscovery
// MQLAssetContext feature flag
//
// start: v7.0
// updated: v11.0 We default to embed flags and re-use this feature for actual asset context
// end: v12.0
MQLAssetContext
// ErrorsAsFailures feature flag
// desc: Errors are treated as failures
// See https://www.notion.so/mondoo/Errors-and-Scoring-5dc554348aad4118a1dbf35123368329
// start: v8.x
// end: v9.0
ErrorsAsFailures
// StoreResourcesData feature flag
// desc: Stores recording-like data with upstream
// start: v10.x
// end: tbd (candidate: v11.0)
StoreResourcesData
// FineGrainedAssets feature flag
// desc: Enables fine-grained assets discovery
// start: v11.x
// end: tbd (candidate: v12.0)
FineGrainedAssets
)
// FeaturesValue is a map from feature name to feature flag
var FeaturesValue = map[string]Feature{
MassQueries.String(): MassQueries,
PiperCode.String(): PiperCode,
BoolAssertions.String(): BoolAssertions,
MQLAssetContext.String(): MQLAssetContext,
ErrorsAsFailures.String(): ErrorsAsFailures,
StoreResourcesData.String(): StoreResourcesData,
FineGrainedAssets.String(): FineGrainedAssets,
}
// DefaultFeatures are a set of default flags that are active
var DefaultFeatures = Features{
byte(MassQueries),
byte(PiperCode),
}
// Features is a collection of activated features
type Features []byte
// Feature is a simple feature flag
type Feature byte
// IsActive returns true if the given feature has been requested in this list
func (f Features) IsActive(feature Feature) bool {
return bytes.IndexByte(f, byte(feature)) != -1
}
// Encode a set of features to base64
func (f Features) Encode() string {
return base64.StdEncoding.EncodeToString(f)
}
// DecodeFeatures that were previously encoded
func DecodeFeatures(s string) (Features, error) {
data, err := base64.StdEncoding.DecodeString(s)
return Features(data), err
}
type featureContextID struct{}
// SetFeatures to a given context
func SetFeatures(ctx context.Context, fts Features) context.Context {
return context.WithValue(ctx, featureContextID{}, fts)
}
// GetFeatures from a given context
func GetFeatures(ctx context.Context) Features {
f, ok := ctx.Value(featureContextID{}).(Features)
if !ok {
// nothing stored, assume empty features
return Features{}
}
return f
}