| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
| 22 | |
| 23 | |
| 24 | |
| 25 | |
| 26 | |
| 27 | |
| 28 | |
| 29 | |
| 30 | |
| 31 | |
| 32 | |
| 33 | |
| 34 | |
| 35 | |
| 36 | |
| 37 | |
| 38 | |
| 39 | |
| 40 | |
| 41 | |
| 42 | |
| 43 | |
| 44 | |
| 45 | |
| 46 | |
| 47 | |
| 48 | |
| 49 | #ifndef _SHARED_PTR_H |
| 50 | #define _SHARED_PTR_H 1 |
| 51 | |
| 52 | #include <bits/shared_ptr_base.h> |
| 53 | |
| 54 | namespace std _GLIBCXX_VISIBILITY(default) |
| 55 | { |
| 56 | _GLIBCXX_BEGIN_NAMESPACE_VERSION |
| 57 | |
| 58 | |
| 59 | |
| 60 | |
| 61 | |
| 62 | |
| 63 | |
| 64 | template<typename _Ch, typename _Tr, typename _Tp, _Lock_policy _Lp> |
| 65 | inline std::basic_ostream<_Ch, _Tr>& |
| 66 | operator<<(std::basic_ostream<_Ch, _Tr>& __os, |
| 67 | const __shared_ptr<_Tp, _Lp>& __p) |
| 68 | { |
| 69 | __os << __p.get(); |
| 70 | return __os; |
| 71 | } |
| 72 | |
| 73 | |
| 74 | template<typename _Del, typename _Tp, _Lock_policy _Lp> |
| 75 | inline _Del* |
| 76 | get_deleter(const __shared_ptr<_Tp, _Lp>& __p) noexcept |
| 77 | { |
| 78 | #if __cpp_rtti |
| 79 | return static_cast<_Del*>(__p._M_get_deleter(typeid(_Del))); |
| 80 | #else |
| 81 | return 0; |
| 82 | #endif |
| 83 | } |
| 84 | |
| 85 | |
| 86 | |
| 87 | |
| 88 | |
| 89 | |
| 90 | |
| 91 | |
| 92 | template<typename _Tp> |
| 93 | class shared_ptr : public __shared_ptr<_Tp> |
| 94 | { |
| 95 | template<typename... _Args> |
| 96 | using _Constructible = typename enable_if< |
| 97 | is_constructible<__shared_ptr<_Tp>, _Args...>::value |
| 98 | >::type; |
| 99 | |
| 100 | template<typename _Arg> |
| 101 | using _Assignable = typename enable_if< |
| 102 | is_assignable<__shared_ptr<_Tp>&, _Arg>::value, shared_ptr& |
| 103 | >::type; |
| 104 | |
| 105 | public: |
| 106 | |
| 107 | using element_type = typename __shared_ptr<_Tp>::element_type; |
| 108 | |
| 109 | #if __cplusplus > 201402L |
| 110 | # define __cpp_lib_shared_ptr_weak_type 201606 |
| 111 | using weak_type = weak_ptr<_Tp>; |
| 112 | #endif |
| 113 | |
| 114 | |
| 115 | |
| 116 | |
| 117 | constexpr shared_ptr() noexcept : __shared_ptr<_Tp>() { } |
| 118 | |
| 119 | shared_ptr(const shared_ptr&) noexcept = default; |
| 120 | |
| 121 | |
| 122 | |
| 123 | |
| 124 | |
| 125 | |
| 126 | |
| 127 | template<typename _Yp, typename = _Constructible<_Yp*>> |
| 128 | explicit |
| 129 | shared_ptr(_Yp* __p) : __shared_ptr<_Tp>(__p) { } |
| 130 | |
| 131 | |
| 132 | |
| 133 | |
| 134 | |
| 135 | |
| 136 | |
| 137 | |
| 138 | |
| 139 | |
| 140 | |
| 141 | |
| 142 | |
| 143 | |
| 144 | template<typename _Yp, typename _Deleter, |
| 145 | typename = _Constructible<_Yp*, _Deleter>> |
| 146 | shared_ptr(_Yp* __p, _Deleter __d) |
| 147 | : __shared_ptr<_Tp>(__p, std::move(__d)) { } |
| 148 | |
| 149 | |
| 150 | |
| 151 | |
| 152 | |
| 153 | |
| 154 | |
| 155 | |
| 156 | |
| 157 | |
| 158 | |
| 159 | |
| 160 | |
| 161 | |
| 162 | template<typename _Deleter> |
| 163 | shared_ptr(nullptr_t __p, _Deleter __d) |
| 164 | : __shared_ptr<_Tp>(__p, std::move(__d)) { } |
| 165 | |
| 166 | |
| 167 | |
| 168 | |
| 169 | |
| 170 | |
| 171 | |
| 172 | |
| 173 | |
| 174 | |
| 175 | |
| 176 | |
| 177 | |
| 178 | |
| 179 | |
| 180 | |
| 181 | template<typename _Yp, typename _Deleter, typename _Alloc, |
| 182 | typename = _Constructible<_Yp*, _Deleter, _Alloc>> |
| 183 | shared_ptr(_Yp* __p, _Deleter __d, _Alloc __a) |
| 184 | : __shared_ptr<_Tp>(__p, std::move(__d), std::move(__a)) { } |
| 185 | |
| 186 | |
| 187 | |
| 188 | |
| 189 | |
| 190 | |
| 191 | |
| 192 | |
| 193 | |
| 194 | |
| 195 | |
| 196 | |
| 197 | |
| 198 | |
| 199 | |
| 200 | |
| 201 | template<typename _Deleter, typename _Alloc> |
| 202 | shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a) |
| 203 | : __shared_ptr<_Tp>(__p, std::move(__d), std::move(__a)) { } |
| 204 | |
| 205 | |
| 206 | |
| 207 | |
| 208 | |
| 209 | |
| 210 | |
| 211 | |
| 212 | |
| 213 | |
| 214 | |
| 215 | |
| 216 | |
| 217 | |
| 218 | |
| 219 | |
| 220 | |
| 221 | |
| 222 | |
| 223 | template<typename _Yp> |
| 224 | shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) noexcept |
| 225 | : __shared_ptr<_Tp>(__r, __p) { } |
| 226 | |
| 227 | |
| 228 | |
| 229 | |
| 230 | |
| 231 | |
| 232 | |
| 233 | |
| 234 | template<typename _Yp, |
| 235 | typename = _Constructible<const shared_ptr<_Yp>&>> |
| 236 | shared_ptr(const shared_ptr<_Yp>& __r) noexcept |
| 237 | : __shared_ptr<_Tp>(__r) { } |
| 238 | |
| 239 | |
| 240 | |
| 241 | |
| 242 | |
| 243 | |
| 244 | shared_ptr(shared_ptr&& __r) noexcept |
| 245 | : __shared_ptr<_Tp>(std::move(__r)) { } |
| 246 | |
| 247 | |
| 248 | |
| 249 | |
| 250 | |
| 251 | |
| 252 | template<typename _Yp, typename = _Constructible<shared_ptr<_Yp>>> |
| 253 | shared_ptr(shared_ptr<_Yp>&& __r) noexcept |
| 254 | : __shared_ptr<_Tp>(std::move(__r)) { } |
| 255 | |
| 256 | |
| 257 | |
| 258 | |
| 259 | |
| 260 | |
| 261 | |
| 262 | |
| 263 | |
| 264 | template<typename _Yp, typename = _Constructible<const weak_ptr<_Yp>&>> |
| 265 | explicit shared_ptr(const weak_ptr<_Yp>& __r) |
| 266 | : __shared_ptr<_Tp>(__r) { } |
| 267 | |
| 268 | #if _GLIBCXX_USE_DEPRECATED |
| 269 | template<typename _Yp, typename = _Constructible<auto_ptr<_Yp>>> |
| 270 | shared_ptr(auto_ptr<_Yp>&& __r); |
| 271 | #endif |
| 272 | |
| 273 | |
| 274 | |
| 275 | template<typename _Yp, typename _Del, |
| 276 | typename = _Constructible<unique_ptr<_Yp, _Del>>> |
| 277 | shared_ptr(unique_ptr<_Yp, _Del>&& __r) |
| 278 | : __shared_ptr<_Tp>(std::move(__r)) { } |
| 279 | |
| 280 | #if __cplusplus <= 201402L && _GLIBCXX_USE_DEPRECATED |
| 281 | |
| 282 | |
| 283 | |
| 284 | template<typename _Yp, typename _Del, |
| 285 | _Constructible<unique_ptr<_Yp, _Del>, __sp_array_delete>* = 0> |
| 286 | shared_ptr(unique_ptr<_Yp, _Del>&& __r) |
| 287 | : __shared_ptr<_Tp>(std::move(__r), __sp_array_delete()) { } |
| 288 | #endif |
| 289 | |
| 290 | |
| 291 | |
| 292 | |
| 293 | |
| 294 | constexpr shared_ptr(nullptr_t) noexcept : shared_ptr() { } |
| 295 | |
| 296 | shared_ptr& operator=(const shared_ptr&) noexcept = default; |
| 297 | |
| 298 | template<typename _Yp> |
| 299 | _Assignable<const shared_ptr<_Yp>&> |
| 300 | operator=(const shared_ptr<_Yp>& __r) noexcept |
| 301 | { |
| 302 | this->__shared_ptr<_Tp>::operator=(__r); |
| 303 | return *this; |
| 304 | } |
| 305 | |
| 306 | #if _GLIBCXX_USE_DEPRECATED |
| 307 | template<typename _Yp> |
| 308 | _Assignable<auto_ptr<_Yp>> |
| 309 | operator=(auto_ptr<_Yp>&& __r) |
| 310 | { |
| 311 | this->__shared_ptr<_Tp>::operator=(std::move(__r)); |
| 312 | return *this; |
| 313 | } |
| 314 | #endif |
| 315 | |
| 316 | shared_ptr& |
| 317 | operator=(shared_ptr&& __r) noexcept |
| 318 | { |
| 319 | this->__shared_ptr<_Tp>::operator=(std::move(__r)); |
| 320 | return *this; |
| 321 | } |
| 322 | |
| 323 | template<class _Yp> |
| 324 | _Assignable<shared_ptr<_Yp>> |
| 325 | operator=(shared_ptr<_Yp>&& __r) noexcept |
| 326 | { |
| 327 | this->__shared_ptr<_Tp>::operator=(std::move(__r)); |
| 328 | return *this; |
| 329 | } |
| 330 | |
| 331 | template<typename _Yp, typename _Del> |
| 332 | _Assignable<unique_ptr<_Yp, _Del>> |
| 333 | operator=(unique_ptr<_Yp, _Del>&& __r) |
| 334 | { |
| 335 | this->__shared_ptr<_Tp>::operator=(std::move(__r)); |
| 336 | return *this; |
| 337 | } |
| 338 | |
| 339 | private: |
| 340 | |
| 341 | template<typename _Alloc, typename... _Args> |
| 342 | shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a, |
| 343 | _Args&&... __args) |
| 344 | : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...) |
| 345 | { } |
| 346 | |
| 347 | template<typename _Yp, typename _Alloc, typename... _Args> |
| 348 | friend shared_ptr<_Yp> |
| 349 | allocate_shared(const _Alloc& __a, _Args&&... __args); |
| 350 | |
| 351 | |
| 352 | shared_ptr(const weak_ptr<_Tp>& __r, std::nothrow_t) |
| 353 | : __shared_ptr<_Tp>(__r, std::nothrow) { } |
| 354 | |
| 355 | friend class weak_ptr<_Tp>; |
| 356 | }; |
| 357 | |
| 358 | #if __cpp_deduction_guides >= 201606 |
| 359 | template<typename _Tp> |
| 360 | shared_ptr(weak_ptr<_Tp>) -> shared_ptr<_Tp>; |
| 361 | template<typename _Tp, typename _Del> |
| 362 | shared_ptr(unique_ptr<_Tp, _Del>) -> shared_ptr<_Tp>; |
| 363 | #endif |
| 364 | |
| 365 | |
| 366 | template<typename _Tp, typename _Up> |
| 367 | inline bool |
| 368 | operator==(const shared_ptr<_Tp>& __a, const shared_ptr<_Up>& __b) noexcept |
| 369 | { return __a.get() == __b.get(); } |
| 370 | |
| 371 | template<typename _Tp> |
| 372 | inline bool |
| 373 | operator==(const shared_ptr<_Tp>& __a, nullptr_t) noexcept |
| 374 | { return !__a; } |
| 375 | |
| 376 | template<typename _Tp> |
| 377 | inline bool |
| 378 | operator==(nullptr_t, const shared_ptr<_Tp>& __a) noexcept |
| 379 | { return !__a; } |
| 380 | |
| 381 | template<typename _Tp, typename _Up> |
| 382 | inline bool |
| 383 | operator!=(const shared_ptr<_Tp>& __a, const shared_ptr<_Up>& __b) noexcept |
| 384 | { return __a.get() != __b.get(); } |
| 385 | |
| 386 | template<typename _Tp> |
| 387 | inline bool |
| 388 | operator!=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept |
| 389 | { return (bool)__a; } |
| 390 | |
| 391 | template<typename _Tp> |
| 392 | inline bool |
| 393 | operator!=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept |
| 394 | { return (bool)__a; } |
| 395 | |
| 396 | template<typename _Tp, typename _Up> |
| 397 | inline bool |
| 398 | operator<(const shared_ptr<_Tp>& __a, const shared_ptr<_Up>& __b) noexcept |
| 399 | { |
| 400 | using _Tp_elt = typename shared_ptr<_Tp>::element_type; |
| 401 | using _Up_elt = typename shared_ptr<_Up>::element_type; |
| 402 | using _Vp = typename common_type<_Tp_elt*, _Up_elt*>::type; |
| 403 | return less<_Vp>()(__a.get(), __b.get()); |
| 404 | } |
| 405 | |
| 406 | template<typename _Tp> |
| 407 | inline bool |
| 408 | operator<(const shared_ptr<_Tp>& __a, nullptr_t) noexcept |
| 409 | { |
| 410 | using _Tp_elt = typename shared_ptr<_Tp>::element_type; |
| 411 | return less<_Tp_elt*>()(__a.get(), nullptr); |
| 412 | } |
| 413 | |
| 414 | template<typename _Tp> |
| 415 | inline bool |
| 416 | operator<(nullptr_t, const shared_ptr<_Tp>& __a) noexcept |
| 417 | { |
| 418 | using _Tp_elt = typename shared_ptr<_Tp>::element_type; |
| 419 | return less<_Tp_elt*>()(nullptr, __a.get()); |
| 420 | } |
| 421 | |
| 422 | template<typename _Tp, typename _Up> |
| 423 | inline bool |
| 424 | operator<=(const shared_ptr<_Tp>& __a, const shared_ptr<_Up>& __b) noexcept |
| 425 | { return !(__b < __a); } |
| 426 | |
| 427 | template<typename _Tp> |
| 428 | inline bool |
| 429 | operator<=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept |
| 430 | { return !(nullptr < __a); } |
| 431 | |
| 432 | template<typename _Tp> |
| 433 | inline bool |
| 434 | operator<=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept |
| 435 | { return !(__a < nullptr); } |
| 436 | |
| 437 | template<typename _Tp, typename _Up> |
| 438 | inline bool |
| 439 | operator>(const shared_ptr<_Tp>& __a, const shared_ptr<_Up>& __b) noexcept |
| 440 | { return (__b < __a); } |
| 441 | |
| 442 | template<typename _Tp> |
| 443 | inline bool |
| 444 | operator>(const shared_ptr<_Tp>& __a, nullptr_t) noexcept |
| 445 | { return nullptr < __a; } |
| 446 | |
| 447 | template<typename _Tp> |
| 448 | inline bool |
| 449 | operator>(nullptr_t, const shared_ptr<_Tp>& __a) noexcept |
| 450 | { return __a < nullptr; } |
| 451 | |
| 452 | template<typename _Tp, typename _Up> |
| 453 | inline bool |
| 454 | operator>=(const shared_ptr<_Tp>& __a, const shared_ptr<_Up>& __b) noexcept |
| 455 | { return !(__a < __b); } |
| 456 | |
| 457 | template<typename _Tp> |
| 458 | inline bool |
| 459 | operator>=(const shared_ptr<_Tp>& __a, nullptr_t) noexcept |
| 460 | { return !(__a < nullptr); } |
| 461 | |
| 462 | template<typename _Tp> |
| 463 | inline bool |
| 464 | operator>=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept |
| 465 | { return !(nullptr < __a); } |
| 466 | |
| 467 | template<typename _Tp> |
| 468 | struct less<shared_ptr<_Tp>> : public _Sp_less<shared_ptr<_Tp>> |
| 469 | { }; |
| 470 | |
| 471 | |
| 472 | template<typename _Tp> |
| 473 | inline void |
| 474 | swap(shared_ptr<_Tp>& __a, shared_ptr<_Tp>& __b) noexcept |
| 475 | { __a.swap(__b); } |
| 476 | |
| 477 | |
| 478 | template<typename _Tp, typename _Up> |
| 479 | inline shared_ptr<_Tp> |
| 480 | static_pointer_cast(const shared_ptr<_Up>& __r) noexcept |
| 481 | { |
| 482 | using _Sp = shared_ptr<_Tp>; |
| 483 | return _Sp(__r, static_cast<typename _Sp::element_type*>(__r.get())); |
| 484 | } |
| 485 | |
| 486 | template<typename _Tp, typename _Up> |
| 487 | inline shared_ptr<_Tp> |
| 488 | const_pointer_cast(const shared_ptr<_Up>& __r) noexcept |
| 489 | { |
| 490 | using _Sp = shared_ptr<_Tp>; |
| 491 | return _Sp(__r, const_cast<typename _Sp::element_type*>(__r.get())); |
| 492 | } |
| 493 | |
| 494 | template<typename _Tp, typename _Up> |
| 495 | inline shared_ptr<_Tp> |
| 496 | dynamic_pointer_cast(const shared_ptr<_Up>& __r) noexcept |
| 497 | { |
| 498 | using _Sp = shared_ptr<_Tp>; |
| 499 | if (auto* __p = dynamic_cast<typename _Sp::element_type*>(__r.get())) |
| 500 | return _Sp(__r, __p); |
| 501 | return _Sp(); |
| 502 | } |
| 503 | |
| 504 | #if __cplusplus > 201402L |
| 505 | template<typename _Tp, typename _Up> |
| 506 | inline shared_ptr<_Tp> |
| 507 | reinterpret_pointer_cast(const shared_ptr<_Up>& __r) noexcept |
| 508 | { |
| 509 | using _Sp = shared_ptr<_Tp>; |
| 510 | return _Sp(__r, reinterpret_cast<typename _Sp::element_type*>(__r.get())); |
| 511 | } |
| 512 | #endif |
| 513 | |
| 514 | |
| 515 | |
| 516 | |
| 517 | |
| 518 | |
| 519 | template<typename _Tp> |
| 520 | class weak_ptr : public __weak_ptr<_Tp> |
| 521 | { |
| 522 | template<typename _Arg> |
| 523 | using _Constructible = typename enable_if< |
| 524 | is_constructible<__weak_ptr<_Tp>, _Arg>::value |
| 525 | >::type; |
| 526 | |
| 527 | template<typename _Arg> |
| 528 | using _Assignable = typename enable_if< |
| 529 | is_assignable<__weak_ptr<_Tp>&, _Arg>::value, weak_ptr& |
| 530 | >::type; |
| 531 | |
| 532 | public: |
| 533 | constexpr weak_ptr() noexcept = default; |
| 534 | |
| 535 | template<typename _Yp, |
| 536 | typename = _Constructible<const shared_ptr<_Yp>&>> |
| 537 | weak_ptr(const shared_ptr<_Yp>& __r) noexcept |
| 538 | : __weak_ptr<_Tp>(__r) { } |
| 539 | |
| 540 | weak_ptr(const weak_ptr&) noexcept = default; |
| 541 | |
| 542 | template<typename _Yp, typename = _Constructible<const weak_ptr<_Yp>&>> |
| 543 | weak_ptr(const weak_ptr<_Yp>& __r) noexcept |
| 544 | : __weak_ptr<_Tp>(__r) { } |
| 545 | |
| 546 | weak_ptr(weak_ptr&&) noexcept = default; |
| 547 | |
| 548 | template<typename _Yp, typename = _Constructible<weak_ptr<_Yp>>> |
| 549 | weak_ptr(weak_ptr<_Yp>&& __r) noexcept |
| 550 | : __weak_ptr<_Tp>(std::move(__r)) { } |
| 551 | |
| 552 | weak_ptr& |
| 553 | operator=(const weak_ptr& __r) noexcept = default; |
| 554 | |
| 555 | template<typename _Yp> |
| 556 | _Assignable<const weak_ptr<_Yp>&> |
| 557 | operator=(const weak_ptr<_Yp>& __r) noexcept |
| 558 | { |
| 559 | this->__weak_ptr<_Tp>::operator=(__r); |
| 560 | return *this; |
| 561 | } |
| 562 | |
| 563 | template<typename _Yp> |
| 564 | _Assignable<const shared_ptr<_Yp>&> |
| 565 | operator=(const shared_ptr<_Yp>& __r) noexcept |
| 566 | { |
| 567 | this->__weak_ptr<_Tp>::operator=(__r); |
| 568 | return *this; |
| 569 | } |
| 570 | |
| 571 | weak_ptr& |
| 572 | operator=(weak_ptr&& __r) noexcept = default; |
| 573 | |
| 574 | template<typename _Yp> |
| 575 | _Assignable<weak_ptr<_Yp>> |
| 576 | operator=(weak_ptr<_Yp>&& __r) noexcept |
| 577 | { |
| 578 | this->__weak_ptr<_Tp>::operator=(std::move(__r)); |
| 579 | return *this; |
| 580 | } |
| 581 | |
| 582 | shared_ptr<_Tp> |
| 583 | lock() const noexcept |
| 584 | { return shared_ptr<_Tp>(*this, std::nothrow); } |
| 585 | }; |
| 586 | |
| 587 | #if __cpp_deduction_guides >= 201606 |
| 588 | template<typename _Tp> |
| 589 | weak_ptr(shared_ptr<_Tp>) -> weak_ptr<_Tp>; |
| 590 | #endif |
| 591 | |
| 592 | |
| 593 | template<typename _Tp> |
| 594 | inline void |
| 595 | swap(weak_ptr<_Tp>& __a, weak_ptr<_Tp>& __b) noexcept |
| 596 | { __a.swap(__b); } |
| 597 | |
| 598 | |
| 599 | |
| 600 | template<typename _Tp = void> |
| 601 | struct owner_less; |
| 602 | |
| 603 | |
| 604 | template<> |
| 605 | struct owner_less<void> : _Sp_owner_less<void, void> |
| 606 | { }; |
| 607 | |
| 608 | |
| 609 | template<typename _Tp> |
| 610 | struct owner_less<shared_ptr<_Tp>> |
| 611 | : public _Sp_owner_less<shared_ptr<_Tp>, weak_ptr<_Tp>> |
| 612 | { }; |
| 613 | |
| 614 | |
| 615 | template<typename _Tp> |
| 616 | struct owner_less<weak_ptr<_Tp>> |
| 617 | : public _Sp_owner_less<weak_ptr<_Tp>, shared_ptr<_Tp>> |
| 618 | { }; |
| 619 | |
| 620 | |
| 621 | |
| 622 | |
| 623 | template<typename _Tp> |
| 624 | class enable_shared_from_this |
| 625 | { |
| 626 | protected: |
| 627 | constexpr enable_shared_from_this() noexcept { } |
| 628 | |
| 629 | enable_shared_from_this(const enable_shared_from_this&) noexcept { } |
| 630 | |
| 631 | enable_shared_from_this& |
| 632 | operator=(const enable_shared_from_this&) noexcept |
| 633 | { return *this; } |
| 634 | |
| 635 | ~enable_shared_from_this() { } |
| 636 | |
| 637 | public: |
| 638 | shared_ptr<_Tp> |
| 639 | shared_from_this() |
| 640 | { return shared_ptr<_Tp>(this->_M_weak_this); } |
| 641 | |
| 642 | shared_ptr<const _Tp> |
| 643 | shared_from_this() const |
| 644 | { return shared_ptr<const _Tp>(this->_M_weak_this); } |
| 645 | |
| 646 | #if __cplusplus > 201402L || !defined(__STRICT_ANSI__) |
| 647 | #define __cpp_lib_enable_shared_from_this 201603 |
| 648 | weak_ptr<_Tp> |
| 649 | weak_from_this() noexcept |
| 650 | { return this->_M_weak_this; } |
| 651 | |
| 652 | weak_ptr<const _Tp> |
| 653 | weak_from_this() const noexcept |
| 654 | { return this->_M_weak_this; } |
| 655 | #endif |
| 656 | |
| 657 | private: |
| 658 | template<typename _Tp1> |
| 659 | void |
| 660 | _M_weak_assign(_Tp1* __p, const __shared_count<>& __n) const noexcept |
| 661 | { _M_weak_this._M_assign(__p, __n); } |
| 662 | |
| 663 | |
| 664 | friend const enable_shared_from_this* |
| 665 | __enable_shared_from_this_base(const __shared_count<>&, |
| 666 | const enable_shared_from_this* __p) |
| 667 | { return __p; } |
| 668 | |
| 669 | template<typename, _Lock_policy> |
| 670 | friend class __shared_ptr; |
| 671 | |
| 672 | mutable weak_ptr<_Tp> _M_weak_this; |
| 673 | }; |
| 674 | |
| 675 | |
| 676 | |
| 677 | |
| 678 | |
| 679 | |
| 680 | |
| 681 | |
| 682 | |
| 683 | |
| 684 | |
| 685 | |
| 686 | template<typename _Tp, typename _Alloc, typename... _Args> |
| 687 | inline shared_ptr<_Tp> |
| 688 | allocate_shared(const _Alloc& __a, _Args&&... __args) |
| 689 | { |
| 690 | return shared_ptr<_Tp>(_Sp_make_shared_tag(), __a, |
| 691 | std::forward<_Args>(__args)...); |
| 692 | } |
| 693 | |
| 694 | |
| 695 | |
| 696 | |
| 697 | |
| 698 | |
| 699 | |
| 700 | |
| 701 | template<typename _Tp, typename... _Args> |
| 702 | inline shared_ptr<_Tp> |
| 703 | make_shared(_Args&&... __args) |
| 704 | { |
| 705 | typedef typename std::remove_const<_Tp>::type _Tp_nc; |
| 706 | return std::allocate_shared<_Tp>(std::allocator<_Tp_nc>(), |
| 707 | std::forward<_Args>(__args)...); |
| 708 | } |
| 709 | |
| 710 | |
| 711 | template<typename _Tp> |
| 712 | struct hash<shared_ptr<_Tp>> |
| 713 | : public __hash_base<size_t, shared_ptr<_Tp>> |
| 714 | { |
| 715 | size_t |
| 716 | operator()(const shared_ptr<_Tp>& __s) const noexcept |
| 717 | { |
| 718 | return std::hash<typename shared_ptr<_Tp>::element_type*>()(__s.get()); |
| 719 | } |
| 720 | }; |
| 721 | |
| 722 | |
| 723 | |
| 724 | _GLIBCXX_END_NAMESPACE_VERSION |
| 725 | } |
| 726 | |
| 727 | #endif |
| 728 | |