e6b6aa0b09
I noticed that directorty structure of hphp/system was a bit scattered, so I consolidated things to reduce the total number of folders and to put related things together with each other. This diff moves the contents of "hphp/system/classes_hhvm" into "hphp/system", it moves the contents of "hphp/system/lib" into "hphp/system", moves "hphp/idl" to "hphp/system/idl", and moves the contents of "hphp/system/globals" into "hphp/system/idl".
122 linhas
5.3 KiB
C++
122 linhas
5.3 KiB
C++
/*
|
|
+----------------------------------------------------------------------+
|
|
| HipHop for PHP |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 2010-2013 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_SYSTEMLIB_H_
|
|
#define incl_HPHP_SYSTEMLIB_H_
|
|
|
|
#include "hphp/runtime/base/types.h"
|
|
|
|
namespace HPHP {
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class ObjectData;
|
|
class Unit;
|
|
class Class;
|
|
class Func;
|
|
namespace Eval {
|
|
class PhpFile;
|
|
}
|
|
|
|
#define SYSTEMLIB_CLASSES(x) \
|
|
x(stdclass) \
|
|
x(Exception) \
|
|
x(BadMethodCallException) \
|
|
x(InvalidArgumentException) \
|
|
x(RuntimeException) \
|
|
x(OutOfBoundsException) \
|
|
x(InvalidOperationException) \
|
|
x(pinitSentinel) \
|
|
x(resource) \
|
|
x(Directory) \
|
|
x(SplFileInfo) \
|
|
x(SplFileObject) \
|
|
x(DOMDocument) \
|
|
x(DOMException) \
|
|
x(PDOException) \
|
|
x(SoapFault) \
|
|
x(Closure) \
|
|
x(Continuation) \
|
|
x(Serializable) \
|
|
x(ArrayAccess) \
|
|
x(Iterator) \
|
|
x(IteratorAggregate) \
|
|
x(JsonSerializable) \
|
|
x(Traversable) \
|
|
x(Countable) \
|
|
x(KeysIterable) \
|
|
x(KVZippedIterable) \
|
|
x(MappedKeyedIterable) \
|
|
x(FilteredKeyedIterable) \
|
|
x(ZippedKeyedIterable) \
|
|
x(IterableView) \
|
|
x(KeyedIterableView) \
|
|
x(__PHP_Incomplete_Class) \
|
|
|
|
class SystemLib {
|
|
public:
|
|
static bool s_inited;
|
|
static string s_source;
|
|
static HPHP::Unit* s_unit;
|
|
static HPHP::Unit* s_hhas_unit;
|
|
static HPHP::Unit* s_nativeFuncUnit;
|
|
static HPHP::Unit* s_nativeClassUnit;
|
|
|
|
|
|
#define DECLARE_SYSTEMLIB_CLASS(cls) \
|
|
static HPHP::Class* s_ ## cls ## Class;
|
|
SYSTEMLIB_CLASSES(DECLARE_SYSTEMLIB_CLASS)
|
|
#undef DECLARE_SYSTEMLIB_CLASS
|
|
|
|
static HPHP::Func* s_nullFunc;
|
|
|
|
static ObjectData* AllocStdClassObject();
|
|
static ObjectData* AllocPinitSentinel();
|
|
static ObjectData* AllocExceptionObject(CVarRef message);
|
|
static ObjectData* AllocBadMethodCallExceptionObject(CVarRef message);
|
|
static ObjectData* AllocInvalidArgumentExceptionObject(CVarRef message);
|
|
static ObjectData* AllocRuntimeExceptionObject(CVarRef message);
|
|
static ObjectData* AllocOutOfBoundsExceptionObject(CVarRef message);
|
|
static ObjectData* AllocInvalidOperationExceptionObject(CVarRef message);
|
|
static ObjectData* AllocDOMDocumentObject(CStrRef version = null_string,
|
|
CStrRef encoding = null_string);
|
|
static ObjectData* AllocDOMExceptionObject(CVarRef message,
|
|
CVarRef code);
|
|
static ObjectData* AllocDirectoryObject();
|
|
static ObjectData* AllocPDOExceptionObject();
|
|
static ObjectData* AllocSoapFaultObject(CVarRef code,
|
|
CVarRef message,
|
|
CVarRef actor = null_variant,
|
|
CVarRef detail = null_variant,
|
|
CVarRef name = null_variant,
|
|
CVarRef header = null_variant);
|
|
static ObjectData* AllocKeysIterableObject(CVarRef mp);
|
|
static ObjectData* AllocKVZippedIterableObject(CVarRef mp);
|
|
static ObjectData* AllocMappedKeyedIterableObject(CVarRef iterable,
|
|
CVarRef callback);
|
|
static ObjectData* AllocFilteredKeyedIterableObject(CVarRef iterable,
|
|
CVarRef callback);
|
|
static ObjectData* AllocZippedKeyedIterableObject(CVarRef iterable1,
|
|
CVarRef iterable2);
|
|
|
|
static ObjectData* AllocIterableViewObject(CVarRef iterable);
|
|
static ObjectData* AllocKeyedIterableViewObject(CVarRef iterable);
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
}
|
|
|
|
#endif
|