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 Timer.measure methods #140

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
37 changes: 37 additions & 0 deletions Sources/Metrics/Metrics.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ extension Timer {
/// - dimensions: The dimensions for the Timer.
/// - body: Closure to run & record.
@inlinable
@available(*, deprecated, message: "Please use non-static version on an already created Timer")
public static func measure<T>(label: String, dimensions: [(String, String)] = [], body: @escaping () throws -> T) rethrows -> T {
let timer = Timer(label: label, dimensions: dimensions)
let start = DispatchTime.now().uptimeNanoseconds
Expand Down Expand Up @@ -97,4 +98,40 @@ extension Timer {

self.recordNanoseconds(nanoseconds.partialValue)
}

/// Convenience for measuring duration of a closure.
///
/// - Parameters:
/// - clock: The clock used for measuring the duration. Defaults to the continuous clock.
/// - body: The closure to record the duration of.
@inlinable
@available(macOS 13, iOS 16, tvOS 16, watchOS 9, *)
public func measure<Result, Clock: _Concurrency.Clock>(
clock: Clock = .continuous,
body: () throws -> Result
) rethrows -> Result where Clock.Duration == Duration {
let start = clock.now
defer {
self.record(start.duration(to: clock.now))
}
return try body()
}

/// Convenience for measuring duration of a closure with a provided clock.
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit: the doc for this method and the non-async version don't match. Maybe remove the last bit to match that one, since we're defaulting the clock param anyways?

Suggested change
/// Convenience for measuring duration of a closure with a provided clock.
/// Convenience for measuring duration of a closure.

///
/// - Parameters:
/// - clock: The clock used for measuring the duration. Defaults to the continuous clock.
/// - body: The closure to record the duration of.
@inlinable
@available(macOS 13, iOS 16, tvOS 16, watchOS 9, *)
public func measure<Result, Clock: _Concurrency.Clock>(
clock: Clock = .continuous,
body: () async throws -> Result
) async rethrows -> Result where Clock.Duration == Duration {
let start = clock.now
defer {
self.record(start.duration(to: clock.now))
}
return try await body()
}
}
58 changes: 57 additions & 1 deletion Tests/MetricsTests/MetricsTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
import MetricsTestKit
import XCTest

class MetricsExtensionsTests: XCTestCase {
final class MetricsExtensionsTests: XCTestCase {
@available(*, deprecated)
func testTimerBlock() throws {
// bootstrap with our test metrics
let metrics = TestMetrics()
Expand Down Expand Up @@ -180,6 +181,39 @@ class MetricsExtensionsTests: XCTestCase {
testTimer.preferDisplayUnit(.days)
XCTAssertEqual(testTimer.valueInPreferredUnit(atIndex: 0), value / (60 * 60 * 24), accuracy: 0.000000001, "expected value to match")
}

#if swift(>=5.7)
func testTimerMeasure() async throws {
// bootstrap with our test metrics
let metrics = TestMetrics()
MetricsSystem.bootstrapInternal(metrics)
// run the test
let name = "timer-\(UUID().uuidString)"
let delay = Duration.milliseconds(5)
let timer = Timer(label: name)
try await timer.measure {
try await Task.sleep(for: delay)
}
let expectedTimer = try metrics.expectTimer(name)
XCTAssertEqual(1, expectedTimer.values.count, "expected number of entries to match")
XCTAssertGreaterThan(expectedTimer.values[0], delay.nanosecondsClamped, "expected delay to match")
}

func testTimerRecordDuration() throws {
// bootstrap with our test metrics
let metrics = TestMetrics()
MetricsSystem.bootstrapInternal(metrics)
// run the test
let name = "test-timer"
let timer = Timer(label: name)
let duration = Duration.milliseconds(5)
timer.record(duration)

let expectedTimer = try metrics.expectTimer(name)
XCTAssertEqual(1, expectedTimer.values.count, "expected number of entries to match")
XCTAssertEqual(expectedTimer.values[0], duration.nanosecondsClamped, "expected delay to match")
}
#endif
}

// https://bugs.swift.org/browse/SR-6310
Expand All @@ -199,3 +233,25 @@ extension DispatchTimeInterval {
}
}
}

#if swift(>=5.7)
@available(macOS 13, iOS 16, tvOS 16, watchOS 9, *)
extension Swift.Duration {
fileprivate var nanosecondsClamped: Int64 {
let components = self.components

let secondsComponentNanos = components.seconds.multipliedReportingOverflow(by: 1_000_000_000)
let attosCompononentNanos = components.attoseconds / 1_000_000_000
let combinedNanos = secondsComponentNanos.partialValue.addingReportingOverflow(attosCompononentNanos)

guard
!secondsComponentNanos.overflow,
!combinedNanos.overflow
else {
return .max
}

return combinedNanos.partialValue
}
}
#endif