Skip to content

Commit 30c18bb

Browse files
committed
fix: Works around a Linux specific compilation issue
This issue occurs against newer Swift development toolchains. #3
1 parent 72f330b commit 30c18bb

File tree

2 files changed

+33
-9
lines changed

2 files changed

+33
-9
lines changed

Sources/OpenTelemetrySdk/Logs/Processors/BatchLogRecordProcessor.swift

+16-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class BatchLogRecordProcessor : LogRecordProcessor {
3838
}
3939
}
4040

41-
private class BatchWorker : Thread {
41+
private class BatchWorker {
4242
let logRecordExporter : LogRecordExporter
4343
let scheduleDelay : TimeInterval
4444
let maxQueueSize : Int
@@ -49,7 +49,10 @@ private class BatchWorker : Thread {
4949
private let cond = NSCondition()
5050
var logRecordList = [ReadableLogRecord]()
5151
var queue : OperationQueue
52-
52+
// TODO: Workaround for the following compiler issue, and can be remove once resolved
53+
// https://github.com/swiftlang/swift/issues/76752
54+
private let _thread : Thread
55+
5356
init(logRecordExporter: LogRecordExporter,
5457
scheduleDelay: TimeInterval,
5558
exportTimeout: TimeInterval,
@@ -67,8 +70,17 @@ private class BatchWorker : Thread {
6770
queue = OperationQueue()
6871
queue.name = "BatchWorker Queue"
6972
queue.maxConcurrentOperationCount = 1
73+
self._thread = Thread()
7074
}
71-
75+
76+
func start() {
77+
self._thread.start()
78+
}
79+
80+
func cancel() {
81+
self._thread.cancel()
82+
}
83+
7284
func emit(logRecord: ReadableLogRecord) {
7385
cond.lock()
7486
defer { cond.unlock()}
@@ -84,7 +96,7 @@ private class BatchWorker : Thread {
8496
}
8597
}
8698

87-
override func main() {
99+
func main() {
88100
#if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
89101
repeat {
90102
autoreleasepool {

Sources/OpenTelemetrySdk/Trace/SpanProcessors/BatchSpanProcessor.swift

+17-5
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public struct BatchSpanProcessor: SpanProcessor {
5656
/// BatchWorker is a thread that batches multiple spans and calls the registered SpanExporter to export
5757
/// the data.
5858
/// The list of batched data is protected by a NSCondition which ensures full concurrency.
59-
private class BatchWorker: Thread {
59+
private class BatchWorker {
6060
let spanExporter: SpanExporter
6161
let scheduleDelay: TimeInterval
6262
let maxQueueSize: Int
@@ -67,7 +67,10 @@ private class BatchWorker: Thread {
6767
private let cond = NSCondition()
6868
var spanList = [ReadableSpan]()
6969
var queue: OperationQueue
70-
70+
// TODO: Workaround for the following compiler issue, and can be remove once resolved
71+
// https://github.com/swiftlang/swift/issues/76752
72+
private let _thread: Thread
73+
7174
init(spanExporter: SpanExporter, scheduleDelay: TimeInterval, exportTimeout: TimeInterval, maxQueueSize: Int, maxExportBatchSize: Int, willExportCallback: ((inout [SpanData]) -> Void)?) {
7275
self.spanExporter = spanExporter
7376
self.scheduleDelay = scheduleDelay
@@ -79,8 +82,17 @@ private class BatchWorker: Thread {
7982
queue = OperationQueue()
8083
queue.name = "BatchWorker Queue"
8184
queue.maxConcurrentOperationCount = 1
85+
self._thread = Thread()
8286
}
83-
87+
88+
func start() {
89+
self._thread.start()
90+
}
91+
92+
func cancel() {
93+
self._thread.cancel()
94+
}
95+
8496
func addSpan(span: ReadableSpan) {
8597
cond.lock()
8698
defer { cond.unlock() }
@@ -99,7 +111,7 @@ private class BatchWorker: Thread {
99111
}
100112

101113
#if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
102-
override func main() {
114+
func main() {
103115
repeat {
104116
autoreleasepool {
105117
var spansCopy: [ReadableSpan]
@@ -117,7 +129,7 @@ private class BatchWorker: Thread {
117129
} while true
118130
}
119131
#else
120-
override func main() {
132+
func main() {
121133
repeat {
122134
var spansCopy: [ReadableSpan]
123135
cond.lock()

0 commit comments

Comments
 (0)