summaryrefslogtreecommitdiffstats
path: root/lib/db/mdb2schemareader.php
blob: 827323a5512d0d5564109010013d666d43d35c2c (plain)
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
<?php
/**
 * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

class OC_DB_MDB2SchemaReader {
	static protected $DBNAME;
	static protected $DBTABLEPREFIX;
	static protected $platform;

	public static function loadSchemaFromFile($file, $platform) {
		self::$DBNAME  = OC_Config::getValue( "dbname", "owncloud" );
		self::$DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" );
		self::$platform = $platform;
		$schema = new \Doctrine\DBAL\Schema\Schema();
		$xml = simplexml_load_file($file);
		foreach($xml->children() as $child) {
			switch($child->getName()) {
				case 'name':
					$name = (string)$child;
					$name = str_replace( '*dbname*', self::$DBNAME, $name );
					break;
				case 'create':
				case 'overwrite':
				case 'charset':
					break;
				case 'table':
					self::loadTable($schema, $child);
					break;
				default:
					throw new DomainException('Unknown element: '.$child->getName());

			}
		}
		return $schema;
	}

	private static function loadTable($schema, $xml) {
		foreach($xml->children() as $child) {
			switch($child->getName()) {
				case 'name':
					$name = (string)$child;
					$name = str_replace( '*dbprefix*', self::$DBTABLEPREFIX, $name );
					$table = $schema->createTable($name);
					break;
				case 'create':
				case 'overwrite':
				case 'charset':
					break;
				case 'declaration':
					self::loadDeclaration($table, $child);
					break;
				default:
					throw new DomainException('Unknown element: '.$child->getName());

			}
		}
	}

	private static function loadDeclaration($table, $xml) {
		foreach($xml->children() as $child) {
			switch($child->getName()) {
				case 'field':
					self::loadField($table, $child);
					break;
				case 'index':
					self::loadIndex($table, $child);
					break;
				default:
					throw new DomainException('Unknown element: '.$child->getName());

			}
		}
	}

	private static function loadField($table, $xml) {
		$options = array();
		foreach($xml->children() as $child) {
			switch($child->getName()) {
				case 'name':
					$name = (string)$child;
					break;
				case 'type':
					$type = (string)$child;
					switch($type) {
						case 'text':
							$type = 'string';
							break;
						case 'clob':
							$type = 'text';
							break;
						case 'timestamp':
							$type = 'datetime';
							break;
						// TODO
						return;
					}
					break;
				case 'length':
					$length = (string)$child;
					$options['length'] = $length;
					break;
				case 'unsigned':
					$unsigned = self::asBool($child);
					$options['unsigned'] = $unsigned;
					break;
				case 'notnull':
					$notnull = self::asBool($child);
					$options['notnull'] = $notnull;
					break;
				case 'autoincrement':
					$autoincrement = self::asBool($child);
					$options['autoincrement'] = $autoincrement;
					break;
				case 'default':
					$default = (string)$child;
					$options['default'] = $default;
					break;
				default:
					throw new DomainException('Unknown element: '.$child->getName());

			}
		}
		if (isset($name) && isset($type)) {
			if (empty($options['default'])) {
				if (empty($options['notnull']) || !$options['notnull']) {
					unset($options['default']);
				}
				if ($type == 'integer') {
					$options['default'] = 0;
				}
				if (!empty($options['autoincrement']) && $options['autoincrement']) {
					unset($options['default']);
				}
			}
			if ($type == 'integer') {
				$length = $options['length'];
				if ($length == 1) {
					$type = 'boolean';
				}
				else if ($length < 4) {
					$type = 'smallint';
				}
				else if ($length > 4) {
					$type = 'bigint';
				}
			}
			$table->addColumn($name, $type, $options);
			if (!empty($options['autoincrement'])
			    && !empty($options['notnull'])) {
				$table->setPrimaryKey(array($name));
			}
		}
	}

	private static function loadIndex($table, $xml) {
		$name = null;
		$fields = array();
		foreach($xml->children() as $child) {
			switch($child->getName()) {
				case 'name':
					$name = (string)$child;
					break;
				case 'primary':
					$primary = self::asBool($child);
					break;
				case 'unique':
					$unique = self::asBool($child);
					break;
				case 'field':
					foreach($child->children() as $field) {
						switch($field->getName()) {
							case 'name':
								$field_name = (string)$field;
								$keywords = self::$platform->getReservedKeywordsList();
								if ($keywords->isKeyword($field_name)) {
									$field_name = self::$platform->quoteIdentifier($field_name);
								}
								$fields[] = $field_name;
								break;
							case 'sorting':
								break;
							default:
								throw new DomainException('Unknown element: '.$field->getName());

						}
					}
					break;
				default:
					throw new DomainException('Unknown element: '.$child->getName());

			}
		}
		if (!empty($fields)) {
			if (isset($primary) && $primary) {
				$table->setPrimaryKey($fields, $name);
			} else
			if (isset($unique) && $unique) {
				$table->addUniqueIndex($fields, $name);
			} else {
				$table->addIndex($fields, $name);
			}
		} else {
			throw new DomainException('Empty index definition: '.$name.' options:'. print_r($fields, true));
		}
	}

	private static function asBool($xml) {
		$result = (string)$xml;
		if ($result == 'true') {
			$result = true;
		} else
		if ($result == 'false') {
			$result = false;
		}
		return (bool)$result;
	}

}