Warning, file /include/boost/mysql/any_connection.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_MYSQL_ANY_CONNECTION_HPP
0009 #define BOOST_MYSQL_ANY_CONNECTION_HPP
0010
0011 #include <boost/mysql/any_address.hpp>
0012 #include <boost/mysql/character_set.hpp>
0013 #include <boost/mysql/connect_params.hpp>
0014 #include <boost/mysql/defaults.hpp>
0015 #include <boost/mysql/diagnostics.hpp>
0016 #include <boost/mysql/error_code.hpp>
0017 #include <boost/mysql/execution_state.hpp>
0018 #include <boost/mysql/metadata_mode.hpp>
0019 #include <boost/mysql/rows_view.hpp>
0020 #include <boost/mysql/statement.hpp>
0021 #include <boost/mysql/string_view.hpp>
0022
0023 #include <boost/mysql/detail/access.hpp>
0024 #include <boost/mysql/detail/algo_params.hpp>
0025 #include <boost/mysql/detail/config.hpp>
0026 #include <boost/mysql/detail/connect_params_helpers.hpp>
0027 #include <boost/mysql/detail/connection_impl.hpp>
0028 #include <boost/mysql/detail/engine.hpp>
0029 #include <boost/mysql/detail/execution_concepts.hpp>
0030 #include <boost/mysql/detail/ssl_fwd.hpp>
0031 #include <boost/mysql/detail/throw_on_error_loc.hpp>
0032
0033 #include <boost/asio/any_io_executor.hpp>
0034 #include <boost/assert.hpp>
0035 #include <boost/system/result.hpp>
0036
0037 #include <cstddef>
0038 #include <memory>
0039 #include <type_traits>
0040 #include <utility>
0041 #include <vector>
0042
0043 namespace boost {
0044 namespace mysql {
0045
0046
0047 template <class... StaticRow>
0048 class static_execution_state;
0049
0050 class pipeline_request;
0051 class stage_response;
0052
0053
0054
0055
0056
0057
0058
0059
0060 struct any_connection_params
0061 {
0062
0063
0064
0065
0066
0067
0068
0069
0070
0071
0072
0073
0074
0075
0076
0077
0078
0079
0080
0081 asio::ssl::context* ssl_context{};
0082
0083
0084
0085
0086
0087
0088 std::size_t initial_buffer_size{default_initial_read_buffer_size};
0089
0090
0091
0092
0093
0094
0095
0096
0097
0098
0099
0100
0101
0102
0103
0104
0105
0106
0107 std::size_t max_buffer_size{0x4000000};
0108 };
0109
0110
0111
0112
0113
0114
0115
0116
0117
0118
0119
0120
0121
0122
0123
0124
0125
0126
0127
0128
0129
0130
0131
0132
0133
0134
0135 class any_connection
0136 {
0137 detail::connection_impl impl_;
0138
0139 #ifndef BOOST_MYSQL_DOXYGEN
0140 friend struct detail::access;
0141 #endif
0142
0143 BOOST_MYSQL_DECL
0144 static std::unique_ptr<detail::engine> create_engine(asio::any_io_executor ex, asio::ssl::context* ctx);
0145
0146
0147 any_connection(
0148 std::size_t initial_buffer_size,
0149 std::size_t max_buffer_size,
0150 std::unique_ptr<detail::engine> eng
0151 )
0152 : impl_(initial_buffer_size, max_buffer_size, std::move(eng))
0153 {
0154 }
0155
0156 public:
0157
0158
0159
0160
0161
0162
0163
0164
0165
0166 any_connection(boost::asio::any_io_executor ex, any_connection_params params = {})
0167 : any_connection(
0168 params.initial_buffer_size,
0169 params.max_buffer_size,
0170 create_engine(std::move(ex), params.ssl_context)
0171 )
0172 {
0173 }
0174
0175
0176
0177
0178
0179
0180
0181
0182
0183
0184
0185
0186
0187 template <
0188 class ExecutionContext
0189 #ifndef BOOST_MYSQL_DOXYGEN
0190 ,
0191 class = typename std::enable_if<std::is_convertible<
0192 decltype(std::declval<ExecutionContext&>().get_executor()),
0193 asio::any_io_executor>::value>::type
0194 #endif
0195 >
0196 any_connection(ExecutionContext& ctx, any_connection_params params = {})
0197 : any_connection(ctx.get_executor(), params)
0198 {
0199 }
0200
0201
0202
0203
0204 any_connection(any_connection&& other) = default;
0205
0206
0207
0208
0209 any_connection& operator=(any_connection&& rhs) = default;
0210
0211 #ifndef BOOST_MYSQL_DOXYGEN
0212 any_connection(const any_connection&) = delete;
0213 any_connection& operator=(const any_connection&) = delete;
0214 #endif
0215
0216
0217
0218
0219
0220
0221
0222
0223 ~any_connection() = default;
0224
0225
0226 using executor_type = asio::any_io_executor;
0227
0228
0229
0230
0231
0232
0233 executor_type get_executor() noexcept { return impl_.get_engine().get_executor(); }
0234
0235
0236
0237
0238
0239
0240
0241
0242
0243
0244
0245
0246
0247
0248 bool uses_ssl() const noexcept { return impl_.ssl_active(); }
0249
0250
0251
0252
0253
0254
0255
0256
0257
0258
0259
0260
0261
0262
0263
0264
0265
0266
0267
0268
0269
0270
0271
0272
0273 bool backslash_escapes() const noexcept { return impl_.backslash_escapes(); }
0274
0275
0276
0277
0278
0279
0280
0281
0282
0283
0284
0285
0286
0287
0288
0289
0290
0291
0292
0293
0294
0295
0296
0297
0298
0299
0300
0301
0302
0303 system::result<character_set> current_character_set() const noexcept
0304 {
0305 return impl_.current_character_set();
0306 }
0307
0308
0309
0310
0311
0312
0313
0314
0315
0316
0317
0318
0319
0320 system::result<format_options> format_opts() const noexcept
0321 {
0322 auto res = current_character_set();
0323 if (res.has_error())
0324 return res.error();
0325 return format_options{res.value(), backslash_escapes()};
0326 }
0327
0328
0329 metadata_mode meta_mode() const noexcept { return impl_.meta_mode(); }
0330
0331
0332 void set_meta_mode(metadata_mode v) noexcept { impl_.set_meta_mode(v); }
0333
0334
0335
0336
0337
0338
0339
0340
0341
0342
0343
0344
0345
0346
0347
0348
0349
0350
0351
0352
0353
0354
0355
0356
0357
0358
0359
0360
0361
0362
0363
0364
0365
0366
0367
0368
0369
0370 void connect(const connect_params& params, error_code& ec, diagnostics& diag)
0371 {
0372 impl_.connect_v2(params, ec, diag);
0373 }
0374
0375
0376 void connect(const connect_params& params)
0377 {
0378 error_code err;
0379 diagnostics diag;
0380 connect(params, err, diag);
0381 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0382 }
0383
0384
0385
0386
0387
0388
0389
0390
0391
0392
0393
0394 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(error_code)) CompletionToken>
0395 auto async_connect(const connect_params& params, diagnostics& diag, CompletionToken&& token)
0396 BOOST_MYSQL_RETURN_TYPE(detail::async_connect_v2_t<CompletionToken&&>)
0397 {
0398 return impl_.async_connect_v2(params, diag, std::forward<CompletionToken>(token));
0399 }
0400
0401
0402 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(error_code)) CompletionToken>
0403 auto async_connect(const connect_params& params, CompletionToken&& token)
0404 BOOST_MYSQL_RETURN_TYPE(detail::async_connect_v2_t<CompletionToken&&>)
0405 {
0406 return async_connect(params, impl_.shared_diag(), std::forward<CompletionToken>(token));
0407 }
0408
0409
0410 template <BOOST_MYSQL_EXECUTION_REQUEST ExecutionRequest, BOOST_MYSQL_RESULTS_TYPE ResultsType>
0411 void execute(const ExecutionRequest& req, ResultsType& result, error_code& err, diagnostics& diag)
0412 {
0413 impl_.execute(req, result, err, diag);
0414 }
0415
0416
0417 template <BOOST_MYSQL_EXECUTION_REQUEST ExecutionRequest, BOOST_MYSQL_RESULTS_TYPE ResultsType>
0418 void execute(const ExecutionRequest& req, ResultsType& result)
0419 {
0420 error_code err;
0421 diagnostics diag;
0422 execute(req, result, err, diag);
0423 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0424 }
0425
0426
0427 template <
0428 BOOST_MYSQL_EXECUTION_REQUEST ExecutionRequest,
0429 BOOST_MYSQL_RESULTS_TYPE ResultsType,
0430 BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0431 auto async_execute(ExecutionRequest&& req, ResultsType& result, CompletionToken&& token)
0432 BOOST_MYSQL_RETURN_TYPE(detail::async_execute_t<ExecutionRequest&&, ResultsType, CompletionToken&&>)
0433 {
0434 return async_execute(
0435 std::forward<ExecutionRequest>(req),
0436 result,
0437 impl_.shared_diag(),
0438 std::forward<CompletionToken>(token)
0439 );
0440 }
0441
0442
0443 template <
0444 BOOST_MYSQL_EXECUTION_REQUEST ExecutionRequest,
0445 BOOST_MYSQL_RESULTS_TYPE ResultsType,
0446 BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0447 auto async_execute(
0448 ExecutionRequest&& req,
0449 ResultsType& result,
0450 diagnostics& diag,
0451 CompletionToken&& token
0452 ) BOOST_MYSQL_RETURN_TYPE(detail::async_execute_t<ExecutionRequest&&, ResultsType, CompletionToken&&>)
0453 {
0454 return impl_.async_execute(
0455 std::forward<ExecutionRequest>(req),
0456 result,
0457 diag,
0458 std::forward<CompletionToken>(token)
0459 );
0460 }
0461
0462
0463 template <
0464 BOOST_MYSQL_EXECUTION_REQUEST ExecutionRequest,
0465 BOOST_MYSQL_EXECUTION_STATE_TYPE ExecutionStateType>
0466 void start_execution(
0467 const ExecutionRequest& req,
0468 ExecutionStateType& st,
0469 error_code& err,
0470 diagnostics& diag
0471 )
0472 {
0473 impl_.start_execution(req, st, err, diag);
0474 }
0475
0476
0477 template <
0478 BOOST_MYSQL_EXECUTION_REQUEST ExecutionRequest,
0479 BOOST_MYSQL_EXECUTION_STATE_TYPE ExecutionStateType>
0480 void start_execution(const ExecutionRequest& req, ExecutionStateType& st)
0481 {
0482 error_code err;
0483 diagnostics diag;
0484 start_execution(req, st, err, diag);
0485 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0486 }
0487
0488
0489 template <
0490 BOOST_MYSQL_EXECUTION_REQUEST ExecutionRequest,
0491 BOOST_MYSQL_EXECUTION_STATE_TYPE ExecutionStateType,
0492 BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0493 auto async_start_execution(ExecutionRequest&& req, ExecutionStateType& st, CompletionToken&& token)
0494 BOOST_MYSQL_RETURN_TYPE(detail::async_start_execution_t<
0495 ExecutionRequest&&,
0496 ExecutionStateType,
0497 CompletionToken&&>)
0498 {
0499 return async_start_execution(
0500 std::forward<ExecutionRequest>(req),
0501 st,
0502 impl_.shared_diag(),
0503 std::forward<CompletionToken>(token)
0504 );
0505 }
0506
0507
0508 template <
0509 BOOST_MYSQL_EXECUTION_REQUEST ExecutionRequest,
0510 BOOST_MYSQL_EXECUTION_STATE_TYPE ExecutionStateType,
0511 BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0512 auto async_start_execution(
0513 ExecutionRequest&& req,
0514 ExecutionStateType& st,
0515 diagnostics& diag,
0516 CompletionToken&& token
0517 )
0518 BOOST_MYSQL_RETURN_TYPE(detail::async_start_execution_t<
0519 ExecutionRequest&&,
0520 ExecutionStateType,
0521 CompletionToken&&>)
0522 {
0523 return impl_.async_start_execution(
0524 std::forward<ExecutionRequest>(req),
0525 st,
0526 diag,
0527 std::forward<CompletionToken>(token)
0528 );
0529 }
0530
0531
0532 statement prepare_statement(string_view stmt, error_code& err, diagnostics& diag)
0533 {
0534 return impl_.run(detail::prepare_statement_algo_params{&diag, stmt}, err);
0535 }
0536
0537
0538 statement prepare_statement(string_view stmt)
0539 {
0540 error_code err;
0541 diagnostics diag;
0542 statement res = prepare_statement(stmt, err, diag);
0543 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0544 return res;
0545 }
0546
0547
0548 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code, ::boost::mysql::statement))
0549 CompletionToken>
0550 auto async_prepare_statement(string_view stmt, CompletionToken&& token)
0551 BOOST_MYSQL_RETURN_TYPE(detail::async_prepare_statement_t<CompletionToken&&>)
0552 {
0553 return async_prepare_statement(stmt, impl_.shared_diag(), std::forward<CompletionToken>(token));
0554 }
0555
0556
0557 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code, ::boost::mysql::statement))
0558 CompletionToken>
0559 auto async_prepare_statement(string_view stmt, diagnostics& diag, CompletionToken&& token)
0560 BOOST_MYSQL_RETURN_TYPE(detail::async_prepare_statement_t<CompletionToken&&>)
0561 {
0562 return impl_.async_run(
0563 detail::prepare_statement_algo_params{&diag, stmt},
0564 std::forward<CompletionToken>(token)
0565 );
0566 }
0567
0568
0569 void close_statement(const statement& stmt, error_code& err, diagnostics& diag)
0570 {
0571 impl_.run(impl_.make_params_close_statement(stmt, diag), err);
0572 }
0573
0574
0575 void close_statement(const statement& stmt)
0576 {
0577 error_code err;
0578 diagnostics diag;
0579 close_statement(stmt, err, diag);
0580 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0581 }
0582
0583
0584 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0585 auto async_close_statement(const statement& stmt, CompletionToken&& token)
0586 BOOST_MYSQL_RETURN_TYPE(detail::async_close_statement_t<CompletionToken&&>)
0587 {
0588 return async_close_statement(stmt, impl_.shared_diag(), std::forward<CompletionToken>(token));
0589 }
0590
0591
0592 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0593 auto async_close_statement(const statement& stmt, diagnostics& diag, CompletionToken&& token)
0594 BOOST_MYSQL_RETURN_TYPE(detail::async_close_statement_t<CompletionToken&&>)
0595 {
0596 return impl_.async_run(
0597 impl_.make_params_close_statement(stmt, diag),
0598 std::forward<CompletionToken>(token)
0599 );
0600 }
0601
0602
0603 rows_view read_some_rows(execution_state& st, error_code& err, diagnostics& diag)
0604 {
0605 return impl_.run(impl_.make_params_read_some_rows(st, diag), err);
0606 }
0607
0608
0609 rows_view read_some_rows(execution_state& st)
0610 {
0611 error_code err;
0612 diagnostics diag;
0613 rows_view res = read_some_rows(st, err, diag);
0614 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0615 return res;
0616 }
0617
0618
0619 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code, ::boost::mysql::rows_view))
0620 CompletionToken>
0621 auto async_read_some_rows(execution_state& st, CompletionToken&& token)
0622 BOOST_MYSQL_RETURN_TYPE(detail::async_read_some_rows_dynamic_t<CompletionToken&&>)
0623 {
0624 return async_read_some_rows(st, impl_.shared_diag(), std::forward<CompletionToken>(token));
0625 }
0626
0627
0628 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code, ::boost::mysql::rows_view))
0629 CompletionToken>
0630 auto async_read_some_rows(execution_state& st, diagnostics& diag, CompletionToken&& token)
0631 BOOST_MYSQL_RETURN_TYPE(detail::async_read_some_rows_dynamic_t<CompletionToken&&>)
0632 {
0633 return impl_.async_run(
0634 impl_.make_params_read_some_rows(st, diag),
0635 std::forward<CompletionToken>(token)
0636 );
0637 }
0638
0639 #ifdef BOOST_MYSQL_CXX14
0640
0641
0642
0643
0644
0645
0646
0647
0648
0649
0650
0651
0652
0653
0654
0655
0656
0657
0658
0659
0660
0661
0662
0663
0664
0665
0666
0667
0668 template <class SpanElementType, class... StaticRow>
0669 std::size_t read_some_rows(
0670 static_execution_state<StaticRow...>& st,
0671 span<SpanElementType> output,
0672 error_code& err,
0673 diagnostics& diag
0674 )
0675 {
0676 return impl_.run(impl_.make_params_read_some_rows_static(st, output, diag), err);
0677 }
0678
0679
0680
0681
0682
0683
0684
0685
0686
0687
0688
0689
0690
0691
0692
0693
0694
0695
0696
0697
0698
0699
0700
0701
0702
0703
0704
0705
0706 template <class SpanElementType, class... StaticRow>
0707 std::size_t read_some_rows(static_execution_state<StaticRow...>& st, span<SpanElementType> output)
0708 {
0709 error_code err;
0710 diagnostics diag;
0711 std::size_t res = read_some_rows(st, output, err, diag);
0712 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0713 return res;
0714 }
0715
0716
0717
0718
0719
0720
0721
0722
0723
0724
0725
0726
0727
0728
0729
0730
0731
0732
0733
0734
0735
0736
0737
0738
0739
0740
0741
0742
0743
0744
0745
0746
0747
0748
0749
0750 template <
0751 class SpanElementType,
0752 class... StaticRow,
0753 BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code, std::size_t))
0754 CompletionToken BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
0755 auto async_read_some_rows(
0756 static_execution_state<StaticRow...>& st,
0757 span<SpanElementType> output,
0758 CompletionToken&& token BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type)
0759 )
0760 {
0761 return async_read_some_rows(st, output, impl_.shared_diag(), std::forward<CompletionToken>(token));
0762 }
0763
0764
0765
0766
0767
0768
0769
0770
0771
0772
0773
0774
0775
0776
0777
0778
0779
0780
0781
0782
0783
0784
0785
0786
0787
0788
0789
0790
0791
0792
0793
0794
0795
0796
0797
0798 template <
0799 class SpanElementType,
0800 class... StaticRow,
0801 BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code, std::size_t))
0802 CompletionToken BOOST_ASIO_DEFAULT_COMPLETION_TOKEN_TYPE(executor_type)>
0803 auto async_read_some_rows(
0804 static_execution_state<StaticRow...>& st,
0805 span<SpanElementType> output,
0806 diagnostics& diag,
0807 CompletionToken&& token BOOST_ASIO_DEFAULT_COMPLETION_TOKEN(executor_type)
0808 )
0809 {
0810 return impl_.async_run(
0811 impl_.make_params_read_some_rows_static(st, output, diag),
0812 std::forward<CompletionToken>(token)
0813 );
0814 }
0815 #endif
0816
0817
0818 template <BOOST_MYSQL_EXECUTION_STATE_TYPE ExecutionStateType>
0819 void read_resultset_head(ExecutionStateType& st, error_code& err, diagnostics& diag)
0820 {
0821 return impl_.run(impl_.make_params_read_resultset_head(st, diag), err);
0822 }
0823
0824
0825 template <BOOST_MYSQL_EXECUTION_STATE_TYPE ExecutionStateType>
0826 void read_resultset_head(ExecutionStateType& st)
0827 {
0828 error_code err;
0829 diagnostics diag;
0830 read_resultset_head(st, err, diag);
0831 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0832 }
0833
0834
0835 template <
0836 BOOST_MYSQL_EXECUTION_STATE_TYPE ExecutionStateType,
0837 BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0838 auto async_read_resultset_head(ExecutionStateType& st, CompletionToken&& token)
0839 BOOST_MYSQL_RETURN_TYPE(detail::async_read_resultset_head_t<CompletionToken&&>)
0840 {
0841 return async_read_resultset_head(st, impl_.shared_diag(), std::forward<CompletionToken>(token));
0842 }
0843
0844
0845 template <
0846 BOOST_MYSQL_EXECUTION_STATE_TYPE ExecutionStateType,
0847 BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0848 auto async_read_resultset_head(ExecutionStateType& st, diagnostics& diag, CompletionToken&& token)
0849 BOOST_MYSQL_RETURN_TYPE(detail::async_read_resultset_head_t<CompletionToken&&>)
0850 {
0851 return impl_.async_run(
0852 impl_.make_params_read_resultset_head(st, diag),
0853 std::forward<CompletionToken>(token)
0854 );
0855 }
0856
0857
0858
0859
0860
0861
0862
0863
0864
0865
0866
0867
0868
0869
0870
0871
0872
0873
0874
0875
0876
0877
0878 void set_character_set(const character_set& charset, error_code& err, diagnostics& diag)
0879 {
0880 impl_.run(impl_.make_params_set_character_set(charset, diag), err);
0881 }
0882
0883
0884 void set_character_set(const character_set& charset)
0885 {
0886 error_code err;
0887 diagnostics diag;
0888 set_character_set(charset, err, diag);
0889 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0890 }
0891
0892
0893
0894
0895
0896
0897
0898
0899 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0900 auto async_set_character_set(const character_set& charset, CompletionToken&& token)
0901 BOOST_MYSQL_RETURN_TYPE(detail::async_set_character_set_t<CompletionToken&&>)
0902 {
0903 return async_set_character_set(charset, impl_.shared_diag(), std::forward<CompletionToken>(token));
0904 }
0905
0906
0907 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0908 auto async_set_character_set(const character_set& charset, diagnostics& diag, CompletionToken&& token)
0909 BOOST_MYSQL_RETURN_TYPE(detail::async_set_character_set_t<CompletionToken&&>)
0910 {
0911 return impl_.async_run(
0912 impl_.make_params_set_character_set(charset, diag),
0913 std::forward<CompletionToken>(token)
0914 );
0915 }
0916
0917
0918 void ping(error_code& err, diagnostics& diag) { impl_.run(impl_.make_params_ping(diag), err); }
0919
0920
0921 void ping()
0922 {
0923 error_code err;
0924 diagnostics diag;
0925 ping(err, diag);
0926 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0927 }
0928
0929
0930 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0931 auto async_ping(CompletionToken&& token) BOOST_MYSQL_RETURN_TYPE(detail::async_ping_t<CompletionToken&&>)
0932 {
0933 return async_ping(impl_.shared_diag(), std::forward<CompletionToken>(token));
0934 }
0935
0936
0937 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
0938 auto async_ping(diagnostics& diag, CompletionToken&& token)
0939 BOOST_MYSQL_RETURN_TYPE(detail::async_ping_t<CompletionToken&&>)
0940 {
0941 return impl_.async_run(impl_.make_params_ping(diag), std::forward<CompletionToken>(token));
0942 }
0943
0944
0945
0946
0947
0948
0949
0950
0951
0952
0953
0954
0955
0956
0957
0958
0959
0960
0961
0962
0963
0964
0965
0966
0967
0968
0969
0970
0971
0972
0973
0974
0975
0976
0977
0978
0979 void reset_connection(error_code& err, diagnostics& diag)
0980 {
0981 impl_.run(impl_.make_params_reset_connection(diag), err);
0982 }
0983
0984
0985 void reset_connection()
0986 {
0987 error_code err;
0988 diagnostics diag;
0989 reset_connection(err, diag);
0990 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
0991 }
0992
0993
0994
0995
0996
0997
0998
0999
1000 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
1001 auto async_reset_connection(CompletionToken&& token)
1002 BOOST_MYSQL_RETURN_TYPE(detail::async_reset_connection_t<CompletionToken&&>)
1003 {
1004 return async_reset_connection(impl_.shared_diag(), std::forward<CompletionToken>(token));
1005 }
1006
1007
1008 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(::boost::mysql::error_code)) CompletionToken>
1009 auto async_reset_connection(diagnostics& diag, CompletionToken&& token)
1010 BOOST_MYSQL_RETURN_TYPE(detail::async_reset_connection_t<CompletionToken&&>)
1011 {
1012 return impl_.async_run(
1013 impl_.make_params_reset_connection(diag),
1014 std::forward<CompletionToken>(token)
1015 );
1016 }
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037 void close(error_code& err, diagnostics& diag)
1038 {
1039 this->impl_.run(this->impl_.make_params_close(diag), err);
1040 }
1041
1042
1043 void close()
1044 {
1045 error_code err;
1046 diagnostics diag;
1047 close(err, diag);
1048 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
1049 }
1050
1051
1052
1053
1054
1055
1056
1057 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(error_code)) CompletionToken>
1058 auto async_close(CompletionToken&& token)
1059 BOOST_MYSQL_RETURN_TYPE(detail::async_close_connection_t<CompletionToken&&>)
1060 {
1061 return async_close(impl_.shared_diag(), std::forward<CompletionToken>(token));
1062 }
1063
1064
1065 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(error_code)) CompletionToken>
1066 auto async_close(diagnostics& diag, CompletionToken&& token)
1067 BOOST_MYSQL_RETURN_TYPE(detail::async_close_connection_t<CompletionToken&&>)
1068 {
1069 return this->impl_.async_run(
1070 this->impl_.make_params_close(diag),
1071 std::forward<CompletionToken>(token)
1072 );
1073 }
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096 void run_pipeline(
1097 const pipeline_request& req,
1098 std::vector<stage_response>& res,
1099 error_code& err,
1100 diagnostics& diag
1101 )
1102 {
1103 impl_.run(impl_.make_params_pipeline(req, res, diag), err);
1104 }
1105
1106
1107 void run_pipeline(const pipeline_request& req, std::vector<stage_response>& res)
1108 {
1109 error_code err;
1110 diagnostics diag;
1111 run_pipeline(req, res, err, diag);
1112 detail::throw_on_error_loc(err, diag, BOOST_CURRENT_LOCATION);
1113 }
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(error_code)) CompletionToken>
1126 auto async_run_pipeline(
1127 const pipeline_request& req,
1128 std::vector<stage_response>& res,
1129 CompletionToken&& token
1130 ) BOOST_MYSQL_RETURN_TYPE(detail::async_run_pipeline_t<CompletionToken&&>)
1131 {
1132 return async_run_pipeline(req, res, impl_.shared_diag(), std::forward<CompletionToken>(token));
1133 }
1134
1135
1136 template <BOOST_ASIO_COMPLETION_TOKEN_FOR(void(error_code)) CompletionToken>
1137 auto async_run_pipeline(
1138 const pipeline_request& req,
1139 std::vector<stage_response>& res,
1140 diagnostics& diag,
1141 CompletionToken&& token
1142 ) BOOST_MYSQL_RETURN_TYPE(detail::async_run_pipeline_t<CompletionToken&&>)
1143 {
1144 return this->impl_.async_run(
1145 impl_.make_params_pipeline(req, res, diag),
1146 std::forward<CompletionToken>(token)
1147 );
1148 }
1149 };
1150
1151 }
1152 }
1153
1154 #ifdef BOOST_MYSQL_HEADER_ONLY
1155 #include <boost/mysql/impl/any_connection.ipp>
1156 #endif
1157
1158 #endif