Compare commits
3 Commits
7be0716f61
...
e0feb8b2da
Author | SHA1 | Date | |
---|---|---|---|
|
e0feb8b2da | ||
|
65c2cdbbaf | ||
|
9e05ee86f7 |
@ -25,6 +25,8 @@ class client;
|
|||||||
* Server klasa za TCP/IP soket
|
* Server klasa za TCP/IP soket
|
||||||
* Instanca se incijalizira kada pokrećemo server
|
* Instanca se incijalizira kada pokrećemo server
|
||||||
*/
|
*/
|
||||||
|
// template<typename... Args>
|
||||||
|
|
||||||
|
|
||||||
class server {
|
class server {
|
||||||
public:
|
public:
|
||||||
@ -32,16 +34,17 @@ class server {
|
|||||||
struct sockaddr_in addr;
|
struct sockaddr_in addr;
|
||||||
SSL_CTX* securefds = NULL;
|
SSL_CTX* securefds = NULL;
|
||||||
|
|
||||||
server (const ushort port, const uint limit = 1000, SSL_CTX* _securefds = NULL);
|
server (const ushort port, const uint queue = 1000, SSL_CTX* _securefds = NULL);
|
||||||
~server ();
|
~server ();
|
||||||
|
|
||||||
// one klijent
|
// one klijent
|
||||||
client* cli;
|
client* cli = NULL;
|
||||||
void accept(const uint timeout = 100);
|
// template<typename... Args>
|
||||||
|
void sync(const uint timeout = 100, void (*func)(Args ...vars));
|
||||||
|
|
||||||
vector<thread> thr;
|
// vector<thread> thr;
|
||||||
vector<client*> clis;
|
// vector<client*> clis;
|
||||||
void asyncli(const uint limit, void (*handlecli)(client*) , const uint timeout = 100);
|
// void async(const uint limit, void (*handlecli)(Args ...args) , const uint timeout = 100);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
* Kontrustruktor varijable tipa server, prima port i limit za ograničenje liste klijenata na čekanju
|
* Kontrustruktor varijable tipa server, prima port i limit za ograničenje liste klijenata na čekanju
|
||||||
*/
|
*/
|
||||||
|
|
||||||
server::server (const ushort port, const uint limit, SSL_CTX* _securefds) {
|
server::server (const ushort port, const uint queue, SSL_CTX* _securefds) {
|
||||||
securefds = _securefds;
|
securefds = _securefds;
|
||||||
|
|
||||||
addr.sin_family = AF_INET;
|
addr.sin_family = AF_INET;
|
||||||
addr.sin_addr.s_addr = INADDR_ANY;
|
addr.sin_addr.s_addr = INADDR_ANY;
|
||||||
@ -26,34 +26,43 @@ server::server (const ushort port, const uint limit, SSL_CTX* _securefds) {
|
|||||||
throw string("[ERROR] Unable to bind socket ");
|
throw string("[ERROR] Unable to bind socket ");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (listen(sock, limit) < 0) {
|
if (listen(sock, queue) < 0) {
|
||||||
throw string("[ERROR] It is not possible to set the allowed number of waiting clients ");
|
throw string("[ERROR] It is not possible to set the allowed number of waiting clients ");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void server::accept(const uint timeout) {
|
template<typename... Args>
|
||||||
cli = new client(this, timeout, securefds);
|
void server::sync(const uint timeout, void (*func)(Args ...vars)) {
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void server::asyncli(const uint limit, void (*handlecli)(client*), const uint timeout) {
|
|
||||||
do {
|
do {
|
||||||
thr.clear();
|
if (cli != NULL) {
|
||||||
clis.clear();
|
cli->~client();
|
||||||
for (uint i=0; i<limit; i++) {
|
cli = NULL;
|
||||||
clis.push_back(new client(this, timeout, securefds));
|
|
||||||
thr.push_back(thread(handlecli, clis[clis.size()-1]));
|
|
||||||
}
|
}
|
||||||
|
cli = new client(this, timeout, securefds);
|
||||||
for (uint i=0; i<limit; i++) {
|
// callback
|
||||||
thr[i].join();
|
func();
|
||||||
clis[i]->~client();
|
|
||||||
}
|
|
||||||
|
|
||||||
} while (true);
|
} while (true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// template<typename... Args>
|
||||||
|
// void server::async(const uint limit, void (*handlecli)(Args ...args), const uint timeout) {
|
||||||
|
// do {
|
||||||
|
// for (uint i=0; i<limit; i++) {
|
||||||
|
// clis.push_back(new client(this, timeout, securefds));
|
||||||
|
// thr.push_back(thread(handlecli, args...));
|
||||||
|
// }
|
||||||
|
|
||||||
|
// for (uint i=0; i<limit; i++) {
|
||||||
|
// thr[i].join();
|
||||||
|
// clis[i]->~client();
|
||||||
|
// }
|
||||||
|
// thr.clear();
|
||||||
|
// clis.clear();
|
||||||
|
|
||||||
|
// } while (true);
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destruktor varijable tipa server
|
* Destruktor varijable tipa server
|
||||||
|
BIN
test/client.o
BIN
test/client.o
Binary file not shown.
@ -41,7 +41,13 @@ int main() {
|
|||||||
|
|
||||||
|
|
||||||
server myserver(5000, 100);
|
server myserver(5000, 100);
|
||||||
myserver.asyncli(8, [](client *cli) {
|
// myserver.async(8, [](client *cli) {
|
||||||
|
// cout << "Klijent " << cli->ipv4 << endl;
|
||||||
|
// string fromclient = cli->pull();
|
||||||
|
// cout << "S klijenta " << fromclient << endl;
|
||||||
|
// cli->push(fromclient);
|
||||||
|
// }, 200);
|
||||||
|
myserver.sync(8, [](client *cli) {
|
||||||
cout << "Klijent " << cli->ipv4 << endl;
|
cout << "Klijent " << cli->ipv4 << endl;
|
||||||
string fromclient = cli->pull();
|
string fromclient = cli->pull();
|
||||||
cout << "S klijenta " << fromclient << endl;
|
cout << "S klijenta " << fromclient << endl;
|
||||||
|
BIN
test/server.o
BIN
test/server.o
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user