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

Add support for pre- and post- actions #217

Merged
merged 11 commits into from
Jan 25, 2018
Merged

Add support for pre- and post- actions #217

merged 11 commits into from
Jan 25, 2018

Conversation

kastiglione
Copy link

@kastiglione kastiglione commented Jan 16, 2018

Short description 📝

This pull request adds support for pre-actions and post-actions to generated schemes.

Solution 📦

First, a new class named ExecutionAction has been added to XCScheme.swift. This class represents the .xcscheme xml element of the same name.

Next, pre- and post- action properties are added applicable Action types. Since this code is common among the Action classes, a SerialAction super class is introduced. All Action classes, except ProfileAction, now subclass SerialAction to inherit pre- and post- action behavior. Xcode disables pre- and post- actions for Analyze actions, and these changes adhere to that. The Xcode documentation states Analyze should use the pre- and post- actions of the Build action.

Implementation 👩‍💻👨‍💻

  • Add ExecutionAction class
  • Add preAction and postAction properties to BuildAction
  • Add preAction and postAction properties to other Action types (e.g. TestAction)
  • Add tests

This change is Reviewable

@kastiglione kastiglione requested a review from pepicrft January 16, 2018 22:42
@kastiglione
Copy link
Author

kastiglione commented Jan 16, 2018

I've published it at this point to see if there is any early feedback. See the check list for the next steps I will take unless feedback dictates a different direction.

@pepicrft
Copy link
Contributor

Nicely done @kastiglione. You can go ahead with the remaining steps 👍

@kastiglione kastiglione changed the title Add initial support for pre- and post- actions Add support for pre- and post- actions Jan 17, 2018
@kastiglione kastiglione added this to the 4.0.0 milestone Jan 24, 2018
@kastiglione
Copy link
Author

I've taken the liberty to add this to the 4.0.0 milestone. I'm going to wrap this up right away so hopefully it's ok that I did that.

@kastiglione
Copy link
Author

This is ready for review.

Copy link
Contributor

@pepicrft pepicrft left a comment

Choose a reason for hiding this comment

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

Looks ok to me! It'd be great if either @allu22 or @yonaskolb can give you a second feedback.

@kastiglione
Copy link
Author

Thanks @pepibumur, I've added them as reviewers.

Copy link
Collaborator

@yonaskolb yonaskolb left a comment

Choose a reason for hiding this comment

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

Looks good! Just a couple of small comments

// MARK: - Build Action

final public class BuildAction {
public class SerialAction {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Are there any common properties that could go in here in the future? If so we could just call this SchemeAction

Copy link
Author

Choose a reason for hiding this comment

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

I picked the name for what it is now, since I don't know if it will expand to be more. I figured it could easily be renamed. Having said all that, I can go either way, it's not something I feel strongly about.

Copy link
Collaborator

Choose a reason for hiding this comment

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

Yeah, it's fine now. Just thought I'd mention it

self.postActions = try element["PostActions"]["ExecutionAction"].all?.map(ExecutionAction.init) ?? []
}

fileprivate func addPreActionsPostActions(_ element: AEXMLElement) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

maybe we can call this writeXML?

Copy link
Author

Choose a reason for hiding this comment

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

👍

@@ -5,6 +5,24 @@
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<PreActions>
Copy link
Collaborator

Choose a reason for hiding this comment

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

Have you tested opening this scheme in Xcode and see if it changes the format? We want to keep the work achieved by #216. You may have to add something to the attributesOrder in AEXML+XcodeFormat.swift

Copy link
Author

Choose a reason for hiding this comment

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

These .xcscheme additions were generated by Xcode itself, not by hand. I added actions through the Xcode UI and these were the results. I'll take a look at #216, thanks.

Copy link
Author

Choose a reason for hiding this comment

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

I made a small addition to attributesOrder in b8fdd76. In each of the updated xmlElement implementations, the insertion of PreActions and PostActions child elements happens before other children are added, which matches Xcode's xml generation.

Copy link
Contributor

@alvarhansen alvarhansen left a comment

Choose a reason for hiding this comment

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

Very nice PR! Added one comment/thought.


public init(scriptText: String, title: String? = nil, environmentBuildable: BuildableReference? = nil) {
self.scriptText = scriptText
self.title = title ?? "Run Script"
Copy link
Contributor

Choose a reason for hiding this comment

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

What do you think, if you moved the default value to init arguments? This way it is more clear that title is not optional. At the moment, looking at the init method signature, it looks like title is optional.

@kastiglione
Copy link
Author

Review feedback has been addressed.

@pepicrft pepicrft merged commit 8fb1284 into master Jan 25, 2018
@pepicrft
Copy link
Contributor

🎉

@kastiglione kastiglione deleted the pre-post-actions branch January 25, 2018 20:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants