a2981eaf25
Also, since its always present, remove the special case code for adding systemlib to a RepoAuthoritative repo, and clean up all the magic variables for finding systemlib. If HHVM_SYSTEMLIB is set, and the file exists, it will be used as systemlib, otherwise, the embedded one will be used.
93 linhas
3.5 KiB
C++
93 linhas
3.5 KiB
C++
/*
|
|
+----------------------------------------------------------------------+
|
|
| HipHop for PHP |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.php.net/license/3_01.txt |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef incl_HPHP_PROGRAM_FUNCTIONS_H_
|
|
#define incl_HPHP_PROGRAM_FUNCTIONS_H_
|
|
|
|
#include <util/base.h>
|
|
#include <runtime/base/types.h>
|
|
|
|
namespace HPHP {
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
* Main entry point of the entire program.
|
|
*/
|
|
int execute_program(int argc, char **argv);
|
|
void execute_command_line_begin(int argc, char **argv, int xhprof);
|
|
void execute_command_line_end(int xhprof, bool coverage, const char *program);
|
|
|
|
/**
|
|
* Setting up environment variables.
|
|
*/
|
|
void process_env_variables(Variant &variables);
|
|
|
|
/**
|
|
* Inserting a variable into specified symbol table.
|
|
*
|
|
* "overwrite" parameter is only for cookies:
|
|
* According to rfc2965, more specific paths are listed above the less
|
|
* specific ones. If we encounter a duplicate cookie name, we should
|
|
* skip it, since it is not possible to have the same (plain text)
|
|
* cookie name for the same path and we should not overwrite more
|
|
* specific cookies with the less specific ones.
|
|
*/
|
|
void register_variable(Variant &variables, char *name, CVarRef value,
|
|
bool overwrite = true);
|
|
|
|
String canonicalize_path(CStrRef path, const char* root, int rootLen);
|
|
|
|
/**
|
|
* Translate hex encode stack into both C++ and PHP frames.
|
|
*/
|
|
std::string translate_stack(const char *hexencoded,
|
|
bool with_frame_numbers = true);
|
|
|
|
time_t start_time();
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// C++ ffi
|
|
|
|
class ExecutionContext;
|
|
|
|
void hphp_process_init() ATTRIBUTE_COLD;
|
|
void hphp_session_init();
|
|
|
|
ExecutionContext* hphp_context_init();
|
|
bool hphp_invoke_simple(const std::string &filename, bool warmupOnly = false);
|
|
bool hphp_invoke(ExecutionContext *context, const std::string &cmd,
|
|
bool func, CArrRef funcParams, VRefParam funcRet,
|
|
const std::string &reqInitFunc, const std::string &reqInitDoc,
|
|
bool &error, std::string &errorMsg,
|
|
bool once = true, bool warmupOnly = false,
|
|
bool richErrorMsg = false);
|
|
void hphp_context_exit(ExecutionContext *context, bool psp,
|
|
bool shutdown = true, const char *program = nullptr);
|
|
|
|
void hphp_thread_exit();
|
|
void hphp_session_exit();
|
|
void hphp_process_exit() ATTRIBUTE_COLD;
|
|
bool hphp_is_warmup_enabled();
|
|
std::string get_systemlib();
|
|
|
|
// Generated by hphp/util/generate_buildinfo.sh.
|
|
extern const char* const kCompilerId;
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
}
|
|
|
|
#endif // incl_HPHP_PROGRAM_FUNCTIONS_H_
|