summaryrefslogtreecommitdiff
path: root/src/bindings/ecore_cxx/Ecore.hh
blob: 693a821d99d27a80ed17559fdb24e49807cea2c3 (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#ifndef _EFL_ECORE_CXX_ECORE_HH
#define _EFL_ECORE_CXX_ECORE_HH

#include <Ecore.h>

#include <Eina.hh>

#include <utility>
#include <type_traits>
#include <memory>
#include <cstring>

#ifdef EFL_BETA_API_SUPPORT
#include <efl_loop.eo.hh>
#include <Ecore.eo.hh>
#endif

namespace efl { namespace ecore {

template <typename T>
struct _identity
{
  typedef T type;
};

template <typename F>
void _ecore_main_loop_thread_safe_call_async_callback(void* data)
{
  std::unique_ptr<F> f (static_cast<F*>(data));
  try
    {
      (*f)();
    }
  catch(std::bad_alloc const& e)
    {
      eina_error_set( ::EINA_ERROR_OUT_OF_MEMORY);
    }
  catch(std::system_error const& e)
    {
      efl::eina::set_error_code(e.code());
    }
  catch(...)
    {
      eina_error_set( efl::eina::unknown_error() );
    }
}

template <typename T>
struct _return_buffer
{
  typename std::aligned_storage<sizeof(T),std::alignment_of<T>::value>::type buffer;
};

template <>
struct _return_buffer<void>
{
};

template <typename F>
struct _data
{
  F& f;
  std::exception_ptr exception;
  typedef typename std::result_of<F()>::type result_type;
  _return_buffer<result_type> return_buffer;
};

template <typename F>
void* _ecore_main_loop_thread_safe_call_sync_callback_aux(_data<F>* d, _identity<void>)
{
  d->f();
  if(eina_error_get())
    d->exception = make_exception_ptr(std::system_error(efl::eina::get_error_code()));
  return 0;
}

template <typename F, typename R>
void* _ecore_main_loop_thread_safe_call_sync_callback_aux(_data<F>* d, _identity<R>)
{
  typedef R result_type;
  new (&d->return_buffer.buffer) result_type ( std::move(d->f()) );
  if(eina_error_get())
    {
      d->exception = make_exception_ptr(std::system_error(efl::eina::get_error_code()));
      eina_error_set(0);
      result_type* p = static_cast<result_type*>(static_cast<void*>(&d->return_buffer.buffer));
      p->~result_type();
    }
  return 0;
}

template <typename F>
void* _ecore_main_loop_thread_safe_call_sync_callback(void* data)
{
  _data<F>* d = static_cast<_data<F>*>(data);
  try
    {
      return _ecore_main_loop_thread_safe_call_sync_callback_aux
        (d, _identity<typename std::result_of<F()>::type>());
    }
  catch(std::bad_alloc const& e)
    {
      d->exception = std::current_exception();
    }
  catch(std::system_error const& e)
    {
      d->exception = std::current_exception();
    }
  catch(...)
    {
      d->exception = std::current_exception();
    }
  return 0;
}

template <typename F>
void main_loop_thread_safe_call_async(F&& f)
{
  ::ecore_main_loop_thread_safe_call_async( &ecore::_ecore_main_loop_thread_safe_call_async_callback<F>
                                            , new F(std::forward<F>(f)) );
}

template <typename F>
void _get_return_value(_data<F>& data, _identity<void>)
{
  if(data.exception)
    {
      std::rethrow_exception(data.exception);
    }
}

template <typename F, typename R>
R _get_return_value(_data<F>& data, _identity<R>)
{
  if(!data.exception)
    {
      R* b_ = static_cast<R*>(static_cast<void*>(&data.return_buffer.buffer));
      struct destroy
      {
        destroy(R* x_) : p_(x_)
        {}
        ~destroy()
        {
          p_->~R();
        }
        R* p_;
      } destroy_temp(b_);
      return std::move(*b_);
    }
  else
    {
      std::rethrow_exception(data.exception);
    }
}

template <typename F>
typename std::result_of<F()>::type
main_loop_thread_safe_call_sync(F&& f)
{
  typedef typename std::result_of<F()>::type result_type;
  _data<F> data {f, nullptr, {}};
  ::ecore_main_loop_thread_safe_call_sync
      (&ecore::_ecore_main_loop_thread_safe_call_sync_callback<F>, &data);
  return _get_return_value(data, _identity<result_type>());
}

struct ecore_init
{
  ecore_init()
  {
    ::ecore_init();
  }
  ~ecore_init()
  {
    ::ecore_shutdown();
  }
};

} }

#endif