Skip to content

Commit 577f205

Browse files
committed
Update Tracing package 📦
1 parent 1bdaa6a commit 577f205

File tree

5 files changed

+37
-54
lines changed

5 files changed

+37
-54
lines changed

‎Package.swift

+2-4
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,15 @@ let package = Package(
2727
.package(url: "https://github.com/apple/swift-nio-transport-services.git", from: "1.5.1"),
2828
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.0"),
2929
.package(url: "https://github.com/slashmo/gsoc-swift-tracing.git", .branch("main")),
30-
.package(url: "https://github.com/slashmo/gsoc-swift-baggage-context.git", from: "0.2.0"),
3130
],
3231
targets: [
3332
.target(
3433
name: "AsyncHTTPClient",
3534
dependencies: ["NIO", "NIOHTTP1", "NIOSSL", "NIOConcurrencyHelpers", "NIOHTTPCompression",
3635
"NIOFoundationCompat", "NIOTransportServices", "Logging",
37-
.product(name: "TracingInstrumentation", package: "gsoc-swift-tracing"),
36+
.product(name: "Tracing", package: "gsoc-swift-tracing"),
3837
.product(name: "OpenTelemetryInstrumentationSupport", package: "gsoc-swift-tracing"),
39-
.product(name: "NIOInstrumentation", package: "gsoc-swift-tracing"),
40-
.product(name: "BaggageLogging", package: "swift-baggage-context")]
38+
.product(name: "NIOInstrumentation", package: "gsoc-swift-tracing")]
4139
),
4240
.testTarget(
4341
name: "AsyncHTTPClientTests",

‎Sources/AsyncHTTPClient/HTTPClient.swift

+16-17
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@
1212
//
1313
//===----------------------------------------------------------------------===//
1414

15-
import Baggage
16-
import BaggageLogging
15+
import BaggageContext
1716
import Foundation
1817
import Instrumentation
19-
import TracingInstrumentation
18+
import Tracing
2019
import Logging
2120
import NIO
2221
import NIOConcurrencyHelpers
@@ -233,7 +232,7 @@ public class HTTPClient {
233232
/// - url: Remote URL.
234233
/// - context: Baggage context associated with this request
235234
/// - deadline: Point in time by which the request must complete.
236-
public func get(url: String, context: LoggingBaggageContextCarrier, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
235+
public func get(url: String, context: BaggageContext, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
237236
return self.execute(.GET, url: url, context: context, deadline: deadline)
238237
}
239238

@@ -244,7 +243,7 @@ public class HTTPClient {
244243
/// - context: Baggage context associated with this request
245244
/// - body: Request body.
246245
/// - deadline: Point in time by which the request must complete.
247-
public func post(url: String, context: LoggingBaggageContextCarrier, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
246+
public func post(url: String, context: BaggageContext, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
248247
return self.execute(.POST, url: url, context: context, body: body, deadline: deadline)
249248
}
250249

@@ -255,7 +254,7 @@ public class HTTPClient {
255254
/// - context: Baggage context associated with this request
256255
/// - body: Request body.
257256
/// - deadline: Point in time by which the request must complete.
258-
public func patch(url: String, context: LoggingBaggageContextCarrier, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
257+
public func patch(url: String, context: BaggageContext, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
259258
return self.execute(.PATCH, url: url, context: context, body: body, deadline: deadline)
260259
}
261260

@@ -266,7 +265,7 @@ public class HTTPClient {
266265
/// - context: Baggage context associated with this request
267266
/// - body: Request body.
268267
/// - deadline: Point in time by which the request must complete.
269-
public func put(url: String, context: LoggingBaggageContextCarrier, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
268+
public func put(url: String, context: BaggageContext, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
270269
return self.execute(.PUT, url: url, context: context, body: body, deadline: deadline)
271270
}
272271

@@ -276,7 +275,7 @@ public class HTTPClient {
276275
/// - url: Remote URL.
277276
/// - context: Baggage context associated with this request
278277
/// - deadline: The time when the request must have been completed by.
279-
public func delete(url: String, context: LoggingBaggageContextCarrier, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
278+
public func delete(url: String, context: BaggageContext, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
280279
return self.execute(.DELETE, url: url, context: context, deadline: deadline)
281280
}
282281

@@ -288,7 +287,7 @@ public class HTTPClient {
288287
/// - context: Baggage context associated with this request
289288
/// - body: Request body.
290289
/// - deadline: Point in time by which the request must complete.
291-
public func execute(_ method: HTTPMethod = .GET, url: String, context: LoggingBaggageContextCarrier, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
290+
public func execute(_ method: HTTPMethod = .GET, url: String, context: BaggageContext, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
292291
do {
293292
let request = try Request(url: url, method: method, body: body)
294293
return self.execute(request: request, context: context, deadline: deadline)
@@ -306,7 +305,7 @@ public class HTTPClient {
306305
/// - context: Baggage context associated with this request
307306
/// - body: Request body.
308307
/// - deadline: Point in time by which the request must complete.
309-
public func execute(_ method: HTTPMethod = .GET, socketPath: String, urlPath: String, context: LoggingBaggageContextCarrier, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
308+
public func execute(_ method: HTTPMethod = .GET, socketPath: String, urlPath: String, context: BaggageContext, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
310309
do {
311310
guard let url = URL(httpURLWithSocketPath: socketPath, uri: urlPath) else {
312311
throw HTTPClientError.invalidURL
@@ -328,7 +327,7 @@ public class HTTPClient {
328327
/// - body: Request body.
329328
/// - deadline: Point in time by which the request must complete.
330329
/// - logger: The logger to use for this request.
331-
public func execute(_ method: HTTPMethod = .GET, secureSocketPath: String, urlPath: String, context: LoggingBaggageContextCarrier, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
330+
public func execute(_ method: HTTPMethod = .GET, secureSocketPath: String, urlPath: String, context: BaggageContext, body: Body? = nil, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
332331
do {
333332
guard let url = URL(httpsURLWithSocketPath: secureSocketPath, uri: urlPath) else {
334333
throw HTTPClientError.invalidURL
@@ -346,7 +345,7 @@ public class HTTPClient {
346345
/// - request: HTTP request to execute.
347346
/// - context: Baggage context associated with this request
348347
/// - deadline: Point in time by which the request must complete.
349-
public func execute(request: Request, context: LoggingBaggageContextCarrier, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
348+
public func execute(request: Request, context: BaggageContext, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
350349
let accumulator = ResponseAccumulator(request: request)
351350
return self.execute(request: request, delegate: accumulator, context: context, deadline: deadline).futureResult
352351
}
@@ -358,7 +357,7 @@ public class HTTPClient {
358357
/// - eventLoop: NIO Event Loop preference.
359358
/// - context: Baggage context associated with this request
360359
/// - deadline: Point in time by which the request must complete.
361-
public func execute(request: Request, eventLoop: EventLoopPreference, context: LoggingBaggageContextCarrier, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
360+
public func execute(request: Request, eventLoop: EventLoopPreference, context: BaggageContext, deadline: NIODeadline? = nil) -> EventLoopFuture<Response> {
362361
let accumulator = ResponseAccumulator(request: request)
363362
return self.execute(request: request, delegate: accumulator, eventLoop: eventLoop, context: context, deadline: deadline).futureResult
364363
}
@@ -372,7 +371,7 @@ public class HTTPClient {
372371
/// - deadline: Point in time by which the request must complete.
373372
public func execute<Delegate: HTTPClientResponseDelegate>(request: Request,
374373
delegate: Delegate,
375-
context: LoggingBaggageContextCarrier,
374+
context: BaggageContext,
376375
deadline: NIODeadline? = nil) -> Task<Delegate.Response> {
377376
return self.execute(request: request, delegate: delegate, eventLoop: .indifferent, context: context, deadline: deadline)
378377
}
@@ -388,9 +387,9 @@ public class HTTPClient {
388387
public func execute<Delegate: HTTPClientResponseDelegate>(request: Request,
389388
delegate: Delegate,
390389
eventLoop eventLoopPreference: EventLoopPreference,
391-
context: LoggingBaggageContextCarrier,
390+
context: BaggageContext,
392391
deadline: NIODeadline? = nil) -> Task<Delegate.Response> {
393-
var span = InstrumentationSystem.tracingInstrument.startSpan(named: request.method.rawValue, context: context, ofKind: .client)
392+
let span = InstrumentationSystem.tracer.startSpan(named: request.method.rawValue, baggage: context.baggage, ofKind: .client)
394393
span.attributes.http.method = request.method.rawValue
395394
span.attributes.http.scheme = request.scheme
396395
span.attributes.http.target = request.uri
@@ -402,7 +401,7 @@ public class HTTPClient {
402401
// TODO: net.peer.ip / Not required, but recommended
403402

404403
var request = request
405-
InstrumentationSystem.instrument.inject(span.context.baggage, into: &request.headers, using: HTTPHeadersInjector())
404+
InstrumentationSystem.instrument.inject(span.baggage, into: &request.headers, using: HTTPHeadersInjector())
406405

407406
let logger = context.logger.attachingRequestInformation(request, requestID: globalRequestID.add(1))
408407

‎Sources/AsyncHTTPClient/Utils.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import NIOHTTP1
2121
import NIOHTTPCompression
2222
import NIOSSL
2323
import NIOTransportServices
24-
import TracingInstrumentation
24+
import Tracing
2525

2626
internal extension String {
2727
var isIPAddress: Bool {

‎Tests/AsyncHTTPClientTests/HTTPClientInternalTests.swift

+3-12
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
//===----------------------------------------------------------------------===//
1414

1515
@testable import AsyncHTTPClient
16-
import Baggage
17-
import BaggageLogging
16+
import BaggageContext
1817
import Logging
1918
import NIO
2019
import NIOConcurrencyHelpers
@@ -1177,14 +1176,6 @@ extension TaskHandler.State {
11771176
}
11781177
}
11791178

1180-
private struct TestContext: LoggingBaggageContextCarrier {
1181-
var logger: Logger
1182-
var baggage: BaggageContext
1183-
}
1184-
1185-
func testContext(
1186-
_ context: BaggageContext = BaggageContext(),
1187-
logger: Logger = Logger(label: "test")
1188-
) -> LoggingBaggageContextCarrier {
1189-
TestContext(logger: logger.with(context: context), baggage: context)
1179+
func testContext(_ baggage: Baggage = .topLevel, logger: Logger = Logger(label: "test")) -> BaggageContext {
1180+
DefaultContext(baggage: baggage, logger: logger)
11901181
}

‎Tests/AsyncHTTPClientTests/HTTPClientTests.swift

+15-20
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#endif
1919
import Baggage
2020
import Instrumentation
21-
import TracingInstrumentation
21+
import Tracing
2222
import Logging
2323
import NIO
2424
import NIOConcurrencyHelpers
@@ -501,7 +501,8 @@ class HTTPClientTests: XCTestCase {
501501

502502
let progress = try self.defaultClient.execute(
503503
request: request,
504-
delegate: delegate
504+
delegate: delegate,
505+
context: testContext()
505506
)
506507
.wait()
507508

@@ -526,7 +527,8 @@ class HTTPClientTests: XCTestCase {
526527

527528
let progress = try self.defaultClient.execute(
528529
request: request,
529-
delegate: delegate
530+
delegate: delegate,
531+
context: testContext()
530532
)
531533
.wait()
532534

@@ -2664,7 +2666,7 @@ class HTTPClientTests: XCTestCase {
26642666
func testDoubleError() throws {
26652667
// This is needed to that connection pool will not get into closed state when we release
26662668
// second connection.
2667-
_ = self.defaultClient.get(url: "http://localhost:\(self.defaultHTTPBin.port)/events/10/1")
2669+
_ = self.defaultClient.get(url: "http://localhost:\(self.defaultHTTPBin.port)/events/10/1", context: testContext())
26682670

26692671
var request = try HTTPClient.Request(url: "http://localhost:\(self.defaultHTTPBin.port)/wait", method: .POST)
26702672
request.body = .stream { writer in
@@ -2683,7 +2685,7 @@ class HTTPClientTests: XCTestCase {
26832685

26842686
// We specify a deadline of 2 ms co that request will be timed out before all chunks are writtent,
26852687
// we need to verify that second error on write after timeout does not lead to double-release.
2686-
XCTAssertThrowsError(try self.defaultClient.execute(request: request, deadline: .now() + .milliseconds(2)).wait())
2688+
XCTAssertThrowsError(try self.defaultClient.execute(request: request, context: testContext(), deadline: .now() + .milliseconds(2)).wait())
26872689
}
26882690

26892691
// MARK: - Tracing -
@@ -2708,19 +2710,16 @@ class HTTPClientTests: XCTestCase {
27082710
}
27092711
}
27102712

2711-
private final class TestTracer: TracingInstrument {
2713+
private final class TestTracer: Tracer {
27122714
private(set) var recordedSpans = [TestSpan]()
27132715

27142716
func startSpan(
27152717
named operationName: String,
2716-
context: BaggageContextCarrier,
2718+
baggage: Baggage,
27172719
ofKind kind: SpanKind,
27182720
at timestamp: Timestamp
27192721
) -> Span {
2720-
let span = TestSpan(operationName: operationName,
2721-
kind: kind,
2722-
startTimestamp: timestamp,
2723-
context: context.baggage)
2722+
let span = TestSpan(operationName: operationName, kind: kind, startTimestamp: timestamp, baggage: baggage)
27242723
recordedSpans.append(span)
27252724
return span
27262725
}
@@ -2729,26 +2728,22 @@ private final class TestTracer: TracingInstrument {
27292728

27302729
func extract<Carrier, Extractor>(
27312730
_ carrier: Carrier,
2732-
into context: inout BaggageContext,
2731+
into baggage: inout Baggage,
27332732
using extractor: Extractor
27342733
)
27352734
where
27362735
Carrier == Extractor.Carrier,
27372736
Extractor: ExtractorProtocol {}
27382737

2739-
func inject<Carrier, Injector>(
2740-
_ context: BaggageContext,
2741-
into carrier: inout Carrier,
2742-
using injector: Injector
2743-
)
2738+
func inject<Carrier, Injector>(_ baggage: Baggage, into carrier: inout Carrier, using injector: Injector)
27442739
where
27452740
Carrier == Injector.Carrier,
27462741
Injector: InjectorProtocol {}
27472742

27482743
final class TestSpan: Span {
27492744
private let operationName: String
27502745
private let kind: SpanKind
2751-
var context: BaggageContext
2746+
let baggage: Baggage
27522747

27532748
private(set) var status: SpanStatus?
27542749
private(set) var isRecording = false
@@ -2772,11 +2767,11 @@ private final class TestTracer: TracingInstrument {
27722767
self.status = status
27732768
}
27742769

2775-
init(operationName: String, kind: SpanKind, startTimestamp: Timestamp, context: BaggageContext) {
2770+
init(operationName: String, kind: SpanKind, startTimestamp: Timestamp, baggage: Baggage) {
27762771
self.operationName = operationName
27772772
self.kind = kind
27782773
self.startTimestamp = startTimestamp
2779-
self.context = context
2774+
self.baggage = baggage
27802775
}
27812776
}
27822777
}

0 commit comments

Comments
 (0)