Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
Summary:
X-link: facebookincubator/zstrong#897

Builder refactoring: instead of providing `install_dirs` to `build()`, `test()` etc., provide `loader` and `dep_manifests` when creating the builder. This is a cleaner API because we were computing `install_dirs` in multiple places before.

Furthermore this lets us do things that need to see the manifests of the dependencies, not just the list of `install_dirs`, such as treating direct dependencies differently from indirect dependencies (see D58244928).

Reviewed By: chadaustin

Differential Revision: D58200528

fbshipit-source-id: e52d35e84161b83ab49ab43099c3e3b9bb03f36e
  • Loading branch information
Simon Marlow authored and facebook-github-bot committed Jun 27, 2024
1 parent bd8ad27 commit 0e908b0
Show file tree
Hide file tree
Showing 6 changed files with 307 additions and 122 deletions.
44 changes: 16 additions & 28 deletions build/fbcode_builder/getdeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,23 +210,20 @@ def setup_parser(self, parser):
def setup_project_cmd_parser(self, parser):
pass

# For commands that don't build but need the full list of install_dirs from
# dependencies (test, debug).
def get_install_dirs(self, loader, manifest):
install_dirs = []
for m in loader.manifests_in_dependency_order():
if m != manifest:
install_dirs.append(loader.get_project_install_dir(m))
return install_dirs

def create_builder(self, loader, manifest):
fetcher = loader.create_fetcher(manifest)
src_dir = fetcher.get_src_dir()
ctx = loader.ctx_gen.get_context(manifest.name)
build_dir = loader.get_project_build_dir(manifest)
inst_dir = loader.get_project_install_dir(manifest)
return manifest.create_builder(
loader.build_opts, src_dir, build_dir, inst_dir, ctx, loader
loader.build_opts,
src_dir,
build_dir,
inst_dir,
ctx,
loader,
loader.dependencies_of(manifest),
)

def check_built(self, loader, manifest):
Expand Down Expand Up @@ -579,11 +576,11 @@ def run_project_cmd(self, args, loader, manifest):

cache = cache_module.create_cache() if args.use_build_cache else None

# Accumulate the install directories so that the build steps
# can find their dep installation
install_dirs = []
dep_manifests = []

for m in projects:
dep_manifests.append(m)

fetcher = loader.create_fetcher(m)

if args.build_skip_lfs_download and hasattr(fetcher, "skip_lfs_download"):
Expand Down Expand Up @@ -650,9 +647,10 @@ def run_project_cmd(self, args, loader, manifest):
build_dir,
inst_dir,
loader,
dep_manifests,
)
for preparer in prepare_builders:
preparer.prepare(install_dirs, reconfigure=reconfigure)
preparer.prepare(reconfigure=reconfigure)

builder = m.create_builder(
loader.build_opts,
Expand All @@ -661,12 +659,13 @@ def run_project_cmd(self, args, loader, manifest):
inst_dir,
ctx,
loader,
dep_manifests,
final_install_prefix=loader.get_project_install_prefix(m),
extra_cmake_defines=extra_cmake_defines,
cmake_target=args.cmake_target if m == manifest else "install",
extra_b2_args=extra_b2_args,
)
builder.build(install_dirs, reconfigure=reconfigure)
builder.build(reconfigure=reconfigure)

# If we are building the project (not dependency) and a specific
# cmake_target (not 'install') has been requested, then we don't
Expand All @@ -690,11 +689,6 @@ def run_project_cmd(self, args, loader, manifest):
elif args.verbose:
print("found good %s" % built_marker)

# Paths are resolved from front. We prepend rather than append as
# the last project in topo order is the project itself, which
# should be first in the path, then its deps and so on.
install_dirs.insert(0, inst_dir)

def compute_dep_change_status(self, m, built_marker, loader):
reconfigure = False
sources_changed = False
Expand Down Expand Up @@ -883,11 +877,7 @@ def run_project_cmd(self, args, loader, manifest):
if not self.check_built(loader, manifest):
print("project %s has not been built" % manifest.name)
return 1
builder = self.create_builder(loader, manifest)
install_dirs = self.get_install_dirs(loader, manifest)

builder.run_tests(
install_dirs,
self.create_builder(loader, manifest).run_tests(
schedule_type=args.schedule_type,
owner=args.test_owner,
test_filter=args.filter,
Expand Down Expand Up @@ -921,9 +911,7 @@ def setup_project_cmd_parser(self, parser):
)
class DebugCmd(ProjectCmdBase):
def run_project_cmd(self, args, loader, manifest):
install_dirs = self.get_install_dirs(loader, manifest)
builder = self.create_builder(loader, manifest)
builder.debug(install_dirs, reconfigure=False)
self.create_builder(loader, manifest).debug(reconfigure=False)


@cmd("generate-github-actions", "generate a GitHub actions configuration")
Expand Down
Loading

0 comments on commit 0e908b0

Please sign in to comment.