Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 981c9262 authored by Joe Onorato's avatar Joe Onorato
Browse files

Rename device_config --> aconfig and definitions --> declarations

Bug: 285303012
Test: for x in next trunk trunk_food trunk_staging ; do lunch aosp_panther-$x-eng ; m nothing ; done
Change-Id: I3375f46b3ecbbc516d1bee6ab3f80725fcccde8f
parent 81b25ed0
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@ package {
}

bootstrap_go_package {
    name: "soong-device_config",
    pkgPath: "android/soong/device_config",
    name: "soong-aconfig",
    pkgPath: "android/soong/aconfig",
    deps: [
        "blueprint",
        "blueprint-pathtools",
@@ -16,17 +16,17 @@ bootstrap_go_package {
        "soong-java",
    ],
    srcs: [
        "device_config_definitions.go",
        "device_config_values.go",
        "device_config_value_set.go",
        "aconfig_declarations.go",
        "aconfig_values.go",
        "aconfig_value_set.go",
        "init.go",
        "java_device_config_definitions_library.go",
        "java_aconfig_library.go",
        "testing.go",
    ],
    testSrcs: [
        "device_config_definitions_test.go",
        "device_config_values_test.go",
        "device_config_value_set_test.go",
        "aconfig_declarations_test.go",
        "aconfig_values_test.go",
        "aconfig_value_set_test.go",
    ],
    pluginFor: ["soong_build"],
}
+19 −19
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package device_config
package aconfig

import (
	"android/soong/android"
@@ -21,11 +21,11 @@ import (
	"strings"
)

type DefinitionsModule struct {
type DeclarationsModule struct {
	android.ModuleBase
	android.DefaultableModuleBase

	// Properties for "device_config_definitions"
	// Properties for "aconfig_declarations"
	properties struct {
		// aconfig files, relative to this Android.bp file
		Srcs []string `android:"path"`
@@ -33,15 +33,15 @@ type DefinitionsModule struct {
		// Release config flag package
		Package string

		// Values from TARGET_RELEASE / RELEASE_DEVICE_CONFIG_VALUE_SETS
		// Values from TARGET_RELEASE / RELEASE_ACONFIG_VALUE_SETS
		Values []string `blueprint:"mutated"`
	}

	intermediatePath android.WritablePath
}

func DefinitionsFactory() android.Module {
	module := &DefinitionsModule{}
func DeclarationsFactory() android.Module {
	module := &DeclarationsModule{}

	android.InitAndroidModule(module)
	android.InitDefaultableModule(module)
@@ -58,7 +58,7 @@ type implicitValuesTagType struct {

var implicitValuesTag = implicitValuesTagType{}

func (module *DefinitionsModule) DepsMutator(ctx android.BottomUpMutatorContext) {
func (module *DeclarationsModule) DepsMutator(ctx android.BottomUpMutatorContext) {
	// Validate Properties
	if len(module.properties.Srcs) == 0 {
		ctx.PropertyErrorf("srcs", "missing source files")
@@ -68,14 +68,14 @@ func (module *DefinitionsModule) DepsMutator(ctx android.BottomUpMutatorContext)
		ctx.PropertyErrorf("package", "missing package property")
	}

	// Add a dependency on the device_config_value_sets defined in
	// RELEASE_DEVICE_CONFIG_VALUE_SETS, and add any device_config_values that
	// Add a dependency on the aconfig_value_sets defined in
	// RELEASE_ACONFIG_VALUE_SETS, and add any aconfig_values that
	// match our package.
	valuesFromConfig := ctx.Config().ReleaseDeviceConfigValueSets()
	valuesFromConfig := ctx.Config().ReleaseAconfigValueSets()
	ctx.AddDependency(ctx.Module(), implicitValuesTag, valuesFromConfig...)
}

func (module *DefinitionsModule) OutputFiles(tag string) (android.Paths, error) {
func (module *DeclarationsModule) OutputFiles(tag string) (android.Paths, error) {
	switch tag {
	case "":
		// The default output of this module is the intermediates format, which is
@@ -83,7 +83,7 @@ func (module *DefinitionsModule) OutputFiles(tag string) (android.Paths, error)
		// correctly.
		return []android.Path{module.intermediatePath}, nil
	default:
		return nil, fmt.Errorf("unsupported device_config_definitions module reference tag %q", tag)
		return nil, fmt.Errorf("unsupported aconfig_declarations module reference tag %q", tag)
	}
}

@@ -96,16 +96,16 @@ func joinAndPrefix(prefix string, values []string) string {
	return sb.String()
}

// Provider published by device_config_value_set
type definitionsProviderData struct {
// Provider published by aconfig_value_set
type declarationsProviderData struct {
	Package          string
	IntermediatePath android.WritablePath
}

var definitionsProviderKey = blueprint.NewProvider(definitionsProviderData{})
var declarationsProviderKey = blueprint.NewProvider(declarationsProviderData{})

func (module *DefinitionsModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
	// Get the values that came from the global RELEASE_DEVICE_CONFIG_VALUE_SETS flag
func (module *DeclarationsModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
	// Get the values that came from the global RELEASE_ACONFIG_VALUE_SETS flag
	ctx.VisitDirectDeps(func(dep android.Module) {
		if !ctx.OtherModuleHasProvider(dep, valueSetProviderKey) {
			// Other modules get injected as dependencies too, for example the license modules
@@ -127,7 +127,7 @@ func (module *DefinitionsModule) GenerateAndroidBuildActions(ctx android.ModuleC
		Rule:        aconfigRule,
		Inputs:      inputFiles,
		Output:      intermediatePath,
		Description: "device_config_definitions",
		Description: "aconfig_declarations",
		Args: map[string]string{
			"release_version": ctx.Config().ReleaseVersion(),
			"package":         module.properties.Package,
@@ -135,7 +135,7 @@ func (module *DefinitionsModule) GenerateAndroidBuildActions(ctx android.ModuleC
		},
	})

	ctx.SetProvider(definitionsProviderKey, definitionsProviderData{
	ctx.SetProvider(declarationsProviderKey, declarationsProviderData{
		Package:          module.properties.Package,
		IntermediatePath: intermediatePath,
	})
+5 −5
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package device_config
package aconfig

import (
	"strings"
@@ -21,9 +21,9 @@ import (
	"android/soong/android"
)

func TestDeviceConfigDefinitions(t *testing.T) {
func TestAconfigDeclarations(t *testing.T) {
	bp := `
		device_config_definitions {
		aconfig_declarations {
			name: "module_name",
			package: "com.example.package",
			srcs: ["foo.aconfig"],
@@ -31,10 +31,10 @@ func TestDeviceConfigDefinitions(t *testing.T) {
	`
	result := runTest(t, android.FixtureExpectsNoErrors, bp)

	module := result.ModuleForTests("module_name", "").Module().(*DefinitionsModule)
	module := result.ModuleForTests("module_name", "").Module().(*DeclarationsModule)

	// Check that the provider has the right contents
	depData := result.ModuleProvider(module, definitionsProviderKey).(definitionsProviderData)
	depData := result.ModuleProvider(module, declarationsProviderKey).(declarationsProviderData)
	android.AssertStringEquals(t, "package", depData.Package, "com.example.package")
	if !strings.HasSuffix(depData.IntermediatePath.String(), "/intermediate.pb") {
		t.Errorf("Missing intermediates path in provider: %s", depData.IntermediatePath.String())
+7 −7
Original line number Diff line number Diff line
@@ -12,20 +12,20 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package device_config
package aconfig

import (
	"android/soong/android"
	"github.com/google/blueprint"
)

// Properties for "device_config_value_set"
// Properties for "aconfig_value_set"
type ValueSetModule struct {
	android.ModuleBase
	android.DefaultableModuleBase

	properties struct {
		// device_config_values modules
		// aconfig_values modules
		Values []string
	}
}
@@ -49,10 +49,10 @@ type valueSetType struct {

var valueSetTag = valueSetType{}

// Provider published by device_config_value_set
// Provider published by aconfig_value_set
type valueSetProviderData struct {
	// The package of each of the
	// (map of package --> device_config_module)
	// (map of package --> aconfig_module)
	AvailablePackages map[string]android.Paths
}

@@ -63,7 +63,7 @@ func (module *ValueSetModule) DepsMutator(ctx android.BottomUpMutatorContext) {
	for _, dep := range deps {
		_, ok := dep.(*ValuesModule)
		if !ok {
			ctx.PropertyErrorf("values", "values must be a device_config_values module")
			ctx.PropertyErrorf("values", "values must be a aconfig_values module")
			return
		}
	}
@@ -71,7 +71,7 @@ func (module *ValueSetModule) DepsMutator(ctx android.BottomUpMutatorContext) {

func (module *ValueSetModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
	// Accumulate the packages of the values modules listed, and set that as an
	// valueSetProviderKey provider that device_config modules can read and use
	// valueSetProviderKey provider that aconfig modules can read and use
	// to append values to their aconfig actions.
	packages := make(map[string]android.Paths)
	ctx.VisitDirectDeps(func(dep android.Module) {
+4 −4
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package device_config
package aconfig

import (
	"testing"
@@ -20,15 +20,15 @@ import (
	"android/soong/android"
)

func TestDeviceConfigValueSet(t *testing.T) {
func TestAconfigValueSet(t *testing.T) {
	bp := `
				device_config_values {
				aconfig_values {
					name: "one",
					srcs: [ "blah.aconfig_values" ],
					package: "foo.package"
				}

				device_config_value_set {
				aconfig_value_set {
					name: "module_name",
          values: [ "one" ],
				}
Loading