-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmrlib.php
executable file
·177 lines (140 loc) · 4.34 KB
/
mrlib.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?php
// Mister Lib Foundation Library
// Copyright(C) 2015 McDaniel Consulting, LLC
//
// Pronounced "Mister Lib" - kind of like Mr. Coffee and Mr. Radar in the movie Space Balls.
//
// MrLib is a static class that initializes the library and provides some basic functionality
// for use throughout. Include this file before including any other mrlib file to make sure
// that things have been initialized correctly.
//
class mrlib
{
public static $filesystemLocation;
// Initialize MrLib.
public static function init()
{
mrlib::detectFilesystemLocation();
if (MRLIB_AUTOLOAD_ENABLED == TRUE)
{
mrlib::autoload();
}
}
// Helper function to load a file. This provides consistent
//
// This method can be called in the following two ways:
// 1 - Specify the path syntax:
// mrlib::load("sql/MrDatabaseManager");
//
// 2 - Specify the module and filename explicitly:
// mrlib::load("sql", "MrDatabaseManager.php");
//
public static function load($file)
{
$location = mrlib::getFileSystemLocation();
// If file starts with "./", we look into the application root dir.
if ($file[0] == "." && $file[1] == "/")
{
$res = include_once($location['root_dir'] . "/" . substr($file, 2) . ".php");
if (!$res) trigger_error(print_r(debug_backtrace(), TRUE), E_USER_WARNING);
}
// The file did not start with "./". Assume we're loading a mrlib module. Look in mrlib modules dir.
else
{
$res = include_once($location['modules_dir'] . "/" . $file . ".php");
if (!$res) trigger_error(print_r(debug_backtrace(), TRUE), E_USER_WARNING);
}
}
// Factory method to initialize and return new object. Pass it a path to an object in the module tree
// A path of "event/MrEventHandler" would return a new MrEventHandler object
//
// @param string $path
// @return object
public static function getNew($path)
{
$elements = explode("/", $path);
$last = count($elements) - 1;
$file = $elements[$last] . ".php";
mrlib::load($file);
$obj = new $elements[$last];
return $obj;
}
// Factory method to get a reference to a singleton object. Initialize the singleton if not already done.
// @return object
public static function getSingleton($path)
{
$elements = explode("/", $path);
$last = count($elements) - 1;
$className = $elements[$last];
mrlib::load($path);
$code = "\$ref = {$className}::getInstance();";
eval($code);
return $ref;
}
// Return filesystem location information
// @return array
public static function getFileSystemLocation()
{
return mrlib::$filesystemLocation;
}
// Detect location of mrlib in filesystem.
public static function detectFilesystemLocation()
{
mrlib::$filesystemLocation['lib_dir'] = "";
mrlib::$filesystemLocation['modules_dir'] = "";
mrlib::$filesystemLocation['root_dir'] = "";
// lib_dir is the base of the mrlib framework.
if (defined("MRLIB_DIR"))
{
mrlib::$filesystemLocation['lib_dir'] = MRLIB_DIR;
mrlib::$filesystemLocation['modules_dir'] = MRLIB_DIR . "/modules/";
}
else
{
$f = dirname(__FILE__);
$arr = explode("/", $f);
$arr_num = count($arr);
for ($i=0; $i < $arr_num; $i++)
{
mrlib::$filesystemLocation['lib_dir'] .= $arr[$i] . "/";
}
for ($i=0; $i < $arr_num - 1; $i++)
{
mrlib::$filesystemLocation['modules_dir'] .= $arr[$i] . "/";
}
mrlib::$filesystemLocation['modules_dir'] .= $arr[$i] . "/modules/";
}
// root_dir is where the application lives. Models, Views, Controllers, Includes, Templates, etc...
if (defined("MRLIB_ROOT"))
{
mrlib::$filesystemLocation['root_dir'] = MRLIB_ROOT;
}
else
{
throw new Exception("MRLIB_ROOT was not defined.");
}
}
// Automatically include any files in the specified autoload directory.
public static function autoload()
{
if (is_dir(MRLIB_AUTOLOAD_DIR))
{
if ($dh = opendir(MRLIB_AUTOLOAD_DIR))
{
while (($file = readdir($dh)) !== false)
{
if ($file != "." && $file != ".." && strpos($file, '.') != 0)
{
include(MRLIB_AUTOLOAD_DIR . "/" . $file);
}
}
closedir($dh);
}
}
}
// end class
}
// Initialize mrlib!
include_once(realpath(dirname(__FILE__)) . "/config.php");
mrlib::init();
?>