platform_build/tools/compliance/resolutionset_test.go
Bob Badour 103eb0f9bc Performance and scale.
Defer edge creation.

Don't create edges until the count is known to avoid repeated allocate+
copy operatios.

Limit resolutions.

Allow only a single resolution condition set per target, and overwrite
intermediate results. Reduces memory and obviates allocations.

Propagate fewer conditions.

Instead of propagating notice conditions to parents in graph during
initial resolve, leave them on leaf node, and attach to ancestors in
the final walk. Reduces copies.

Parallelize resolutions.

Use goroutines, mutexes, and waitgroups to resolve branches of the
graph in parallel. Makes better use of available cores.

Don't accumulate resolutions inside non-containers.

During the final resolution walk, only attach actions to ancestors from
the root down until the 1st non-aggregate. Prevents an explosion of
copies in the lower levels of the graph.

Drop origin for scale.

Tracking the origin of every potential origin for every restricted
condition does not scale. By dropping origin, propagating from top
to bottom can prune many redundant paths avoiding an exponential
explosion.

Conditions as bitmask.

Use bit masks for license conditions and condition sets. Reduces maps
and allocations.

Bug: 68860345
Bug: 151177513
Bug: 151953481

Test: m all
Test: m systemlicense
Test: m listshare; out/soong/host/linux-x86/bin/listshare ...
Test: m checkshare; out/soong/host/linux-x86/bin/checkshare ...
Test: m dumpgraph; out/soong/host/linux-x86/dumpgraph ...
Test: m dumpresolutions; out/soong/host/linux-x86/dumpresolutions ...

where ... is the path to the .meta_lic file for the system image. In my
case if

$ export PRODUCT=$(realpath $ANDROID_PRODUCT_OUT --relative-to=$PWD)

... can be expressed as:

${PRODUCT}/gen/META/lic_intermediates/${PRODUCT}/system.img.meta_lic

Change-Id: Ia2ec1b818de6122c239fbd0824754f1d65daffd3
2022-01-11 10:40:50 -08:00

136 lines
4.3 KiB
Go

// Copyright 2021 Google LLC
//
// 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.
package compliance
import (
"sort"
"testing"
)
var (
// bottomUp describes the bottom-up resolve of a hypothetical graph
// the graph has a container image, a couple binaries, and a couple
// libraries. bin1 statically links lib1 and dynamically links lib2;
// bin2 dynamically links lib1 and statically links lib2.
// binc represents a compiler or other toolchain binary used for
// building the other binaries.
bottomUp = []res{
{"image", "image", "image", "notice"},
{"image", "image", "bin2", "restricted"},
{"image", "bin1", "bin1", "reciprocal"},
{"image", "bin2", "bin2", "restricted"},
{"image", "lib1", "lib1", "notice"},
{"image", "lib2", "lib2", "notice"},
{"binc", "binc", "binc", "proprietary"},
{"bin1", "bin1", "bin1", "reciprocal"},
{"bin1", "lib1", "lib1", "notice"},
{"bin2", "bin2", "bin2", "restricted"},
{"bin2", "lib2", "lib2", "notice"},
{"lib1", "lib1", "lib1", "notice"},
{"lib2", "lib2", "lib2", "notice"},
}
// notice describes bottomUp after a top-down notice resolve.
notice = []res{
{"image", "image", "image", "notice"},
{"image", "image", "bin2", "restricted"},
{"image", "bin1", "bin1", "reciprocal"},
{"image", "bin2", "bin2", "restricted"},
{"image", "lib1", "lib1", "notice"},
{"image", "lib2", "bin2", "restricted"},
{"image", "lib2", "lib2", "notice"},
{"bin1", "bin1", "bin1", "reciprocal"},
{"bin1", "lib1", "lib1", "notice"},
{"bin2", "bin2", "bin2", "restricted"},
{"bin2", "lib2", "bin2", "restricted"},
{"bin2", "lib2", "lib2", "notice"},
{"lib1", "lib1", "lib1", "notice"},
{"lib2", "lib2", "lib2", "notice"},
}
// share describes bottomUp after a top-down share resolve.
share = []res{
{"image", "image", "bin2", "restricted"},
{"image", "bin1", "bin1", "reciprocal"},
{"image", "bin2", "bin2", "restricted"},
{"image", "lib2", "bin2", "restricted"},
{"bin1", "bin1", "bin1", "reciprocal"},
{"bin2", "bin2", "bin2", "restricted"},
{"bin2", "lib2", "bin2", "restricted"},
}
// proprietary describes bottomUp after a top-down proprietary resolve.
// Note that the proprietary binc is not reachable through the toolchain
// dependency.
proprietary = []res{}
)
func TestResolutionSet_AttachesTo(t *testing.T) {
lg := newLicenseGraph()
rsShare := toResolutionSet(lg, share)
t.Logf("checking resolution set %s", rsShare.String())
actual := rsShare.AttachesTo().Names()
sort.Strings(actual)
expected := []string{"bin1", "bin2", "image"}
t.Logf("actual rsShare: %v", actual)
t.Logf("expected rsShare: %v", expected)
if len(actual) != len(expected) {
t.Errorf("rsShare: wrong number of targets: got %d, want %d", len(actual), len(expected))
return
}
for i := 0; i < len(actual); i++ {
if actual[i] != expected[i] {
t.Errorf("rsShare: unexpected target at index %d: got %s, want %s", i, actual[i], expected[i])
}
}
rsPrivate := toResolutionSet(lg, proprietary)
actual = rsPrivate.AttachesTo().Names()
expected = []string{}
t.Logf("actual rsPrivate: %v", actual)
t.Logf("expected rsPrivate: %v", expected)
if len(actual) != len(expected) {
t.Errorf("rsPrivate: wrong number of targets: got %d, want %d", len(actual), len(expected))
return
}
for i := 0; i < len(actual); i++ {
if actual[i] != expected[i] {
t.Errorf("rsPrivate: unexpected target at index %d: got %s, want %s", i, actual[i], expected[i])
}
}
}
func TestResolutionSet_AttachesToTarget(t *testing.T) {
lg := newLicenseGraph()
rsShare := toResolutionSet(lg, share)
t.Logf("checking resolution set %s", rsShare.String())
if rsShare.AttachesToTarget(newTestNode(lg, "binc")) {
t.Errorf("actual.AttachesToTarget(\"binc\"): got true, want false")
}
if !rsShare.AttachesToTarget(newTestNode(lg, "image")) {
t.Errorf("actual.AttachesToTarget(\"image\"): got false want true")
}
}