blob: 4cc75b5757426936dfd6dafbb35ac33930f15cde [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You 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 bufimagemodify
import (
"context"
)
import (
"go.uber.org/zap"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/descriptorpb"
)
import (
"github.com/apache/dubbo-kubernetes/pkg/bufman/bufpkg/bufimage"
)
// CcEnableArenasID is the ID of the cc_enable_arenas modifier.
const CcEnableArenasID = "CC_ENABLE_ARENAS"
// ccEnableArenas is the SourceCodeInfo path for the cc_enable_arenas option.
// https://github.com/protocolbuffers/protobuf/blob/29152fbc064921ca982d64a3a9eae1daa8f979bb/src/google/protobuf/descriptor.proto#L420
var ccEnableArenasPath = []int32{8, 31}
func ccEnableArenas(
logger *zap.Logger,
sweeper Sweeper,
value bool,
overrides map[string]bool,
) Modifier {
return ModifierFunc(
func(ctx context.Context, image bufimage.Image) error {
seenOverrideFiles := make(map[string]struct{}, len(overrides))
for _, imageFile := range image.Files() {
modifierValue := value
if overrideValue, ok := overrides[imageFile.Path()]; ok {
modifierValue = overrideValue
seenOverrideFiles[imageFile.Path()] = struct{}{}
}
if err := ccEnableArenasForFile(ctx, sweeper, imageFile, modifierValue); err != nil {
return err
}
}
for overrideFile := range overrides {
if _, ok := seenOverrideFiles[overrideFile]; !ok {
logger.Sugar().Warnf("%s override for %q was unused", CcEnableArenasID, overrideFile)
}
}
return nil
},
)
}
func ccEnableArenasForFile(
ctx context.Context,
sweeper Sweeper,
imageFile bufimage.ImageFile,
value bool,
) error {
descriptor := imageFile.Proto()
options := descriptor.GetOptions()
switch {
case isWellKnownType(ctx, imageFile):
// The file is a well-known type, don't do anything.
return nil
case options != nil && options.GetCcEnableArenas() == value:
// The option is already set to the same value, don't do anything.
return nil
case options == nil && descriptorpb.Default_FileOptions_CcEnableArenas == value:
// The option is not set, but the value we want to set is the
// same as the default, don't do anything.
return nil
}
if options == nil {
descriptor.Options = &descriptorpb.FileOptions{}
}
descriptor.Options.CcEnableArenas = proto.Bool(value)
if sweeper != nil {
sweeper.mark(imageFile.Path(), ccEnableArenasPath)
}
return nil
}