|
6 | 6 | #define MP_PROXY_TYPES_H
|
7 | 7 |
|
8 | 8 | #include <mp/proxy-io.h>
|
| 9 | + |
| 10 | +#include <exception> |
| 11 | +#include <optional> |
9 | 12 | #include <set>
|
10 | 13 | #include <vector>
|
11 | 14 |
|
@@ -178,7 +181,7 @@ class Emplace
|
178 | 181 | Value& m_value;
|
179 | 182 |
|
180 | 183 | template <typename T, typename... Params>
|
181 |
| - static T& call(boost::optional<T>& value, Params&&... params) |
| 184 | + static T& call(std::optional<T>& value, Params&&... params) |
182 | 185 | {
|
183 | 186 | value.emplace(std::forward<Params>(params)...);
|
184 | 187 | return *value;
|
@@ -227,7 +230,7 @@ class Emplace
|
227 | 230 | };
|
228 | 231 |
|
229 | 232 | template <typename LocalType, typename Input, typename DestValue>
|
230 |
| -void ReadFieldUpdate(TypeList<boost::optional<LocalType>>, |
| 233 | +void ReadFieldUpdate(TypeList<std::optional<LocalType>>, |
231 | 234 | InvokeContext& invoke_context,
|
232 | 235 | Input&& input,
|
233 | 236 | DestValue&& value)
|
@@ -832,7 +835,7 @@ LocalType BuildPrimitive(InvokeContext& invoke_context,
|
832 | 835 | }
|
833 | 836 |
|
834 | 837 | template <typename LocalType, typename Value, typename Output>
|
835 |
| -void CustomBuildField(TypeList<boost::optional<LocalType>>, |
| 838 | +void CustomBuildField(TypeList<std::optional<LocalType>>, |
836 | 839 | Priority<1>,
|
837 | 840 | InvokeContext& invoke_context,
|
838 | 841 | Value&& value,
|
@@ -1038,7 +1041,7 @@ template <typename Accessor, typename LocalType, typename ServerContext, typenam
|
1038 | 1041 | void DefaultPassField(TypeList<LocalType>, ServerContext& server_context, Fn&& fn, Args&&... args)
|
1039 | 1042 | {
|
1040 | 1043 | InvokeContext& invoke_context = server_context;
|
1041 |
| - boost::optional<Decay<LocalType>> param; |
| 1044 | + std::optional<Decay<LocalType>> param; |
1042 | 1045 | const auto& params = server_context.call_context.getParams();
|
1043 | 1046 | MaybeReadField(std::integral_constant<bool, Accessor::in>(), TypeList<LocalType>(), invoke_context,
|
1044 | 1047 | Make<StructField, Accessor>(params), Emplace<decltype(param)>(param));
|
@@ -1434,9 +1437,11 @@ kj::Promise<void> serverInvoke(Server& server, CallContext& call_context, Fn fn)
|
1434 | 1437 | server.m_connection.m_loop.log() << "IPC server send response #" << req << " " << TypeName<Results>()
|
1435 | 1438 | << " " << LogEscape(call_context.getResults().toString());
|
1436 | 1439 | });
|
| 1440 | + } catch (const std::exception& e) { |
| 1441 | + server.m_connection.m_loop.log() << "IPC server unhandled exception: " << e.what(); |
| 1442 | + throw; |
1437 | 1443 | } catch (...) {
|
1438 |
| - server.m_connection.m_loop.log() |
1439 |
| - << "IPC server unhandled exception " << boost::current_exception_diagnostic_information(); |
| 1444 | + server.m_connection.m_loop.log() << "IPC server unhandled exception"; |
1440 | 1445 | throw;
|
1441 | 1446 | }
|
1442 | 1447 | }
|
|
0 commit comments