summaryrefslogtreecommitdiff
path: root/src/globals.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/globals.cpp')
-rw-r--r--src/globals.cpp92
1 files changed, 0 insertions, 92 deletions
diff --git a/src/globals.cpp b/src/globals.cpp
deleted file mode 100644
index 8132ef3..0000000
--- a/src/globals.cpp
+++ /dev/null
@@ -1,92 +0,0 @@
-/**
- * Globals.cpp
- *
- * Implementation of the globals class
- *
- * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
- * @copyright 2013 Copernica BV
- */
-#include "includes.h"
-
-/**
- * Namespace
- */
-namespace Php {
-
-/**
- * Get access to the globals single instance
- * @return Globals
- */
-Globals &Globals::instance()
-{
- static Globals globals;
- return globals;
-}
-
-/**
- * The one and only instance
- * @var Globals
- */
-Globals &GLOBALS = Globals::instance();
-
-/**
- * Get access to a global variable
- * @param name
- * @return Global
- */
-Global Globals::operator[](const char *name)
-{
- // pointer to a zval
- zval **varvalue;
-
- // we need the TSRMLS variable
- TSRMLS_FETCH();
-
- // check if the variable already exists
- if (zend_hash_find(&EG(symbol_table), name, strlen(name)+1, (void**)&varvalue) == FAILURE)
- {
- // the variable does not already exist, return a global object
- // that will automatically set the value when it is updated
- return Global(name);
- }
- else
- {
- // we are in the happy situation that the variable exists, we turn
- // this value into a reference value, and return that
- return Global(name, *varvalue);
- }
-}
-
-/**
- * Get access to a global variable
- * @param name
- * @return Global
- */
-Global Globals::operator[](const std::string &name)
-{
- // pointer to a zval
- zval **varvalue;
-
- // we need the TSRMLS variable
- TSRMLS_FETCH();
-
- // check if the variable already exists
- if (zend_hash_find(&EG(symbol_table), name.c_str(), name.size()+1, (void**)&varvalue) == FAILURE)
- {
- // the variable does not already exist, return a global object
- // that will automatically set the value when it is updated
- return Global(name);
- }
- else
- {
- // we are in the happy situation that the variable exists, we turn
- // this value into a reference value, and return that
- return Global(name, *varvalue);
- }
-}
-
-/**
- * End of namespace
- */
-}
-