blob: d5deac153bb7c3b2a5eaf5af19de2e0202a38edc [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2007 The WebRTC Project Authors. All rights reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11// A libjingle compatible SocketServer for OSX/iOS/Cocoa.
12
13#ifndef WEBRTC_BASE_MACCOCOASOCKETSERVER_H_
14#define WEBRTC_BASE_MACCOCOASOCKETSERVER_H_
15
16#include "webrtc/base/macsocketserver.h"
17
18#ifdef __OBJC__
19@class NSTimer, MacCocoaSocketServerHelperRtc;
20#else
21class NSTimer;
22class MacCocoaSocketServerHelperRtc;
23#endif
24
25namespace rtc {
26
27// A socketserver implementation that wraps the main cocoa
28// application loop accessed through [NSApp run].
29class MacCocoaSocketServer : public MacBaseSocketServer {
30 public:
31 explicit MacCocoaSocketServer();
32 virtual ~MacCocoaSocketServer();
33
34 virtual bool Wait(int cms, bool process_io);
35 virtual void WakeUp();
36
37 private:
38 MacCocoaSocketServerHelperRtc* helper_;
39 NSTimer* timer_; // Weak.
40 // The count of how many times we're inside the NSApplication main loop.
41 int run_count_;
42
43 DISALLOW_EVIL_CONSTRUCTORS(MacCocoaSocketServer);
44};
45
46} // namespace rtc
47
48#endif // WEBRTC_BASE_MACCOCOASOCKETSERVER_H_