Remove support for parsing the `elseif` keyword
[hiphop-php.git] / hphp / runtime / base / intercept.h
blob85b75639f7dce26e9731892a26e4a4940d28eadc
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-present Facebook, Inc. (http://www.facebook.com) |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
16 #pragma once
18 #include <stdint.h>
20 namespace HPHP {
22 struct Array;
23 struct Func;
24 struct String;
25 struct Variant;
27 ///////////////////////////////////////////////////////////////////////////////
28 // fb_intercept2()
30 /**
31 * When an interceptable point is hit, invoke handler with all parameters
32 * instead. If it returns FALSE, continues execution. Otherwise, return its
33 * return.
35 bool register_intercept(const String& name, const Variant& callback);
37 /**
38 * Check to see if it is actually intercepted for current request.
40 Variant* get_intercept_handler(const Func* func);
42 /**
43 * Call intercept handler with original parameters.
45 bool handle_intercept(const Variant& handler, const String& name,
46 const Array& params, Variant& ret);
48 ///////////////////////////////////////////////////////////////////////////////
49 // fb_rename_function()
51 void rename_function(const String& old_name, const String& new_name);
53 ///////////////////////////////////////////////////////////////////////////////