-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
feat: support three different formats #2722
feat: support three different formats #2722
Conversation
@swift-ci test linux |
// for the representation of date/time stamps | ||
|
||
// RCF 822 --- Sun, 06 Nov 1994 08:49:37 GMT | ||
self.dateFormatter.dateFormat = "EEE, dd MMM yyyy HH:mm:ss zzz" |
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.
There are costs associated with changing the settings of a formatter, and I’d rather just have three different formatters ready here.
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.
private var _dateFormat: String? { willSet { _reset() } }
open var dateFormat: String! {
get {
guard let format = _dateFormat else {
return CFDateFormatterGetFormat(_cfObject)._swiftObject
}
return format
}
set {
_dateFormat = newValue
}
}
looks like anything was cost
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.
Sorry, I don’t understand your comment.
I was referring to the resources that CFDateFormatterSet… will destroy and recreate every time it’s called. I’d rather just have three different date formatters so we can amortize that call.
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.
(That call is in _reset().)
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.
OK,I got it
Could you add some tests to in the three different date formats to test all three different formatters as well please. |
The currently modified code is in the canCache method. There is no test code. I'm not sure where to write the test code? Is it possible to write in a TestURLSession file or do you have any good suggestions? |
Since the only thing that needs to be tested is actually parsing dates in different formats I would suggest adding some tests into Since it is
to the top of the test file. You could setup some tests for |
Also: I commented previously that changing the It’s a tiny thing but we have our work cut out for us in SCF to improve performance, and not adding an obvious time-and-space issue is one way we can avoid worsening things. |
Is this ok? |
I hadn’t seen that! That works. |
(I still agree with @spevans that we need tests.) |
sorry, I have been busy recently. I forgot about this and I will add UT as soon as possible |
The Swift project moved the default branch to More detail about the branch update - https://forums.swift.org/t/updating-branch-names/40412 |
This PR solves a bug and adds a feature
old code screenshot
new code screenshot