Apache log4cxx  Version 0.11.0
socket.h
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #ifndef _LOG4CXX_HELPERS_SOCKET_H
19 #define _LOG4CXX_HELPERS_SOCKET_H
20 
21 extern "C" {
22  struct apr_socket_t;
23 }
24 
25 
26 #include <log4cxx/helpers/inetaddress.h>
27 #include <log4cxx/helpers/pool.h>
28 
29 
30 namespace log4cxx
31 {
32 namespace helpers
33 {
34 class ByteBuffer;
43 class LOG4CXX_EXPORT Socket : public helpers::ObjectImpl
44 {
45  public:
46  DECLARE_ABSTRACT_LOG4CXX_OBJECT(Socket)
47  BEGIN_LOG4CXX_CAST_MAP()
48  LOG4CXX_CAST_ENTRY(Socket)
49  END_LOG4CXX_CAST_MAP()
50 
51 
54  Socket(InetAddressPtr& address, int port);
55  Socket(apr_socket_t* socket, apr_pool_t* pool);
56  ~Socket();
57 
58  size_t write(ByteBuffer&);
59 
61  void close();
62 
64  InetAddressPtr getInetAddress() const;
65 
67  int getPort() const;
68  private:
69  Socket(const Socket&);
70  Socket& operator=(const Socket&);
71 
72  Pool pool;
73 
74  apr_socket_t* socket;
75 
76 
78  InetAddressPtr address;
79 
82  int port;
83 };
84 
85 LOG4CXX_PTR_DEF(Socket);
86 
87 } // namespace helpers
88 } // namespace log4cxx
89 
90 #endif // _LOG4CXX_HELPERS_SOCKET_H
Implementation class for Object.
Definition: objectimpl.h:28
Definition: pool.h:32
A byte buffer.
Definition: bytebuffer.h:33
Definition: appender.h:33
Definition: socket.h:43