~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/Network_ms.h

Added the PBMS daemon plugin.

(Augen zu und durch!)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2008 PrimeBase Technologies GmbH, Germany
 
2
 *
 
3
 * PrimeBase Media Stream for MySQL
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
18
 *
 
19
 * Original author: Paul McCullagh
 
20
 * Continued development: Barry Leslie
 
21
 *
 
22
 * 2007-05-25
 
23
 *
 
24
 * H&G2JCtL
 
25
 *
 
26
 * Network interface.
 
27
 *
 
28
 */
 
29
 
 
30
#ifndef __NETWORK_MS_H__
 
31
#define __NETWORK_MS_H__
 
32
 
 
33
#include "CSDefs.h"
 
34
#include "CSSocket.h"
 
35
#include "CSThread.h"
 
36
#include "ConnectionHandler_ms.h"
 
37
 
 
38
class MSSystemThread : public CSDaemon {
 
39
public:
 
40
        MSSystemThread(time_t wait_time, CSThreadList *list): CSDaemon(wait_time, list) { }
 
41
 
 
42
        virtual bool doWork();
 
43
};
 
44
 
 
45
class MSNetwork {
 
46
public:
 
47
        static void startUp(int port);
 
48
        static void shutDown();
 
49
        static CSSocket *openConnection(MSConnectionHandler *handler);
 
50
        static void startConnectionHandler();
 
51
        static void startNetwork();
 
52
        static bool lockListenerSocket(MSConnectionHandler *handle);
 
53
        static void unlockListenerSocket();
 
54
        static CSMutex *getListenerLock() { return &gListenerLock; }
 
55
        static bool killListener();
 
56
 
 
57
public:
 
58
        static MSSystemThread           *gSystemThread;
 
59
        static time_t                           gCurrentTime;
 
60
        static time_t                           gLastService;
 
61
        static CSThreadList                     *gHandlerList;
 
62
        static CSSync                           gListenerLock;
 
63
        static CSSocket                         *gListenerSocket;
 
64
        static MSConnectionHandler      *gListenerThread;
 
65
        static u_int                            gWaitingToListen;
 
66
 
 
67
private:
 
68
        static int                                      handlerCount;
 
69
};
 
70
 
 
71
#endif