]> git.sesse.net Git - casparcg/blob - protocol/util/SocketInfo.cpp
2.0 image_mixer: Refactored, core: Fixed destruction proxy usage.
[casparcg] / protocol / util / SocketInfo.cpp
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20  \r
21 #include "../stdafx.h"\r
22 #include "SocketInfo.h"\r
23 #include "AsyncEventServer.h"\r
24 \r
25 namespace caspar {\r
26 namespace IO {\r
27 \r
28 SocketInfo::SocketInfo(SOCKET socket, AsyncEventServer* pServer) : socket_(socket), pServer_(pServer), recvLeftoverOffset_(0), currentlySendingOffset_(0)\r
29 {\r
30         event_ = WSACreateEvent();\r
31         if(event_ == WSA_INVALID_EVENT) {\r
32                 throw std::exception("Failed to create WSAEvent");\r
33         }\r
34 }\r
35 \r
36 SocketInfo::~SocketInfo() {\r
37 \r
38         WSACloseEvent(event_);\r
39         event_ = 0;\r
40 \r
41         closesocket(socket_);\r
42         socket_ = 0;\r
43 }\r
44 \r
45 void SocketInfo::Send(const std::wstring& data) {\r
46         if(pServer_ != 0 && data.length() > 0) {\r
47                 {\r
48                         //The lock has to be let go before DoSend is called since that too tries to lock to object\r
49                         tbb::mutex::scoped_lock lock(mutex_);\r
50                         sendQueue_.push(data);\r
51                 }\r
52 \r
53                 pServer_->DoSend(*this);\r
54         }\r
55 }\r
56 \r
57 void SocketInfo::Disconnect() {\r
58         if(pServer_)\r
59                 pServer_->DisconnectClient(*this);\r
60 }\r
61 \r
62 }       //namespace IO\r
63 }       //namespace caspar