MetaDataInterface.php
4.87 KB
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php
namespace Phalcon\Mvc\Model {
/**
* Phalcon\Mvc\Model\MetaDataInterface initializer
*/
interface MetaDataInterface {
/**
* Set the meta-data extraction strategy
*
* @param \Phalcon\Mvc\Model\MetaData\Strategy\Introspection $strategy
*/
public function setStrategy($strategy);
/**
* Return the strategy to obtain the meta-data
*
* @return \Phalcon\Mvc\Model\MetaData\Strategy\Introspection
*/
public function getStrategy();
/**
* Reads meta-data for certain model
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function readMetaData($model);
/**
* Reads meta-data for certain model using a MODEL_* constant
*
* @param \Phalcon\Mvc\ModelInterface $model
* @param int $index
* @return mixed
*/
public function readMetaDataIndex($model, $index);
/**
* Writes meta-data for certain model using a MODEL_* constant
*
* @param \Phalcon\Mvc\Model $model
* @param int $index
* @param mixed $data
*/
public function writeMetaDataIndex($model, $index, $data, $replace);
/**
* Reads the ordered/reversed column map for certain model
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function readColumnMap($model);
/**
* Reads column-map information for certain model using a MODEL_* constant
*
* @param \Phalcon\Mvc\ModelInterface $model
* @param int $index
*/
public function readColumnMapIndex($model, $index);
/**
* Returns table attributes names (fields)
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getAttributes($model);
/**
* Returns an array of fields which are part of the primary key
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getPrimaryKeyAttributes($model);
/**
* Returns an arrau of fields which are not part of the primary key
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getNonPrimaryKeyAttributes($model);
/**
* Returns an array of not null attributes
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getNotNullAttributes($model);
/**
* Returns attributes and their data types
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getDataTypes($model);
/**
* Returns attributes which types are numerical
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getDataTypesNumeric($model);
/**
* Returns the name of identity field (if one is present)
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return string
*/
public function getIdentityField($model);
/**
* Returns attributes and their bind data types
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getBindTypes($model);
/**
* Returns attributes that must be ignored from the INSERT SQL generation
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getAutomaticCreateAttributes($model);
/**
* Returns attributes that must be ignored from the UPDATE SQL generation
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getAutomaticUpdateAttributes($model);
/**
* Set the attributes that must be ignored from the INSERT SQL generation
*
* @param \Phalcon\Mvc\ModelInterface $model
* @param array $attributes
*/
public function setAutomaticCreateAttributes($model, $attributes, $replace);
/**
* Set the attributes that must be ignored from the UPDATE SQL generation
*
* @param \Phalcon\Mvc\ModelInterface $model
* @param array $attributes
*/
public function setAutomaticUpdateAttributes($model, $attributes, $replace);
/**
* Returns the column map if any
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getColumnMap($model);
/**
* Returns the reverse column map if any
*
* @param \Phalcon\Mvc\ModelInterface $model
* @return array
*/
public function getReverseColumnMap($model);
/**
* Check if a model has certain attribute
*
* @param \Phalcon\Mvc\ModelInterface $model
* @param string $attribute
* @return boolean
*/
public function hasAttribute($model, $attribute);
/**
* Checks if the internal meta-data container is empty
*
* @return boolean
*/
public function isEmpty();
/**
* Resets internal meta-data in order to regenerate it
*/
public function reset();
/**
* Reads meta-data from the adapter
*
* @param string $key
* @return array
*/
public function read($key);
/**
* Writes meta-data to the adapter
*
* @param string $key
* @param array $data
*/
public function write($key, $data);
}
}