Skip to content

Commit 11b09b6

Browse files
Catch exceptions from user callbacks early
1 parent cb2f297 commit 11b09b6

File tree

3 files changed

+58
-11
lines changed

3 files changed

+58
-11
lines changed

src/impl/channel.cpp

+39-8
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,58 @@
77
*/
88

99
#include "channel.hpp"
10+
#include "internals.hpp"
1011

1112
namespace rtc::impl {
1213

1314
void Channel::triggerOpen() {
1415
mOpenTriggered = true;
15-
openCallback();
16+
try {
17+
openCallback();
18+
} catch (const std::exception &e) {
19+
PLOG_WARNING << "Uncaught exception in callback: " << e.what();
20+
}
1621
flushPendingMessages();
1722
}
1823

19-
void Channel::triggerClosed() { closedCallback(); }
24+
void Channel::triggerClosed() {
25+
try {
26+
closedCallback();
27+
} catch (const std::exception &e) {
28+
PLOG_WARNING << "Uncaught exception in callback: " << e.what();
29+
}
30+
}
2031

21-
void Channel::triggerError(string error) { errorCallback(std::move(error)); }
32+
void Channel::triggerError(string error) {
33+
try {
34+
errorCallback(std::move(error));
35+
} catch (const std::exception &e) {
36+
PLOG_WARNING << "Uncaught exception in callback: " << e.what();
37+
}
38+
}
2239

2340
void Channel::triggerAvailable(size_t count) {
24-
if (count == 1)
25-
availableCallback();
41+
if (count == 1) {
42+
try {
43+
availableCallback();
44+
} catch (const std::exception &e) {
45+
PLOG_WARNING << "Uncaught exception in callback: " << e.what();
46+
}
47+
}
2648

2749
flushPendingMessages();
2850
}
2951

3052
void Channel::triggerBufferedAmount(size_t amount) {
3153
size_t previous = bufferedAmount.exchange(amount);
3254
size_t threshold = bufferedAmountLowThreshold.load();
33-
if (previous > threshold && amount <= threshold)
34-
bufferedAmountLowCallback();
55+
if (previous > threshold && amount <= threshold) {
56+
try {
57+
bufferedAmountLowCallback();
58+
} catch (const std::exception &e) {
59+
PLOG_WARNING << "Uncaught exception in callback: " << e.what();
60+
}
61+
}
3562
}
3663

3764
void Channel::flushPendingMessages() {
@@ -43,7 +70,11 @@ void Channel::flushPendingMessages() {
4370
if (!next)
4471
break;
4572

46-
messageCallback(*next);
73+
try {
74+
messageCallback(*next);
75+
} catch (const std::exception &e) {
76+
PLOG_WARNING << "Uncaught exception in callback: " << e.what();
77+
}
4778
}
4879
}
4980

src/impl/peerconnection.cpp

+14-2
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,13 @@ void PeerConnection::triggerPendingDataChannels() {
10941094
break;
10951095

10961096
auto impl = std::move(*next);
1097-
dataChannelCallback(std::make_shared<rtc::DataChannel>(impl));
1097+
1098+
try {
1099+
dataChannelCallback(std::make_shared<rtc::DataChannel>(impl));
1100+
} catch (const std::exception &e) {
1101+
PLOG_WARNING << "Uncaught exception in callback: " << e.what();
1102+
}
1103+
10981104
impl->triggerOpen();
10991105
}
11001106
}
@@ -1106,7 +1112,13 @@ void PeerConnection::triggerPendingTracks() {
11061112
break;
11071113

11081114
auto impl = std::move(*next);
1109-
trackCallback(std::make_shared<rtc::Track>(impl));
1115+
1116+
try {
1117+
trackCallback(std::make_shared<rtc::Track>(impl));
1118+
} catch (const std::exception &e) {
1119+
PLOG_WARNING << "Uncaught exception in callback: " << e.what();
1120+
}
1121+
11101122
// Do not trigger open immediately for tracks as it'll be done later
11111123
}
11121124
}

src/impl/peerconnection.hpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,11 @@ struct PeerConnection : std::enable_shared_from_this<PeerConnection> {
9696

9797
// Helper method for asynchronous callback invocation
9898
template <typename... Args> void trigger(synchronized_callback<Args...> *cb, Args... args) {
99-
(*cb)(std::move(args...));
99+
try {
100+
(*cb)(std::move(args...));
101+
} catch (const std::exception &e) {
102+
PLOG_WARNING << "Uncaught exception in callback: " << e.what();
103+
}
100104
}
101105

102106
const Configuration config;

0 commit comments

Comments
 (0)