» codelab : http://codelab.fr/accueil » Forum : openFrameworks : http://codelab.fr/openframeworks » Comment "threader" une connexion TCP ? : http://codelab.fr/4280 Ceci est la version imprimable d'un sujet du forum, pour retourner à la version complète : Comment "threader" une connexion TCP ? |
Marty — 2013-05-24 11:14:14 |
Bonjour, |
Marty — 2013-05-26 02:01:14 |
hello, |
cgiles — 2013-09-08 08:33:14 |
salut, je viens de faire face a ce même problême, mon app android frizait quand le serveru était indisponible. /* * ofTcpClientThread.h * * Created on: 7 sept. 2013 * Author: gilles */ #ifndef OFTCPCLIENTTHREAD_H_ #define OFTCPCLIENTTHREAD_H_ #include "ofMain.h" #include "ofxNetwork.h" // my thread for the tcp client, sure it can be better, but I'm a padawan class ofTcpClientThread: public ofThread { void threadedFunction() { // while(isThreadRunning()) does the thread loop, without that, it work once... while (isThreadRunning()) { // check if my client is connected if (myClientTcp.isConnected()) { // lock the ressource lock(); // let know the main thread we are online isConnected = true; // check if the main thread already read the received data, without that // without that the main thread is unable to get the data, strange... if (isChecked) { rawReceived = myClientTcp.receive(); isChecked = false; } // unock the ressource unlock(); } else { // if client is unconnected myClientTcp.setup(ip, 11211); // how the message are ended, you must define it. myClientTcp.setMessageDelimiter("}"); // lock the ressource lock(); // let know is unconnected isConnected = false; // unlock the ressource unlock(); } } } ofxTCPClient myClientTcp; // i must define this variables as public, without that i got an error // if i try to access them since the main thread, i got an error about private access public: string rawReceived = ""; public: bool isConnected = false; public: bool isChecked = true; string ip = "192.168.0.42"; }; #endif /* OFTCPCLIENTTHREAD_H_ */ Donc dans mon code, j'accède depuis le main thread au donné tel que rawReceived, et isConnected, et le main thread lui renvoie le ischecked. ofTcpClientThread monThread; monThread.startThread(true, false); et dans la partie update je bloque les ressources de mon trhead , puis j'accède a celle ci; monThread.lock(); isConnected=monThread.isConnected; datareceived=monThread.rawReceived; monThread.isChecked=isChecked; monThread.unlock(); Les fonctions lock et unlock permettent dans le thread et dans le main trhead de bloquer l'accès au ressources, et ainsi les modifier ;) |
caracteriel — 2013-09-08 18:35:37 |
Regarder ofHttpRequest et ofHttpResponse, qui peut simplifier la tâche |
cgiles — 2013-09-12 16:45:12 |
Je me connecte a un serveur tcp, et non pas un serveur http, ça peut me servir quand même ? |
Marty — 2013-10-01 23:53:13 |
Salut, |
nononononono — 2013-10-02 15:15:56 |
Ca devrait pouvoir se gérer : http://img.di.fct.unl.pt/~diogocabral/Q … ideC++.pdf |
Marty — 2013-10-02 15:31:25 |
Oui je suis déja tombé sur ce document, c'est un très bon début mais l'idée (la mienne en tout cas) serait que oF soit intégrable dans l'IDE de Qt (Qt Creator) pour tirer le potentiel multiplateforme du framework. |