summaryrefslogtreecommitdiff
path: root/x11/ipc/server/ocopserver.cpp
blob: 4940cb8d3597f8d05f7ff2eafc01878c99d94531 (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/un.h>

#include <qcstring.h>
#include <qtimer.h>

#include "ocopserver.h"

OCopServer::OCopServer()
    : QObject()
{
    setName( "ocopserver");

    /*
     * init the server
     */
    init();
    initSocket();
}
OCopServer::~OCopServer() {
// socket notifiers should be deleted
    close(m_serverfd );
}
void OCopServer::init() {
    /*
     * we set SIGPIPE to SIG_IGN
     * to get EPIPE on reads ;)
     */
    qWarning("SIGPIPE to be ignored");
    signal(SIGPIPE,  SIG_IGN );

    /*
     * initialize some variables
     */
    m_server = 0l;
    m_serverError = 0l;
}

/**
 * here we will init our server
 * socket and bind and do the listen
 */
void OCopServer::initSocket() {
    /* get the home dir */
    QCString home( getenv("HOME") );
    QCString path( home + "/.opie.cop");

    if ( ( m_serverfd = socket( PF_UNIX, SOCK_STREAM, 0 ) ) == -1 ) {
        qWarning("failed to create server socket");
        /* try again later */
        QTimer::singleShot( 400, this, SLOT(initSocket() ) );
        return;
    }
    qWarning( "unlinking file %s", path.data() );

    /* unlink previous sockets */
    unlink( path.data() );

    struct sockaddr_un m_address;
    memset(&m_address, 0, sizeof(m_address ) );
    m_address.sun_family = AF_UNIX; /* unix domain socket */
    strcpy(m_address.sun_path, path.data() );
    m_adrlaenge = sizeof(m_address.sun_family) + strlen(m_address.sun_path );

    /* cast to make it a (sockadr*) */
    if (bind(m_serverfd,  (struct sockaddr*)&m_address, m_adrlaenge ) == -1 ) {
        qWarning("Server could not bind try again");
        close(m_serverfd);
        QTimer::singleShot(400, this, SLOT(initSocket() ) );
        return;
    }

    /* tell the kernel that we're listening and accepting
     * 5 pending connections */
    if (listen(m_serverfd, 5) == -1 ) {
        qWarning("could not listen");
        close(m_serverfd );
        QTimer::singleShot(400, this, SLOT(initSocket() ) );
        return;
    }

    /*
     * now we will create two QSocketNotifier
     * which will us notify on reads
     * and errors
     * we do this because they integrate
     * nicely into the QApplication eventloop
     */
    m_server = new QSocketNotifier(m_serverfd, QSocketNotifier::Read, this );
    connect( m_server, SIGNAL(activated(int) ),
             this, SLOT(newOnServer() ) );

    m_serverError = new QSocketNotifier( m_serverfd, QSocketNotifier::Exception, this);
    connect(m_serverError, SIGNAL(activated(int) ),
            this, SLOT(errorOnServer() ) );

    qWarning("done with registering");
}
/**
 * we got the possibility to read
 * on the server
 * this is mostly due a connect
 * on a client side
 * we will accept it
 * add it to our list
 */
void OCopServer::newOnServer() {
    int fd = accept();
    if ( fd < 0 )
        return;

    /*
     * we got a successfull new connection
     * be happy
     * set SocketNotifier
     * connect it
     * and a OCOPClient
     */
    qWarning("Heureka new connection %d", fd );


    registerClient( fd );
}
int OCopServer::accept() {
    /*
     * accept it
     * the socket is currently blocking IIRC
     */
    return ::accept( m_serverfd,  (struct sockaddr*)&m_address, &m_adrlaenge );
}
void OCopServer::newOnClient( int fd ) {
    errno = 0;
    OCOPHead head;
    memset(&head, 0, sizeof(head) );
    int rea = ::read(fd, &head, sizeof(head) );
    //qWarning("read %d %d", rea,  errno);
    /*
     * I should get EPIPE but nothing like this happens
     * so if rea == 0 and we were signaled by the notifier
     * we close it and drop the clients...
     */
    if ( rea <= 0 ) {
        deregisterClient( fd );
        return;
    }
    /*
     * OCOPHead
     */
    //qWarning("data %s %d", &bug, rea );

    /*
     * Check the magic
     * if chcked read till EOF if magic does not match
     * otherwise do read
     *  channel
     * func
     * data into mem
     * and then send the OCOPPacket
     *
     */
    if (head.magic == 47 ) {
        qWarning("magic match");
        QCString channel( head.chlen+1 );
        QCString func( head.funclen+1 );
        QByteArray data ( head.datalen );

        /*
         * we do not check for errors
         */
        qWarning("read ");
        int s = read(fd, channel.data(), head.chlen );
        s = read(fd, func.data(), head.funclen );
        s = read(fd, data.data(), head.datalen );
        qWarning("read");

        /* debug output */
        qWarning("channel %s %d", channel.data(), head.chlen );
        qWarning("func %s %d", func.data(), head.funclen );
        /* debug end */

        /*
         * now that we got the complete body
         * we need to make a package
         * and then we need to send it to clients
         * making a package is done here
         * dispatching it not
         */
        OCOPPacket packet( head.type, channel, func, data );
        dispatch( packet, fd );

    }else{
        qWarning("magic does not match");
        qWarning("magic %d", head.magic );
    }
}
void OCopServer::registerClient( int fd ) {
    if (m_clients.contains(fd) )
        return;

    QSocketNotifier* notify = new QSocketNotifier(fd, QSocketNotifier::Read, this );
    connect(notify, SIGNAL(activated(int) ),
            this, SLOT(newOnClient(int) ) );
    OCOPClient client;
    client.fd = fd;
    client.notify = notify;
    m_clients.insert( client.fd, client );
    qWarning("clients are up to %d", m_clients.count() );
};
void OCopServer::deregisterClient(int fd ) {
    QMap<int, OCOPClient>::Iterator it = m_clients.find( fd );
    if (it != m_clients.end() ) {
        OCOPClient client = it.data();
        delete client.notify;
        m_clients.remove(fd );
        close(fd );
        /*
         * TIME_ME
         *
         * now delete from all channels
         * go through all channels
         * remove the fd from the list
         * if count becomes 0 remove the channel
         * otherwise replace QArray<int>
         */
        QMap<QCString, QValueList<int> >::Iterator it2;
    repeatIt:
        for ( it2 = m_channels.begin(); it2 != m_channels.end(); ++it2 ) {
            /*
             * The channel contains this fd
             */
            qWarning("Channel %s", it2.key().data() );
            if ( it2.data().contains( fd ) ) {
                qWarning("contains");
                QValueList<int> array = it2.data();

                /*
                 * remove channel or just replace
                 */
                if ( array.count() == 1 ) {
                    qWarning("Invalidate!");
                    /* is the list now invalidatet? */
                    m_channels.remove( it2 );
                    /* That is the first go to of my life
                     * but Iterator remove( Iterator )
                     * does not exist
                     * it2 = --it2;
                     * does not work reliable too
                     * so the only way is to reiterate :(
                     */
                    goto repeatIt;
                }else{
                    qWarning("removing");
                    array.remove( fd );
                    it2 = m_channels.replace( it2.key(), array );
                }
            }
        } // off all channels
    }
    qWarning("clients are now at %d", m_clients.count() );
};
/**
 * this function will evaluate
 * the package and then do the appropriate thins
 */
void OCopServer::dispatch( const OCOPPacket& packet, int sourceFD ) {
    qWarning("packet.type() == %d", packet.type() );
    switch( packet.type() ) {
    case OCOPPacket::Register:
        registerClient(sourceFD );
        break;
    case OCOPPacket::Unregister:
        deregisterClient(sourceFD );
        break;
    case OCOPPacket::Call:
        call( packet, sourceFD );
        break;
        /* not implemented */
    case OCOPPacket::Method:
        break;
        /* nit implemented */
    case OCOPPacket::Reply:
        break;
    case OCOPPacket::RegisterChannel:
        addChannel( packet.channel() , sourceFD );
        break;
    case OCOPPacket::UnregisterChannel:
        delChannel( packet.channel(), sourceFD );
        break;
        /* not implemented */
    case OCOPPacket::Return:
        break;
        /* not implemented :( */
    case OCOPPacket::Signal:
        break;
    case OCOPPacket::IsRegistered:
        qWarning("IsRegistered");
        isRegistered( packet.channel(), sourceFD );
        break;
    };
}
void OCopServer::errorOnServer() {
    /*
     * something is wrong on the server socket?
     * what should we do?
     * FIXME
     */
}
QStringList OCopServer::channels() {
    QStringList list;
    {
        QMap<QCString, QValueList<int> >::Iterator it;
        for (it = m_channels.begin(); it != m_channels.end(); ++it ) {
            list << it.key();
        };
    }
    return list;
}
bool OCopServer::isChannelRegistered( const QCString& chan ) const{
    return m_channels.contains( chan );
}
void OCopServer::addChannel( const QCString& channel,
                             int fd ) {
    QMap<QCString, QValueList<int> >::Iterator it;
    it = m_channels.find( channel );

    /* could be empty */
    QValueList<int> list = it.data();
    list.append( fd );
    it = m_channels.replace( channel, list );
};
void OCopServer::delChannel( const QCString& channel,
                             int fd ) {
    if (!m_channels.contains( channel ) )
        return;

    QMap<QCString, QValueList<int> >::Iterator it;
    it = m_channels.find( channel );

    if ( it.data().contains(fd) ) {

        QValueList<int> ints = it.data();
        if ( ints.count() == 1  )
            m_channels.remove( it );
        else{
            QValueList<int> ints = it.data();
            ints.remove( fd );
            m_channels.replace( it.key(), ints );
        }
    }
}
void OCopServer::isRegistered( const QCString& channel, int fd) {
    qWarning("isRegistered");
    OCOPHead head;
    QCString func(2);

    memset(&head, 0, sizeof(head ) );
    head.magic = 47;
    head.type = OCOPPacket::IsRegistered;
    head.chlen = channel.size();
    head.funclen = func.size();
    head.datalen = 0;

    if ( isChannelRegistered( channel ) ) {
        //is registered
        func[0] = 1;
    }else{
        func[0] = 0;
    }

    /**
     * write the head
     * and then channel
     * success/failure inside func
     */
    write(fd, &head, sizeof(head) );
    write(fd, channel.data(), channel.size() );
    write(fd, func.data(), func.size() );
}
QValueList<int> OCopServer::clients( const QCString& channel ) {
    return m_channels[channel];
}
void OCopServer::call( const OCOPPacket& p, int ) {
    QValueList<int> cli = clients( p.channel() );
    QValueList<int>::Iterator it;

    OCOPHead head = p.head();
    for (it = cli.begin(); it != cli.end(); ++it ) {
        write( (*it), &head, sizeof(head ) );
        /* expl. shared! */
        write( (*it), p.channel().data(), p.channel().size() );
        write( (*it), p.header().data(), p.header().size() );
        write( (*it), p.content().data(), p.content().size() );
    };
}