share.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #pragma once
  2. /*
  3. * Copyright 2018-present Facebook, Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. #include <folly/experimental/pushmi/o/extension_operators.h>
  18. #include <folly/experimental/pushmi/o/submit.h>
  19. #include <folly/experimental/pushmi/receiver.h>
  20. #include <folly/experimental/pushmi/subject.h>
  21. namespace pushmi {
  22. namespace detail {
  23. template <class... TN>
  24. struct share_fn {
  25. private:
  26. struct impl {
  27. PUSHMI_TEMPLATE(class In)
  28. (requires Sender<In>)
  29. auto operator()(In in) const {
  30. subject<properties_t<In>, TN...> sub;
  31. ::pushmi::submit(in, sub.receiver());
  32. return sub;
  33. }
  34. };
  35. public:
  36. auto operator()() const {
  37. return impl{};
  38. }
  39. };
  40. } // namespace detail
  41. namespace operators {
  42. template <class... TN>
  43. PUSHMI_INLINE_VAR constexpr detail::share_fn<TN...> share{};
  44. } // namespace operators
  45. } // namespace pushmi