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

feat: support three different formats #2722

Conversation

zymxxxs
Copy link
Contributor

@zymxxxs zymxxxs commented Mar 10, 2020

This PR solves a bug and adds a feature

image

old code screenshot

image

new code screenshot

image

@zymxxxs
Copy link
Contributor Author

zymxxxs commented Mar 12, 2020

@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"
Copy link
Contributor

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.

Copy link
Contributor Author

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

Copy link
Contributor

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.

Copy link
Contributor

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().)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

OK,I got it

@spevans
Copy link
Contributor

spevans commented Mar 20, 2020

Could you add some tests to in the three different date formats to test all three different formatters as well please.

@zymxxxs
Copy link
Contributor Author

zymxxxs commented Mar 20, 2020

@spevans

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?

@spevans
Copy link
Contributor

spevans commented Mar 20, 2020

Since the only thing that needs to be tested is actually parsing dates in different formats I would suggest adding some tests into TestHTTPURLResponse that directly call the _HTTPURLProtocol.date(from: dateString) method with dates in different formats.

Since it is internal you will need to put the tests inside a
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT / #endif
block and also add

   #if canImport(SwiftFoundation) && !DEPLOYMENT_RUNTIME_OBJC
       @testable import SwiftFoundation
   #else
       @testable import Foundation
   #endif

to the top of the test file.

You could setup some tests for TestURLSession but that would really be testing the caching validation mechanism and not specifically the date parsing. Also note that at the moment TestURLSession is currently disabled. It will be re-enabled once I have fixed a few more URLSession bugs and stopped some of the tests being flaky.

@millenomi
Copy link
Contributor

millenomi commented Apr 2, 2020

Also: I commented previously that changing the .dateFormat of an existing formatter is throwing away resources, and that I would much prefer a patch where three date for matters are created and cached. Can we have that?

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.

@zymxxxs
Copy link
Contributor Author

zymxxxs commented Apr 2, 2020

@millenomi commit

Is this ok?

@millenomi
Copy link
Contributor

I hadn’t seen that! That works.

@millenomi
Copy link
Contributor

(I still agree with @spevans that we need tests.)

@zymxxxs
Copy link
Contributor Author

zymxxxs commented Apr 2, 2020

sorry, I have been busy recently. I forgot about this and I will add UT as soon as possible

@shahmishal shahmishal closed this Oct 6, 2020
@shahmishal
Copy link
Member

The Swift project moved the default branch to main and deleted master branch, so GitHub automatically closed the PR. Please re-create pull request with main branch.

More detail about the branch update - https://forums.swift.org/t/updating-branch-names/40412

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