-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrm.inc
225 lines (199 loc) · 7.1 KB
/
Orm.inc
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<?php
/**
* Copyright Skinit, Inc.
*/
class Orm
{
protected static $instance = null;
protected $dataStores = array();
/**
* Singleton; no constructor access.
*/
protected function __construct()
{
// no op: singleton
}
/**
* Return the singleton instance. Create one if necessary.
*
* @return Orm
*/
public static function getInstance()
{
if( is_null( self::$instance ) )
{
self::$instance = new Orm();
}
return self::$instance;
}
/**
* Install an instance as the singleton instance. This should be called before any other methods in the Orm class.
*
* @param Orm $instance
*/
public static function installInstance( Orm $instance )
{
self::$instance = $instance;
}
/**
* Register a named data store. Setup any additional argumentes needed to identify or authenticate against the
* data.
*
* @param string $name
* @param string $driver
* @@param array $arguments
*/
public static function registerDataStore( $name, $driver, $arguments = array() )
{
$instance = self::getInstance();
$instance->dataStores[(string)$name] = array(
"driver" => (string)$driver,
"arguments" => $arguments,
"instance" => null,
);
}
/**
* Retrieve the named data store instance. If one does not exist, create one, call its connect method, and return
* it. The data store must first be registered with Orm::registerDataStore.
*
* @param string $name
* @return OrmDataStore
*/
public static function getDataStore( $name )
{
$name = (String)$name;
$instance = self::getInstance();
$dataStoreInfo = $instance->dataStores;
// make sure we have a registered data store
if( !is_array($dataStoreInfo[$name]) )
{
throw new OrmUnknownDataStoreException($name);
}
// create an instance if necessary
if( is_null($dataStoreInfo[$name]["instance"]) )
{
$driver = $dataStoreInfo[$name]["driver"];
if( empty($driver) )
{
throw new OrmException( "no registered data store '$name'" );
}
$className = ucfirst( $dataStoreInfo[$name]["driver"] ) . "DataStore";
if( !class_exists( $className ) )
{
throw new OrmMissingDriverException( $dataStoreInfo[$name]["driver"] );
}
$reflector = new ReflectionClass( $className );
$dataStoreInstance = $reflector->newInstanceArgs( $dataStoreInfo[$name]["arguments"] );
$dataStoreInstance->connect();
$dataStoreInstance->setName( $name );
$instance->dataStores[$name]["instance"] = $dataStoreInstance;
}
// return data store instance
return $instance->dataStores[$name]["instance"];
}
/**
* Generate model classes from the INFORMATION_SCHEMA of the provided database.
*
* Config:
* {
* "app": "catalog",
* "base_path": "models/orm/base",
* "user_path": "models/orm"
* }
*
* @param ISchematic $schematic
* @param array $config
*/
public static function generateModels( ISchematic $schematic, array $config )
{
$modelBuilder = new ModelBuilder();
$modelBuilder->addSchema( $schematic );
$basePath = array_key_exists( 'base_output_dir', $config )
? $config['base_output_dir']
: '.';
$userPath = array_key_exists( 'user_output_dir', $config )
? $config['user_output_dir']
: '.';
foreach( $modelBuilder->getClasses() as $class )
{
$className = (string)$class;
$fileName = "$className.inc";
$filePath = "$basePath/$fileName";
$code = $class->getCode();
if( false === file_put_contents( $filePath, $code ) )
{
throw new Exception( "could not write to $filePath (check permissions)" );
}
}
}
/**
* Return a formatted physical name for the provided "physical_name", "logicalName", or "friendly name".
*
* @param string $name
* @return string
*/
public static function formatPhysicalName( $name )
{
// if there's an underscore in the name, assume it's already a physical name
if( preg_match( '@_@', $name ) )
{
return $name;
}
// if there's a space in the name, assume it's in friendly format
if( preg_match( '@ @', $name ) )
{
return strtolower( str_replace( ' ', '_', $name ) );
}
// otherwise, assume it's in logical format
$logicalWords = preg_split( '@([[:upper:]][[:lower:]]+)@', $name, null,
PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY ); // identify Word as delimiter, capture words
return strtolower( implode( '_', $logicalWords ) );
}
/**
* Return a logical name for the provided "physical_name", "logicalName", or "friendly name".
*
* @param string $name
* @return string
*/
public static function formatLogicalName( $name )
{
// if there's an underscore in the name, assume it's in physical name
if( preg_match( '@_@', $name ) )
{
$physicalWords = explode( '_', strtolower($name) );
return lcfirst( implode( '', array_map('ucfirst', $physicalWords) ) );
}
// if there's a space in the name, assume it's in friendly format
if( preg_match( '@ @', $name ) )
{
$friendlyWords = explode( ' ', strtolower($name) );
return lcfirst( implode( '', array_map('ucfirst', $friendlyWords) ) );
}
// otherwise, assume it's already in logical format
return (string)$name;
}
/**
* Return a friendly name for the provided "physical_name", "logicalName", or "friendly name".
*
* @param string $name
* @return string
*/
public static function formatFriendlyName( $name )
{
// if there's an underscore in the name, assume it's in physical name
if( preg_match( '@_@', $name ) )
{
$physicalWords = explode( '_', strtolower($name) );
return ucwords( implode( ' ', $physicalWords ) );
}
// if there's a space in the name, assume it's already in friendly format
if( preg_match( '@ @', $name ) )
{
return $name;
}
// otherwise, assume it's in logical format
$logicalWords = preg_split( '@([[:upper:]][[:lower:]]+)@', $name, null,
PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY ); // identify Word as delimiter, capture words
return ucwords( strtolower( implode( ' ', $logicalWords ) ) );
}
}