usb: getting string descriptors, minor improvements
[quarnos.git] / manes / ods / injector.h
blobcc069e8f83afed0140360a9424b55a3bd1ab02b2
1 /* Quarn OS / Manes / ODS
3 * Injector
5 * Copyright (C) 2008-2009 Pawel Dziepak
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef _INJECTOR_H_
24 #define _INJECTOR_H_
26 namespace manes {
27 namespace ods {
28 /**
29 * @brief Procedure Call Injector
30 * @details This is a base class for procedure call injectors, which
31 * allow to modify object vtable in the way that makes it easy
32 * to observe and catch all invocations of its methods.
34 class injector {
35 protected:
36 delegate<void*,unsigned char*> catcher;
38 public:
39 #if __GNUC__ == 4
40 typedef gcc4_x86_injector default_injector;
41 #else
42 #error No injector found for your version of GCC.
43 #endif
45 /**
46 * Set function to be called after caught invocation */
47 virtual void set_catcher(delegate<unsigned int,unsigned char*>);
49 /**
50 * @brief Inject catcher functions
52 * Inject catcher functions into each invocation of obj method in order
53 * to allow transport them through ODS network.
55 virtual void inject(void *obj) = 0;
60 #endif