12
12
//
13
13
//===----------------------------------------------------------------------===//
14
14
15
- import Baggage
16
- import BaggageLogging
15
+ import BaggageContext
17
16
import Foundation
18
17
import Instrumentation
19
- import TracingInstrumentation
18
+ import Tracing
20
19
import Logging
21
20
import NIO
22
21
import NIOConcurrencyHelpers
@@ -233,7 +232,7 @@ public class HTTPClient {
233
232
/// - url: Remote URL.
234
233
/// - context: Baggage context associated with this request
235
234
/// - 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 > {
237
236
return self . execute ( . GET, url: url, context: context, deadline: deadline)
238
237
}
239
238
@@ -244,7 +243,7 @@ public class HTTPClient {
244
243
/// - context: Baggage context associated with this request
245
244
/// - body: Request body.
246
245
/// - 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 > {
248
247
return self . execute ( . POST, url: url, context: context, body: body, deadline: deadline)
249
248
}
250
249
@@ -255,7 +254,7 @@ public class HTTPClient {
255
254
/// - context: Baggage context associated with this request
256
255
/// - body: Request body.
257
256
/// - 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 > {
259
258
return self . execute ( . PATCH, url: url, context: context, body: body, deadline: deadline)
260
259
}
261
260
@@ -266,7 +265,7 @@ public class HTTPClient {
266
265
/// - context: Baggage context associated with this request
267
266
/// - body: Request body.
268
267
/// - 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 > {
270
269
return self . execute ( . PUT, url: url, context: context, body: body, deadline: deadline)
271
270
}
272
271
@@ -276,7 +275,7 @@ public class HTTPClient {
276
275
/// - url: Remote URL.
277
276
/// - context: Baggage context associated with this request
278
277
/// - 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 > {
280
279
return self . execute ( . DELETE, url: url, context: context, deadline: deadline)
281
280
}
282
281
@@ -288,7 +287,7 @@ public class HTTPClient {
288
287
/// - context: Baggage context associated with this request
289
288
/// - body: Request body.
290
289
/// - 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 > {
292
291
do {
293
292
let request = try Request ( url: url, method: method, body: body)
294
293
return self . execute ( request: request, context: context, deadline: deadline)
@@ -306,7 +305,7 @@ public class HTTPClient {
306
305
/// - context: Baggage context associated with this request
307
306
/// - body: Request body.
308
307
/// - 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 > {
310
309
do {
311
310
guard let url = URL ( httpURLWithSocketPath: socketPath, uri: urlPath) else {
312
311
throw HTTPClientError . invalidURL
@@ -328,7 +327,7 @@ public class HTTPClient {
328
327
/// - body: Request body.
329
328
/// - deadline: Point in time by which the request must complete.
330
329
/// - 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 > {
332
331
do {
333
332
guard let url = URL ( httpsURLWithSocketPath: secureSocketPath, uri: urlPath) else {
334
333
throw HTTPClientError . invalidURL
@@ -346,7 +345,7 @@ public class HTTPClient {
346
345
/// - request: HTTP request to execute.
347
346
/// - context: Baggage context associated with this request
348
347
/// - 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 > {
350
349
let accumulator = ResponseAccumulator ( request: request)
351
350
return self . execute ( request: request, delegate: accumulator, context: context, deadline: deadline) . futureResult
352
351
}
@@ -358,7 +357,7 @@ public class HTTPClient {
358
357
/// - eventLoop: NIO Event Loop preference.
359
358
/// - context: Baggage context associated with this request
360
359
/// - 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 > {
362
361
let accumulator = ResponseAccumulator ( request: request)
363
362
return self . execute ( request: request, delegate: accumulator, eventLoop: eventLoop, context: context, deadline: deadline) . futureResult
364
363
}
@@ -372,7 +371,7 @@ public class HTTPClient {
372
371
/// - deadline: Point in time by which the request must complete.
373
372
public func execute< Delegate: HTTPClientResponseDelegate > ( request: Request ,
374
373
delegate: Delegate ,
375
- context: LoggingBaggageContextCarrier ,
374
+ context: BaggageContext ,
376
375
deadline: NIODeadline ? = nil ) -> Task < Delegate . Response > {
377
376
return self . execute ( request: request, delegate: delegate, eventLoop: . indifferent, context: context, deadline: deadline)
378
377
}
@@ -388,9 +387,9 @@ public class HTTPClient {
388
387
public func execute< Delegate: HTTPClientResponseDelegate > ( request: Request ,
389
388
delegate: Delegate ,
390
389
eventLoop eventLoopPreference: EventLoopPreference ,
391
- context: LoggingBaggageContextCarrier ,
390
+ context: BaggageContext ,
392
391
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)
394
393
span. attributes. http. method = request. method. rawValue
395
394
span. attributes. http. scheme = request. scheme
396
395
span. attributes. http. target = request. uri
@@ -402,7 +401,7 @@ public class HTTPClient {
402
401
// TODO: net.peer.ip / Not required, but recommended
403
402
404
403
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 ( ) )
406
405
407
406
let logger = context. logger. attachingRequestInformation ( request, requestID: globalRequestID. add ( 1 ) )
408
407
0 commit comments