Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rsc doesn't re-snapshot jars produced by zinc #7858

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 22 additions & 18 deletions src/python/pants/backend/jvm/tasks/jvm_compile/rsc/rsc_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,6 @@ def desandboxify(path):
return desandboxify


def _paths_from_classpath(classpath_tuples, collection_type=list):
return collection_type(y[1] for y in classpath_tuples)


class CompositeProductAdder(object):
def __init__(self, *products):
self.products = products
Expand Down Expand Up @@ -258,6 +254,7 @@ def confify(entries):
'zinc-only': lambda: confify([zinc_cc.jar_file]),
'zinc-java': lambda: confify([zinc_cc.jar_file]),
'rsc-and-zinc': lambda: confify(
# TODO: Populate this from the ExecuteProcessResult not by re-snapshotting.
to_classpath_entries([rsc_cc.rsc_jar_file], self.context._scheduler)),
})()
self.context.products.get_data('rsc_mixed_compile_classpath').add_for_target(
Expand Down Expand Up @@ -360,11 +357,19 @@ def work_for_vts_rsc(vts, ctx):
dependencies_for_target = list(
DependencyContext.global_instance().dependencies_respecting_strict_deps(target))

rsc_deps_classpath_unprocessed = _paths_from_classpath(
self.context.products.get_data('rsc_mixed_compile_classpath').get_for_targets(dependencies_for_target),
collection_type=OrderedSet)

compile_classpath_rel = fast_relpath_collection(list(rsc_deps_classpath_unprocessed))
classpath_paths = []
classpath_directory_digests = []
classpath_product = self.context.products.get_data('rsc_mixed_compile_classpath')
classpath_entries = classpath_product.get_classpath_entries_for_targets(dependencies_for_target)
for _conf, classpath_entry in classpath_entries:
classpath_paths.append(classpath_entry.path)
if classpath_entry.directory_digest:
classpath_directory_digests.append(classpath_entry.directory_digest)
else:
logger.warning(
"ClasspathEntry {} didn't have a Digest, so won't be present for hermetic "
"execution of rsc".format(classpath_entry)
)

ctx.ensure_output_dirs_exist()

Expand All @@ -379,12 +384,13 @@ def work_for_vts_rsc(vts, ctx):

def hermetic_digest_classpath():
jdk_libs_rel, jdk_libs_digest = self._jdk_libs_paths_and_digest(distribution)

merged_sources_and_jdk_digest = self.context._scheduler.merge_directories(
(jdk_libs_digest, sources_snapshot.directory_digest))
classpath_rel_jdk = compile_classpath_rel + jdk_libs_rel
(jdk_libs_digest, sources_snapshot.directory_digest) + tuple(classpath_directory_digests))
classpath_rel_jdk = classpath_paths + jdk_libs_rel
return (merged_sources_and_jdk_digest, classpath_rel_jdk)
def nonhermetic_digest_classpath():
classpath_abs_jdk = compile_classpath_rel + self._jdk_libs_abs(distribution)
classpath_abs_jdk = classpath_paths + self._jdk_libs_abs(distribution)
return ((EMPTY_DIRECTORY_DIGEST), classpath_abs_jdk)

(input_digest, classpath_entry_paths) = self.execution_strategy_enum.resolve_for_enum_variant({
Expand All @@ -403,12 +409,11 @@ def nonhermetic_digest_classpath():
args,
distribution,
tgt=tgt,
input_files=tuple(compile_classpath_rel),
input_digest=input_digest,
output_dir=os.path.dirname(rsc_jar_file))

self._record_target_stats(tgt,
len(compile_classpath_rel),
len(classpath_entry_paths),
len(target_sources),
timer.elapsed,
False,
Expand Down Expand Up @@ -574,7 +579,7 @@ def create_compile_context(self, target, target_workdir):
sources=sources,
))

def _runtool_hermetic(self, main, tool_name, args, distribution, tgt=None, input_files=tuple(), input_digest=None, output_dir=None):
def _runtool_hermetic(self, main, tool_name, args, distribution, tgt=None, input_digest=None, output_dir=None):
tool_classpath_abs = self._rsc_classpath
tool_classpath = fast_relpath_collection(tool_classpath_abs)

Expand Down Expand Up @@ -605,7 +610,6 @@ def _runtool_hermetic(self, main, tool_name, args, distribution, tgt=None, input
cmd = initial_args + args

pathglobs = list(tool_classpath)
pathglobs.extend(f if os.path.isfile(f) else '{}/**'.format(f) for f in input_files)

if pathglobs:
root = PathGlobsAndRoot(
Expand Down Expand Up @@ -675,14 +679,14 @@ def _runtool_nonhermetic(self, parent_workunit, classpath, main, tool_name, args
return runjava_workunit

def _runtool(self, args, distribution,
tgt=None, input_files=tuple(), input_digest=None, output_dir=None):
tgt=None, input_digest=None, output_dir=None):
main = 'rsc.cli.Main'
tool_name = 'rsc'
with self.context.new_workunit(tool_name) as wu:
return self.execution_strategy_enum.resolve_for_enum_variant({
self.HERMETIC: lambda: self._runtool_hermetic(
main, tool_name, args, distribution,
tgt=tgt, input_files=input_files, input_digest=input_digest, output_dir=output_dir),
tgt=tgt, input_digest=input_digest, output_dir=output_dir),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

self.SUBPROCESS: lambda: self._runtool_nonhermetic(
wu, self._rsc_classpath, main, tool_name, args, distribution),
self.NAILGUN: lambda: self._runtool_nonhermetic(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def _compile_hermetic(self, jvm_options, ctx, classes_dir, jar_file, zinc_args,
if dep.directory_digest is None:
logger.warning(
"ClasspathEntry {} didn't have a Digest, so won't be present for hermetic "
"execution".format(dep)
"execution of zinc".format(dep)
)

snapshots.extend(
Expand Down