-
Notifications
You must be signed in to change notification settings - Fork 49
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
Fix tests #5
Fix tests #5
Conversation
Sources/XCHammer/Generator.swift
Outdated
if parent.pathExtension != ext && url.absoluteString.contains(ext) { | ||
(ext, dotExt) in | ||
if parent.pathExtension != ext && | ||
url.absoluteString.contains(dotExt) { |
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 think it would be cleaner to check if there is a path component that ends with the extension
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 agree and that had a major performance hit
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.
Can we just add it as an additional &&
to this statement? That way you'll only walk the path components of a path that includes the extension
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.
What do you think the suggested code would do when we have a path containing pinterest/ios/app
?
The code checks for material within some.app
, not for paths that include app
.
Also, as I mentioned, the effect of creating pathComponents
was a major performance hit.
Sources/XCHammer/Generator.swift
Outdated
@@ -369,11 +369,13 @@ enum Generator { | |||
// Skip hashing children of Xcode directory like files | |||
private static let xcodeDirExtensions = ["app", "appex", "bundle", "framework", "octest", | |||
"xcassets", "xcodeproj", "xcdatamodel", "xcdatamodeld", | |||
"xcmappingmodel", "xctest", "xcstickers", "xpc", "scnassets" ] | |||
"xcmappingmodel", "xctest", "xcstickers", "xpc", "scnassets" ].map { ($0, "." + $0 ) } |
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 think there is there a lot of value into having a tuple to add a "." prefix
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.
Checkout how the previous line of code is consuming this - it is needed.
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.
And by previous, I mean 376
😄
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 see how it's used but it just seems a bit strange for a list ofxcodeDirExtensions
to have two representations of it. If you really want that then you should probably just create struct type wrapper that has a convenience method for the extension prefixed with .
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.
Done
764da90
to
f06d300
Compare
We have missed a few things which broke the tests and Makefile
Make sure tests are passing, and fix a hash issue which impacted
ios-app.