-
Notifications
You must be signed in to change notification settings - Fork 545
[XABT] Move JLO scanning needed for typemap generation to a linker step. #10015
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
src/Xamarin.Android.Build.Tasks/Linker/MonoDroid.Tuner/FindTypeMapObjectsStep.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
#nullable enable | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using Microsoft.Android.Build.Tasks; | ||
using Microsoft.Build.Utilities; | ||
using Mono.Cecil; | ||
using Mono.Linker.Steps; | ||
using Xamarin.Android.Tasks; | ||
|
||
namespace MonoDroid.Tuner; | ||
|
||
/// <summary> | ||
/// Scans an assembly for JLOs that need to be in the typemap and writes them to an XML file. | ||
/// </summary> | ||
public class FindTypeMapObjectsStep : BaseStep, IAssemblyModifierPipelineStep | ||
{ | ||
public bool Debug { get; set; } | ||
|
||
public bool ErrorOnCustomJavaObject { get; set; } | ||
|
||
public TaskLoggingHelper Log { get; set; } | ||
|
||
public FindTypeMapObjectsStep (TaskLoggingHelper log) => Log = log; | ||
|
||
public void ProcessAssembly (AssemblyDefinition assembly, StepContext context) | ||
{ | ||
var destinationTypeMapXml = TypeMapObjectsXmlFile.GetTypeMapObjectsXmlFilePath (context.Destination.ItemSpec); | ||
|
||
// We only care about assemblies that can contains JLOs | ||
if (!context.IsAndroidAssembly) { | ||
Log.LogDebugMessage ($"Skipping assembly '{assembly.Name.Name}' because it is not an Android assembly"); | ||
TypeMapObjectsXmlFile.WriteEmptyFile (destinationTypeMapXml, Log); | ||
return; | ||
} | ||
|
||
var types = ScanForJavaTypes (assembly); | ||
|
||
var xml = new TypeMapObjectsXmlFile { | ||
AssemblyName = assembly.Name.Name, | ||
}; | ||
|
||
if (Debug) { | ||
var (javaToManaged, managedToJava, foundJniNativeRegistration) = TypeMapCecilAdapter.GetDebugNativeEntries (types, Context); | ||
|
||
xml.JavaToManagedDebugEntries.AddRange (javaToManaged); | ||
xml.ManagedToJavaDebugEntries.AddRange (managedToJava); | ||
xml.FoundJniNativeRegistration = foundJniNativeRegistration; | ||
} else { | ||
var genState = TypeMapCecilAdapter.GetReleaseGenerationState (types, Context, out var foundJniNativeRegistration); | ||
xml.ModuleReleaseData = genState.TempModules.SingleOrDefault ().Value; | ||
jpobst marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. …to here, as: if (!xml.HasDebugEntries && xml.ModuleReleaseData == null) {
Log.LogDebugMessage ("No Java types found…");
TypeMapObjectsXmlFile.WriteEmptyFile (destinationTypeMapXml, Log)
return;
} |
||
xml.Export (destinationTypeMapXml, Log); | ||
} | ||
|
||
List<TypeDefinition> ScanForJavaTypes (AssemblyDefinition assembly) | ||
{ | ||
var types = new List<TypeDefinition> (); | ||
|
||
var scanner = new XAJavaTypeScanner (Xamarin.Android.Tools.AndroidTargetArch.None, Log, Context) { | ||
ErrorOnCustomJavaObject = ErrorOnCustomJavaObject | ||
}; | ||
|
||
foreach (ModuleDefinition md in assembly.Modules) { | ||
foreach (TypeDefinition td in md.Types) { | ||
scanner.AddJavaType (td, types); | ||
} | ||
} | ||
|
||
return types; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a "ha ha only serious" / "future coding guidelines" question/discussion: should we start using C# primary constructors?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't love primary constructors, but if that's what we decide we want to standardize as a team it won't kill me. 😁
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not a fan of primary constructors either... :)