summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/noatunvisual/plugin_app.cpp
blob: ae60d2772d6d47099e3ccfe492f9a444c497530c (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

#include <sys/wait.h>
#include <sys/types.h>

#include "plugin_%{APPNAMELC}.h"
#include "plugin_%{APPNAMELC}_impl.h"

#include <kglobal.h>
#include <klocale.h>

extern "C"
{
    Plugin *create_plugin()
    {
	TDEGlobal::locale()->insertCatalogue("%{APPNAMELC}");
        return new %{APPNAME}Scope();
    }
}

%{APPNAME}Scope::%{APPNAME}Scope()
    : MonoScope(50), Plugin()
{
    setSamples(320);
}

%{APPNAME}Scope::~%{APPNAME}Scope()
{
    ::close(mOutFd);
    wait(0);
}

void %{APPNAME}Scope::init()
{
    int pipes[2];
    ::pipe(pipes);
    mOutFd=pipes[1];
    if (!fork())
    {
        ::close(pipes[1]);
        new %{APPNAME}View(pipes[0]);
        exit(0);
    }
    else
    {
        fcntl(mOutFd, F_SETFL, fcntl(mOutFd, F_GETFL) & ~O_NONBLOCK);
        ::close(pipes[0]);
        MonoScope::start();
    }    
}

void %{APPNAME}Scope::scopeEvent(float *d, int size)
{
    if (::write(mOutFd, (char *)d, size * sizeof(float))==-1)
    {
        MonoScope::stop();
        unload();
    }    
}