bind.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /**
  2. * Tencent is pleased to support the open source community by making Tars available.
  3. *
  4. * Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
  5. *
  6. * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  7. * in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * https://opensource.org/licenses/BSD-3-Clause
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed
  12. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  14. * specific language governing permissions and limitations under the License.
  15. */
  16. #ifndef _TARS_BIND_H_
  17. #define _TARS_BIND_H_
  18. #include "promise/bind_internal.h"
  19. #include "promise/callback.h"
  20. namespace tars {
  21. template <typename Functor, typename... Args>
  22. struct MakeUnboundRunTypeImpl {
  23. using Type = typename bind::BindState<
  24. typename bind::FunctorTraits<Functor>::RunnableType,
  25. typename bind::FunctorTraits<Functor>::RunType,
  26. Args...>::UnboundRunType;
  27. };
  28. template <typename Functor, typename... Args>
  29. using MakeUnboundRunType = typename MakeUnboundRunTypeImpl<Functor, Args...>::Type;
  30. template <typename Functor, typename... Args>
  31. Callback<MakeUnboundRunType<Functor, Args...> > Bind(Functor f, Args&&... args)
  32. {
  33. using RunnableType = typename bind::FunctorTraits<Functor>::RunnableType;
  34. using RunType = typename bind::FunctorTraits<Functor>::RunType;
  35. using BindState = bind::BindState<RunnableType, RunType, Args...>;
  36. return Callback<typename BindState::UnboundRunType>(
  37. new BindState(bind::MakeRunnable(f), std::forward<Args>(args)...));
  38. }
  39. } // end namespace tars
  40. #endif