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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
|
<?php /** * PHP_UML (PHP_UML_Output_Xmi_BuilderImpl2) * * PHP version 5 * * @category PHP * @package PHP_UML * @author Baptiste Autin <ohlesbeauxjours@yahoo.fr> * @license http://www.gnu.org/licenses/lgpl.html LGPL License 3 * @version SVN: $Revision: 174 $ * @link http://pear.php.net/package/PHP_UML * @since $Date: 2011-09-15 03:17:32 +0200 (jeu., 15 sept. 2011) $ */
/** * Implementation class to create XMI in version 2 * * See the interface PHP_UML_Output_Xmi_Builder for the comments. * * @category PHP * @package PHP_UML * @subpackage Output * @subpackage Xmi * @see PHP_UML_Output_Xmi_Builder * @author Baptiste Autin <ohlesbeauxjours@yahoo.fr> * @license http://www.gnu.org/licenses/lgpl.html LGPL License 3 */ class PHP_UML_Output_Xmi_BuilderImpl2 extends PHP_UML_Output_Xmi_AbstractBuilder { const XMI_VERSION = '2.1'; const UML_VERSION = '2.1.2';
const DEFAULT_CLASSIFIER_ATT = ' visibility="public" isAbstract="false" '; /** * PHP_UML UML Profile (TODO) * @var string */ public $profile = '';
public function getXmiHeaderOpen() { return '<xmi:XMI xmi:version="'.self::XMI_VERSION.'" xmlns:uml="http://schema.omg.org/spec/UML/'.self::UML_VERSION.'" xmlns:xmi="http://schema.omg.org/spec/XMI/'.self::XMI_VERSION.'" xmlns:php="http://schemas/phpdoc/'.self::getUID().'"> <xmi:Documentation exporter="'.self::EXPORTER_NAME.'"/>'; }
public function getModelOpen(PHP_UML_Metamodel_Package $model) { return '<uml:Model xmi:type="uml:Model" name="'.$model->name.'" xmi:id="'.$model->id.'" '.self::DEFAULT_CLASSIFIER_ATT.'>'; }
public function getModelClose() { return '</uml:Model>'; } public function getXmiHeaderClose() { return '</xmi:XMI>'; } public function getPackageOpen(PHP_UML_Metamodel_Package $package) { $str = '<packagedElement xmi:type="uml:Package" xmi:id="'.$package->id. '" name="'.$package->name.'">'; if (isset($package->description)) { $str .= $this->getComment($package->description, $package->id); } return $str; } public function getPackageClose() { return '</packagedElement>'; } public function getNamespaceOpen() { return ''; } public function getNamespaceClose() { return ''; } public function getDatatype(PHP_UML_Metamodel_Datatype $type) { $str = '<packagedElement xmi:type="uml:DataType"'. ' xmi:id="'.$type->id.'"'. ' name="'.$type->name.'">'; if (isset($type->description)) $str .= $this->getComment($type->description, $type->id); return $str.'</packagedElement>'; } public function getSubsystemOpen(PHP_UML_Metamodel_Package $package) { return '<packagedElement xmi:type="uml:Component" xmi:id="'. $package->id.'" name="'.$package->name. '" '.self::DEFAULT_CLASSIFIER_ATT.'>'; } public function getSubsystemClose() { return '</packagedElement>'; }
public function getClass(PHP_UML_Metamodel_Class $class) { $strRealization = '';
$str = '<packagedElement xmi:type="uml:Class" name="'.$class->name.'" xmi:id="'. $class->id.'" visibility="package" isAbstract="'.($class->isAbstract?'true':'false').'">';
$str .= $this->getGeneralizations($class);
$strRealization .= $this->getRealizations($class);
foreach ($class->ownedAttribute as &$property) $str .= $this->getProperty($property);
foreach ($class->ownedOperation as &$operation) $str .= $this->getOperation($operation);
if (isset($class->description)) $str .= $this->getComment($class->description, $class->id);
$str .= '</packagedElement>';
return $str.$strRealization; } public function getInterface(PHP_UML_Metamodel_Interface $interface) { $str = '<packagedElement xmi:type="uml:Interface" '. ' name="'.$interface->name.'" xmi:id="'.$interface->id.'"'. ' visibility="package" isAbstract="true">';
foreach ($interface->ownedOperation as &$operation) $str .= $this->getOperation($operation);
$str .= $this->getGeneralizations($interface);
if (isset($interface->description)) $str .= $this->getComment($interface->description, $interface->id);
$str .= '</packagedElement>'; return $str; }
public function getRealizations(PHP_UML_Metamodel_Class $client) { $str = ''; foreach ($client->implements as &$rclass) { if (is_object($rclass)) { $str .= '<packagedElement xmi:type="uml:Realization" '. 'xmi:id="'.self::getUID().'" '. 'client="'.$client->id.'" '. 'supplier="'.$rclass->id.'" '. 'realizingClassifier="'.$rclass->id.'"/>'; } } return $str; }
public function getGeneralizations(PHP_UML_Metamodel_Type $client) { $str = ''; foreach ($client->superClass as &$gclass) { if (is_object($gclass)) { $str .= '<generalization xmi:type="uml:Generalization" '. 'xmi:id="'.self::getUID().'" '. 'general="'.$gclass->id.'"/> '; } } return $str; }
public function getProperty(PHP_UML_Metamodel_Property $property) { $str = '<ownedAttribute xmi:type="uml:Property"'. ' name="'.$property->name.'"'. ' xmi:id="'.$property->id.'"'. ' visibility="'.$property->visibility.'" '; if (!$property->isInstantiable) $str .= ' isStatic="true"'; if ($property->isReadOnly) $str .= ' isReadOnly="true" ';
$str .= '>'.$this->getParameterType($property); if (isset($property->description)) $str .= $this->getComment($property->description, $property->id); $str .= '</ownedAttribute>'; return $str; }
public function getOperation(PHP_UML_Metamodel_Operation $operation) { $str = '<ownedOperation xmi:id="'.$operation->id.'" name="'.$operation->name.'" visibility="'.$operation->visibility.'" ';
if (!$operation->isInstantiable) $str .= ' isStatic="true"'; if ($operation->isAbstract) $str .= ' isAbstract="true"';
$str .= '>';
foreach ($operation->ownedParameter as &$parameter) { $str .= $this->getParameter($parameter); }
if (isset($operation->description)) $str .= $this->getComment($operation->description, $operation->id);
$str .= '</ownedOperation>';
return $str; } public function getParameter(PHP_UML_Metamodel_Parameter $parameter) { return '<ownedParameter xmi:id="'.$parameter->id.'" '. 'name="'.$parameter->name.'" direction="'.$parameter->direction.'">'. $this->getParameterType($parameter). '</ownedParameter>'; } public function getParameterType(PHP_UML_Metamodel_TypedElement $parameter) { $str = ''; $id = self::getUID();
if (isset($parameter->type->id)) $str = '<type xmi:idref="'.$parameter->type->id.'"/>';
if ($parameter->default!='') $str .= '<defaultValue xmi:type="uml:LiteralString" xmi:id="'.$id.'"'. ' value="'.htmlspecialchars($parameter->default, ENT_QUOTES).'" />';
return $str; } public function getArtifact(PHP_UML_Metamodel_Artifact $file, &$mf = array()) { $id = $file->id; $file = htmlspecialchars($file->name); $name = basename($file); $str = ' <packagedElement xmi:type="uml:Artifact"'. ' xmi:id="'.$id.'"'. ' name="'.$name.'" '. ' stereotype="'.self::getUID('stereotype_'.self::PHP_FILE).'" '. self::DEFAULT_CLASSIFIER_ATT.' >';
foreach ($mf as $class) { if ($class instanceof PHP_UML_Metamodel_Classifier) { $id_supplier = $class->id; $str .= self::getManifestation($id, $id_supplier, 'source'); } }
$str .= '</packagedElement>'; return $str; } public function getComponentOpen(PHP_UML_Metamodel_Package $package, array $provided, array $required) { $str = ' <packagedElement xmi:type="uml:Component"'. ' xmi:id="'.$package->id.'"'. ' name="'.$package->name.'" '. self::DEFAULT_CLASSIFIER_ATT.' >';
foreach ($provided as $c) { switch (get_class($c)) { case 'PHP_UML_Metamodel_Interface': case 'PHP_UML_Metamodel_Class': $id = self::getUID('CV_provided_'.$c->name); $id_provided = $c->id; $str .= '<provided xmi:id="'.$id.'" xmi:idref="'.$id_provided. '" name="'.$c->name.'"/>'; } } foreach ($required as $c) { $id = self::getUID('CV_required_'.$c->name); $id_provided = $c->id; $str .= '<required xmi:id="'.$id.'" xmi:idref="'.$id_provided.'" name="'.$c->name.'"/>'; } return $str; }
public function getComponentClose() { return '</packagedElement>'; }
/** * Formates a Profile adapted to PHP_UML. * * TODO. Experimental. * * @return string XMI Code */ public function getProfile() { return file_get_contents('../Metamodel/phpdoc.profile.xmi'). '<profileApplication xmi:type="uml:ProfileApplication" xmi:id="'.self::getUID().'">'. '<appliedProfile xmi:idref="PHP_UML_phpdoc_1"/>'. '</profileApplication>'; }
public function getComment(PHP_UML_Metamodel_Stereotype $s, $annotatedElement='') { $tag = PHP_UML_Metamodel_Helper::getStereotypeTag($s, 'description'); if(!is_null($tag)) return '<ownedComment xmi:type="uml:Comment" xmi:id="'.self::getUID().'" annotatedElement="'.$annotatedElement. '"><body>'.htmlspecialchars($tag->value).'</body></ownedComment>'; else return ''; }
public function getStereotypes() { return ''; } /** * Gets all the elements contained in a stereotype * Note: the property "documentation" is not discarded (we will have * it as an "ownedComent" tag, instead; see getComment()) * * @param PHP_UML_Metamodel_Stereotype $s Stereotype * * @return string */ public function getStereotypeInstance(PHP_UML_Metamodel_Stereotype $s) { $str = ''; foreach ($s->ownedAttribute as $tag) { if($tag->value!='' && $tag->name!='description') $str .= $this->getMetadata($tag); }
if ($str!='') return '<'.$s->profile.':'.$s->name. ' base_Element="'.$s->element->id.'">'. $str.'</'.$s->profile.':'.$s->name.'>'; else return ''; } public function getMetadata(PHP_UML_Metamodel_Tag $tag) { return '<'.$tag->name.'>'.htmlspecialchars($tag->value).'</'.$tag->name.'>'; } /** * Generates a manifestation element (= the link between a class and the * artifact where the class is defined) * * @param string $client Name of the client * @param string $supplier Name of the supplier * @param string $name Name of the relation * * @return string XMI code */ public function getManifestation($client, $supplier, $name) { return '<manifestation xmi:type="uml:Manifestation" '. 'xmi:id="'.self::getUID().'" '. 'client="'.$client.'" supplier="'.$supplier.'" '. 'utilizedElement="'.$supplier.'" name="'.$name.'"/>'; } } ?>
|