OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
292 T2 a2_; | 292 T2 a2_; |
293 T3 a3_; | 293 T3 a3_; |
294 T4 a4_; | 294 T4 a4_; |
295 T5 a5_; | 295 T5 a5_; |
296 }; | 296 }; |
297 | 297 |
298 #define BEGIN_PROXY_MAP(c) \ | 298 #define BEGIN_PROXY_MAP(c) \ |
299 class c##Proxy : public c##Interface { \ | 299 class c##Proxy : public c##Interface { \ |
300 protected: \ | 300 protected: \ |
301 typedef c##Interface C; \ | 301 typedef c##Interface C; \ |
302 c##Proxy(rtc::Thread* thread, C* c) : owner_thread_(thread), c_(c) {} \ | 302 c##Proxy(rtc::Thread* signaling_thread, C* c) \ |
303 : signaling_thread_(signaling_thread), c_(c) {} \ | |
303 ~c##Proxy() { \ | 304 ~c##Proxy() { \ |
304 MethodCall0<c##Proxy, void> call(this, &c##Proxy::Release_s); \ | 305 MethodCall0<c##Proxy, void> call(this, &c##Proxy::Release_s); \ |
305 call.Marshal(owner_thread_); \ | 306 call.Marshal(signaling_thread_); \ |
306 } \ | 307 } \ |
307 \ | 308 \ |
308 public: \ | 309 public: \ |
309 static rtc::scoped_refptr<C> Create(rtc::Thread* thread, C* c) { \ | 310 static rtc::scoped_refptr<C> Create( \ |
perkj_webrtc
2016/04/05 12:36:55
nit: formatting of line length.
nisse-webrtc
2016/04/05 12:43:34
Not sure exactly what you're suggesting, but I cha
| |
310 return new rtc::RefCountedObject<c##Proxy>(thread, c); \ | 311 rtc::Thread* signaling_thread, C* c) { \ |
312 return new rtc::RefCountedObject<c##Proxy>(signaling_thread, c); \ | |
313 } | |
314 | |
315 #define BEGIN_WORKER_PROXY_MAP(c) \ | |
316 class c##Proxy : public c##Interface { \ | |
317 protected: \ | |
318 typedef c##Interface C; \ | |
319 c##Proxy(rtc::Thread* signaling_thread, rtc::Thread* worker_thread, C* c) \ | |
320 : signaling_thread_(signaling_thread), \ | |
321 worker_thread_(worker_thread), \ | |
322 c_(c) {} \ | |
323 ~c##Proxy() { \ | |
324 MethodCall0<c##Proxy, void> call(this, &c##Proxy::Release_s); \ | |
325 call.Marshal(signaling_thread_); \ | |
326 } \ | |
327 \ | |
328 public: \ | |
329 static rtc::scoped_refptr<C> Create( \ | |
330 rtc::Thread* signaling_thread, rtc::Thread* worker_thread, C* c) { \ | |
331 return new rtc::RefCountedObject<c##Proxy>( \ | |
332 signaling_thread, worker_thread, c); \ | |
311 } | 333 } |
312 | 334 |
313 #define PROXY_METHOD0(r, method) \ | 335 #define PROXY_METHOD0(r, method) \ |
314 r method() override { \ | 336 r method() override { \ |
315 MethodCall0<C, r> call(c_.get(), &C::method); \ | 337 MethodCall0<C, r> call(c_.get(), &C::method); \ |
316 return call.Marshal(owner_thread_); \ | 338 return call.Marshal(signaling_thread_); \ |
317 } | 339 } |
318 | 340 |
319 #define PROXY_CONSTMETHOD0(r, method) \ | 341 #define PROXY_CONSTMETHOD0(r, method) \ |
320 r method() const override { \ | 342 r method() const override { \ |
321 ConstMethodCall0<C, r> call(c_.get(), &C::method); \ | 343 ConstMethodCall0<C, r> call(c_.get(), &C::method); \ |
322 return call.Marshal(owner_thread_); \ | 344 return call.Marshal(signaling_thread_); \ |
323 } | 345 } |
324 | 346 |
325 #define PROXY_METHOD1(r, method, t1) \ | 347 #define PROXY_METHOD1(r, method, t1) \ |
326 r method(t1 a1) override { \ | 348 r method(t1 a1) override { \ |
327 MethodCall1<C, r, t1> call(c_.get(), &C::method, a1); \ | 349 MethodCall1<C, r, t1> call(c_.get(), &C::method, a1); \ |
328 return call.Marshal(owner_thread_); \ | 350 return call.Marshal(signaling_thread_); \ |
329 } | 351 } |
330 | 352 |
331 #define PROXY_CONSTMETHOD1(r, method, t1) \ | 353 #define PROXY_CONSTMETHOD1(r, method, t1) \ |
332 r method(t1 a1) const override { \ | 354 r method(t1 a1) const override { \ |
333 ConstMethodCall1<C, r, t1> call(c_.get(), &C::method, a1); \ | 355 ConstMethodCall1<C, r, t1> call(c_.get(), &C::method, a1); \ |
334 return call.Marshal(owner_thread_); \ | 356 return call.Marshal(signaling_thread_); \ |
335 } | 357 } |
336 | 358 |
337 #define PROXY_METHOD2(r, method, t1, t2) \ | 359 #define PROXY_METHOD2(r, method, t1, t2) \ |
338 r method(t1 a1, t2 a2) override { \ | 360 r method(t1 a1, t2 a2) override { \ |
339 MethodCall2<C, r, t1, t2> call(c_.get(), &C::method, a1, a2); \ | 361 MethodCall2<C, r, t1, t2> call(c_.get(), &C::method, a1, a2); \ |
340 return call.Marshal(owner_thread_); \ | 362 return call.Marshal(signaling_thread_); \ |
341 } | 363 } |
342 | 364 |
343 #define PROXY_METHOD3(r, method, t1, t2, t3) \ | 365 #define PROXY_METHOD3(r, method, t1, t2, t3) \ |
344 r method(t1 a1, t2 a2, t3 a3) override { \ | 366 r method(t1 a1, t2 a2, t3 a3) override { \ |
345 MethodCall3<C, r, t1, t2, t3> call(c_.get(), &C::method, a1, a2, a3); \ | 367 MethodCall3<C, r, t1, t2, t3> call(c_.get(), &C::method, a1, a2, a3); \ |
346 return call.Marshal(owner_thread_); \ | 368 return call.Marshal(signaling_thread_); \ |
347 } | 369 } |
348 | 370 |
349 #define PROXY_METHOD4(r, method, t1, t2, t3, t4) \ | 371 #define PROXY_METHOD4(r, method, t1, t2, t3, t4) \ |
350 r method(t1 a1, t2 a2, t3 a3, t4 a4) override { \ | 372 r method(t1 a1, t2 a2, t3 a3, t4 a4) override { \ |
351 MethodCall4<C, r, t1, t2, t3, t4> call(c_.get(), &C::method, a1, a2, a3, \ | 373 MethodCall4<C, r, t1, t2, t3, t4> call(c_.get(), &C::method, a1, a2, a3, \ |
352 a4); \ | 374 a4); \ |
353 return call.Marshal(owner_thread_); \ | 375 return call.Marshal(signaling_thread_); \ |
354 } | 376 } |
355 | 377 |
356 #define PROXY_METHOD5(r, method, t1, t2, t3, t4, t5) \ | 378 #define PROXY_METHOD5(r, method, t1, t2, t3, t4, t5) \ |
357 r method(t1 a1, t2 a2, t3 a3, t4 a4, t5 a5) override { \ | 379 r method(t1 a1, t2 a2, t3 a3, t4 a4, t5 a5) override { \ |
358 MethodCall5<C, r, t1, t2, t3, t4, t5> call(c_.get(), &C::method, a1, a2, \ | 380 MethodCall5<C, r, t1, t2, t3, t4, t5> call(c_.get(), &C::method, a1, a2, \ |
359 a3, a4, a5); \ | 381 a3, a4, a5); \ |
360 return call.Marshal(owner_thread_); \ | 382 return call.Marshal(signaling_thread_); \ |
383 } | |
384 | |
385 // Define methods which should be invoked on the worker thread. | |
386 #define PROXY_WORKER_METHOD1(r, method, t1) \ | |
387 r method(t1 a1) override { \ | |
388 MethodCall1<C, r, t1> call(c_.get(), &C::method, a1); \ | |
389 return call.Marshal(worker_thread_); \ | |
390 } | |
391 | |
392 #define PROXY_WORKER_METHOD2(r, method, t1, t2) \ | |
393 r method(t1 a1, t2 a2) override { \ | |
394 MethodCall2<C, r, t1, t2> call(c_.get(), &C::method, a1, a2); \ | |
395 return call.Marshal(worker_thread_); \ | |
361 } | 396 } |
362 | 397 |
363 #define END_PROXY() \ | 398 #define END_PROXY() \ |
364 private:\ | 399 private:\ |
365 void Release_s() {\ | 400 void Release_s() {\ |
366 c_ = NULL;\ | 401 c_ = NULL;\ |
367 }\ | 402 }\ |
368 mutable rtc::Thread* owner_thread_;\ | 403 mutable rtc::Thread* signaling_thread_;\ |
369 rtc::scoped_refptr<C> c_;\ | 404 rtc::scoped_refptr<C> c_;\ |
370 };\ | 405 };\ |
371 | 406 |
407 #define END_WORKER_PROXY() \ | |
408 private: \ | |
409 void Release_s() { \ | |
410 c_ = NULL; \ | |
411 } \ | |
412 mutable rtc::Thread* signaling_thread_; \ | |
413 mutable rtc::Thread* worker_thread_; \ | |
414 rtc::scoped_refptr<C> c_; \ | |
415 }; \ | |
416 | |
372 } // namespace webrtc | 417 } // namespace webrtc |
373 | 418 |
374 #endif // WEBRTC_API_PROXY_H_ | 419 #endif // WEBRTC_API_PROXY_H_ |
OLD | NEW |