File: qiodevice_hook.h

package info (click to toggle)
libqtpas 2.6%2B2.0.8%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,860 kB
  • sloc: cpp: 56,595; pascal: 13,727; sh: 44; makefile: 18
file content (90 lines) | stat: -rw-r--r-- 3,164 bytes parent folder | download | duplicates (13)
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
//******************************************************************************
//  Copyright (c) 2005-2013 by Jan Van hijfte
//
//  See the included file COPYING.TXT for details about the copyright.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//******************************************************************************


#ifndef QIODEVICE_HOOK_H
#define QIODEVICE_HOOK_H

#include <qiodevice.h>

#include "qobject_hook.h"

class QIODevice_hook : public QObject_hook {
  Q_OBJECT
  public:
    QIODevice_hook(QObject *handle) : QObject_hook(handle) {
      readyRead_event.func = NULL;
      bytesWritten_event.func = NULL;
      aboutToClose_event.func = NULL;
      readChannelFinished_event.func = NULL;
    }
    void hook_readyRead(QHook &hook) { 
      if ( !readyRead_event.func )
        connect(handle, SIGNAL(readyRead()), this, SLOT(readyRead_hook()));
      readyRead_event = hook;
      if ( !hook.func )
        disconnect(handle, SIGNAL(readyRead()), this, SLOT(readyRead_hook()));
    }
    void hook_bytesWritten(QHook &hook) { 
      if ( !bytesWritten_event.func )
        connect(handle, SIGNAL(bytesWritten(qint64)), this, SLOT(bytesWritten_hook(qint64)));
      bytesWritten_event = hook;
      if ( !hook.func )
        disconnect(handle, SIGNAL(bytesWritten(qint64)), this, SLOT(bytesWritten_hook(qint64)));
    }
    void hook_aboutToClose(QHook &hook) { 
      if ( !aboutToClose_event.func )
        connect(handle, SIGNAL(aboutToClose()), this, SLOT(aboutToClose_hook()));
      aboutToClose_event = hook;
      if ( !hook.func )
        disconnect(handle, SIGNAL(aboutToClose()), this, SLOT(aboutToClose_hook()));
    }
    void hook_readChannelFinished(QHook &hook) { 
      if ( !readChannelFinished_event.func )
        connect(handle, SIGNAL(readChannelFinished()), this, SLOT(readChannelFinished_hook()));
      readChannelFinished_event = hook;
      if ( !hook.func )
        disconnect(handle, SIGNAL(readChannelFinished()), this, SLOT(readChannelFinished_hook()));
    }

  private slots:
    void readyRead_hook() {
      if ( readyRead_event.func ) {
        typedef void (*func_type)(void *data);
	(*(func_type)readyRead_event.func)(readyRead_event.data);
      }
    }
    void bytesWritten_hook(qint64 bytes) {
      if ( bytesWritten_event.func ) {
        typedef void (*func_type)(void *data, qint64 bytes);
	(*(func_type)bytesWritten_event.func)(bytesWritten_event.data, bytes);
      }
    }
    void aboutToClose_hook() {
      if ( aboutToClose_event.func ) {
        typedef void (*func_type)(void *data);
	(*(func_type)aboutToClose_event.func)(aboutToClose_event.data);
      }
    }
    void readChannelFinished_hook() {
      if ( readChannelFinished_event.func ) {
        typedef void (*func_type)(void *data);
	(*(func_type)readChannelFinished_event.func)(readChannelFinished_event.data);
      }
    }
  private:
    QHook readyRead_event;
    QHook bytesWritten_event;
    QHook aboutToClose_event;
    QHook readChannelFinished_event;
};


#endif