summaryrefslogtreecommitdiff
path: root/src/main/cpp/datagramsocket.cpp
blob: 617980aad446c242fcb90c5aec70d82374841967 (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
182
183
184
185
186
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#include <log4cxx/logstring.h>
#include <log4cxx/helpers/datagramsocket.h>
#include <log4cxx/helpers/datagrampacket.h>
#include <log4cxx/helpers/loglog.h>
#include <log4cxx/helpers/transcoder.h>

#include "apr_network_io.h"
#include "apr_lib.h"

using namespace log4cxx::helpers;

IMPLEMENT_LOG4CXX_OBJECT(DatagramSocket)

DatagramSocket::DatagramSocket()
 : socket(0), address(), localAddress(), port(0), localPort(0)
{
   create();
}

DatagramSocket::DatagramSocket(int localPort1)
 : socket(0), address(), localAddress(), port(0), localPort(0)
{
   InetAddressPtr bindAddr = InetAddress::anyAddress();

   create();
   bind(localPort1, bindAddr);
}

DatagramSocket::DatagramSocket(int localPort1, InetAddressPtr localAddress1)
 : socket(0), address(), localAddress(), port(0), localPort(0)
{
   create();
   bind(localPort1, localAddress1);
}

DatagramSocket::~DatagramSocket()
{
   try
   {
      close();
   }
   catch(SocketException&)
   {
   }
}

/**  Binds a datagram socket to a local port and address.*/
void DatagramSocket::bind(int localPort1, InetAddressPtr localAddress1)
{
   Pool addrPool;

   // Create server socket address (including port number)
   LOG4CXX_ENCODE_CHAR(hostAddr, localAddress1->getHostAddress());
   apr_sockaddr_t *server_addr;
   apr_status_t status =
       apr_sockaddr_info_get(&server_addr, hostAddr.c_str(), APR_INET,
                             localPort1, 0, addrPool.getAPRPool());
   if (status != APR_SUCCESS) {
     throw BindException(status);
   }

   // bind the socket to the address
   status = apr_socket_bind(socket, server_addr);
   if (status != APR_SUCCESS) {
     throw BindException(status);
   }

   this->localPort = localPort1;
   this->localAddress = localAddress1;
}

/** Close the socket.*/
void DatagramSocket::close()
{
   if (socket != 0) {
      apr_status_t status = apr_socket_close(socket);
      if (status != APR_SUCCESS) {
        throw SocketException(status);
      }

      socket = 0;
      localPort = 0;
   }
}

void DatagramSocket::connect(InetAddressPtr address1, int port1)
{

   this->address = address1;
   this->port = port1;

   Pool addrPool;

   // create socket address
   LOG4CXX_ENCODE_CHAR(hostAddr, address1->getHostAddress());
   apr_sockaddr_t *client_addr;
   apr_status_t status =
       apr_sockaddr_info_get(&client_addr, hostAddr.c_str(), APR_INET,
                             port, 0, addrPool.getAPRPool());
   if (status != APR_SUCCESS) {
     throw ConnectException(status);
   }

   // connect the socket
   status = apr_socket_connect(socket, client_addr);
   if (status != APR_SUCCESS) {
     throw ConnectException(status);
   }
}

/** Creates a datagram socket.*/
void DatagramSocket::create()
{
  apr_socket_t* newSocket;
  apr_status_t status =
    apr_socket_create(&newSocket, APR_INET, SOCK_DGRAM,
                      APR_PROTO_UDP, socketPool.getAPRPool());
  socket = newSocket;
  if (status != APR_SUCCESS) {
    throw SocketException(status);
  }
}

/** Receive the datagram packet.*/
void DatagramSocket::receive(DatagramPacketPtr& p)
{
   Pool addrPool;

   // Create the address from which to receive the datagram packet
   LOG4CXX_ENCODE_CHAR(hostAddr, p->getAddress()->getHostAddress());
   apr_sockaddr_t *addr;
   apr_status_t status =
       apr_sockaddr_info_get(&addr, hostAddr.c_str(), APR_INET,
                             p->getPort(), 0, addrPool.getAPRPool());
   if (status != APR_SUCCESS) {
     throw SocketException(status);
   }

   // receive the datagram packet
   apr_size_t len = p->getLength();
   status = apr_socket_recvfrom(addr, socket, 0,
                                (char *)p->getData(), &len);
   if (status != APR_SUCCESS) {
     throw IOException(status);
   }
}

/**  Sends a datagram packet.*/
void DatagramSocket::send(DatagramPacketPtr& p)
{
   Pool addrPool;

   // create the adress to which to send the datagram packet
   LOG4CXX_ENCODE_CHAR(hostAddr, p->getAddress()->getHostAddress());
   apr_sockaddr_t *addr;
   apr_status_t status =
       apr_sockaddr_info_get(&addr, hostAddr.c_str(), APR_INET, p->getPort(),
                             0, addrPool.getAPRPool());
   if (status != APR_SUCCESS) {
     throw SocketException(status);
   }

   // send the datagram packet
   apr_size_t len = p->getLength();
   status = apr_socket_sendto(socket, addr, 0,
                              (char *)p->getData(), &len);
   if (status != APR_SUCCESS) {
     throw IOException(status);
   }
}