blob: 86cb18e4ed67239853cc005636e250c2bfe6d4b6 (
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
|
psocksxx
========
A C++ wrapper for POSIX sockets
### Copyright and License
Copyright (C) 2013 Uditha Atukorala.
This software library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This software library 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](http://www.gnu.org/licenses/lgpl.html)
for more details.
### The Concept
This project was started to add to the features provided by the simple
[socket-library](https://github.com/uditha-atukorala/socket-library) project,
specially socket timeouts. But rather than sticking to the same class structure
it was decided to use [stream buffers](http://gcc.gnu.org/onlinedocs/libstdc++/manual/streambufs.html)
in C++ standard library.
The inspiration to derive from std::streambuf came from the [socket++](http://www.linuxhacker.at/socketxx)
library initially developed by Gnanasekaran Swaminathan. While the
socket++ library seems to be stable and feature rich, the coding style
and the lack of API documentation makes it a little difficult for the
beginners.
psocksxx library attempts to borrow the concepts from socket++ and
socket-library, but not the code, and create a well documented (and
hopefully easy to understand) POSIX socket communication wrapper in
C++. To keep the code simple and clean this project will only support
POSIX sockets.
### Downloads
You can download the source distributions from http://packages.geniusse.com/source/psocksxx/.
#### Debian/Ubuntu packages
First you should add the repository key to avoid warnings.
$ wget -q -O - http://packages.geniusse.com/debian/packman.gpg.key | sudo apt-key add -
Then add the following to your `/etc/apt/sources.list`;
$ deb http://packages.geniusse.com/debian/ [release] main
where the `[release]` being wheezy, jessie, sid etc.
Finally update your package list and install psocksxx;
$ sudo aptitude update
$ sudo aptitude install libpsocksxx-dev
### Dependencies
* CppUnit >= 1.12.1 (for unit tests)
* Doxygen (for doxygen documentation, of course)
### Bugs and Feature Requests
Please report all bugs and feature requests in [bugzilla](http://bugs.geniusse.com/) under the
[psocksxx](http://bugs.geniusse.com/enter_bug.cgi?product=psocksxx) project.
Known issues can be found [here](http://bugs.geniusse.com/buglist.cgi?query_format=specific&order=relevance%20desc&bug_status=__open__&product=psocksxx&list_id=130).
### Version history
__0.0.6__ - _03rd October 2014_
* Removing obsolete doxygen tags (bug [#37](http://bugs.geniusse.com/show_bug.cgi?id=37))
__0.0.5__ - _29th June 2014_
* Fixing inconsistent timeout behaviour on different systems
__0.0.4__ - _10th November 2013_
* bug fix - member functions should not be throwing exceptions if the
signature does not specify it.
__0.0.3__ - _31st October 2013_
* Suppress SIGPIPE signals
* Code cleanup work
__0.0.2__ - _29th September 2013_
* Added timeout support for socket communications
* New base socket stream I/O class to reduce redundant code
* Added install targets for doxygen generated docs
__0.0.1__ - _19th September 2013_
* Initial release
### Compiling from source
If you are using the github source then first you need to initialise
autotools.
$ libtoolize (glibtoolize in OS X)
$ aclocal
$ autoheader
$ autoconf
$ automake --add-missing (you will need automake >= 1.13)
Or you can grab the latest snapshot tar from [CI artifacts](http://jenkins.geniusse.com/job/psocksxx/).
After that you can use the usual `./configure && make`
### Notes
#### Continuous Integration
There is a continuous integration Jenkins job hosted [here](http://jenkins.geniusse.com/job/psocksxx/)
which contains the latest artifacts, unit test results and documentation etc.
#### Doxygen documentation
The latest doxygen documentation can be found at http://jenkins.geniusse.com/job/psocksxx/doxygen/.
|