File: Socket.cpp

package info (click to toggle)
beid 3.5.2.dfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 147,240 kB
  • ctags: 34,507
  • sloc: cpp: 149,944; ansic: 41,577; java: 8,927; cs: 6,528; sh: 2,426; perl: 1,866; xml: 805; python: 463; makefile: 263; lex: 92
file content (167 lines) | stat: -rw-r--r-- 3,440 bytes parent folder | download
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
/* ****************************************************************************

 * eID Middleware Project.
 * Copyright (C) 2008-2009 FedICT.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version
 * 3.0 as published by the Free Software Foundation.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, see
 * http://www.gnu.org/licenses/.

**************************************************************************** */
#include "Socket.h"
#include "../eidErrors.h"
#include <iostream>

namespace eIDMW
{

unsigned int CSocket::s_noOfSockets = 0;

CSocket::CSocket() throw(CMWException)
: m_socket(0), m_refCount(0)
{
	Start();

	m_socket = socket(AF_INET, SOCK_STREAM, 0);
	if (m_socket == INVALID_SOCKET)
	{
		throw CMWEXCEPTION(EIDMW_ERR_SOCKET_CREATE);
	}

	m_refCount = new unsigned int(1);
}

CSocket::CSocket(SOCKET in_socket) throw(CMWException)
: m_socket(in_socket), m_refCount(0)
{
	Start();
	m_refCount = new unsigned int(1);
}

CSocket::~CSocket()
{
	*m_refCount -= 1;
	if (*m_refCount == 0)
	{
		Close();
		delete m_refCount;
	}

	s_noOfSockets -= 1;
	if (s_noOfSockets == 0)
	{
		End();
	}
}

void CSocket::SendBytes(const CByteArray & inByteArray) throw(CMWException)
{
	unsigned int size = inByteArray.Size();
	const char *data = (const char *)inByteArray.GetBytes();
	unsigned int error = send(m_socket, data, size, 0);
	if (error != size)
	{
		throw CMWEXCEPTION(EIDMW_ERR_SOCKET_SEND);
	}
}

void CSocket::SendLine(const std::string & inLine) throw(CMWException)
{
	CByteArray bytes(inLine);
	bytes.Append(static_cast<unsigned char>('\n'));
	SendBytes(bytes);
}

// void CSocket::ReceiveBytes()
void CSocket::ReceiveBytes(CByteArray & outByteArray)
{
	bool done = false;
	char buffer[1024];
	
	while (!done)
	{
		int len = recv(m_socket, buffer, sizeof(buffer), 0);
		switch(len)
		{
		case 0:
			done = true;
			break;
		case -1:
			break;
		default:
			outByteArray.Append(reinterpret_cast<unsigned char *>(buffer), len);
			break;
		}
	}
}

// std::string CSocket::ReceiveLine()
std::string CSocket::ReceiveLine() throw(CMWException)
{
	std::string theString = "";
	while (true)
	{
		char theChar;
		int lRet = recv(m_socket, &theChar, 1, 0); 
		switch (lRet)
		{
		case 0:
			return theString;
		case -1:
			throw CMWEXCEPTION(EIDMW_ERR_SOCKET_RECV);
		default:
			theString += theChar;
			if (theChar == '\n') return theString;
		}
	}
}

void CSocket::Close()
{
  if (m_socket != 0) {
#ifdef WIN32
        closesocket(m_socket);
#else
	close(m_socket);
#endif
  }

}

void CSocket::Start() throw (eIDMW::CMWException)
{
#ifdef WIN32
	if (s_noOfSockets == 0)
	{
		WSADATA info;
		if (WSAStartup(MAKEWORD(2, 0), &info))
		{
			throw CMWEXCEPTION(EIDMW_ERR_SOCKET_CREATE);
		}
	}
#endif
	s_noOfSockets += 1;
}

void CSocket::End()
{
	s_noOfSockets -= 1;

#ifdef WIN32
	if (s_noOfSockets == 0)
	{
		WSACleanup();
	}
#endif
}

}  // namespace eIDMW