commit 5c53b256f1f9dcb7b74f6f090f354f356f36009c
parent 31d7df350320bcf1d56dc416cd9813786637fdb6
Author: Johannes Lorenz <[email protected]>
Date: Sat, 9 Aug 2014 10:09:44 +0200
Introducing PID files to tmp folder.
Diffstat:
2 files changed, 26 insertions(+), 1 deletion(-)
diff --git a/src/Misc/MiddleWare.cpp b/src/Misc/MiddleWare.cpp
@@ -306,13 +306,34 @@ class DummyDataObj:public rtosc::RtData
static Fl_Osc_Interface *genOscInterface(struct MiddleWareImpl*);
/* Implementation */
-struct MiddleWareImpl
+class MiddleWareImpl
{
+ std::string get_tmp_file_name()
+ {
+ std::string tmp_file_name = "/tmp/zynaddsubfx_";
+ tmp_file_name += std::to_string(getpid());
+ return tmp_file_name;
+ }
+public:
MiddleWareImpl(void)
{
server = lo_server_new_with_proto(NULL, LO_UDP, liblo_error_cb);
lo_server_add_method(server, NULL, NULL, handler_function, NULL);
fprintf(stderr, "lo server running on %d\n", lo_server_get_port(server));
+
+ {
+ std::string tmp_file_name = get_tmp_file_name();
+ if(0 == access(tmp_file_name.c_str(), F_OK)) {
+ fprintf(stderr, "Error: Cannot overwrite file %s. "
+ "You should probably remove it.", tmp_file_name.c_str());
+ exit(EXIT_FAILURE);
+ }
+ FILE* tmp_fp = fopen(tmp_file_name.c_str(), "w");
+ if(!tmp_fp)
+ fprintf(stderr, "Warning: could not create new file %s.\n", tmp_file_name.c_str());
+ fprintf(tmp_fp, "%d", (int)lo_server_get_port(server));
+ fclose(tmp_fp);
+ }
//dummy callback for starters
cb = [](void*, const char*){};
@@ -346,6 +367,8 @@ struct MiddleWareImpl
~MiddleWareImpl(void)
{
+ remove(get_tmp_file_name().c_str());
+
warnMemoryLeaks();
delete master;
diff --git a/src/UI/NSM/Client.C b/src/UI/NSM/Client.C
@@ -166,7 +166,9 @@ namespace NSM
void
Client::check(int timeout)
{
+#ifdef LO_VERSION_GE_026
if(lo_server_wait(_server, timeout))
+#endif
while(lo_server_recv_noblock(_server, 0)) {}
}