Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 12
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
XmlCompilationDataService
0.00% covered (danger)
0.00%
0 / 12
0.00% covered (danger)
0.00%
0 / 3
12
0.00% covered (danger)
0.00%
0 / 1
 writeCompilationData
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
2
 readCompilationData
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 getOutputFileType
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2019 (original work) Open Assessment Technologies SA;
19 */
20
21namespace oat\taoQtiTest\models;
22
23use qtism\data\QtiComponent;
24use qtism\data\storage\xml\XmlCompactDocument;
25
26/**
27 * XML Serialization Compilation Data Service.
28 *
29 * This Compilation Data Service implementation aims at compiling
30 * Delivery data as XML serialized data (QTI native format).
31 */
32class XmlCompilationDataService extends CompilationDataService
33{
34    public const OUTPUT_FILE_TYPE = 'xml';
35
36    public function writeCompilationData(
37        \tao_models_classes_service_StorageDirectory $compilationDirectory,
38        $path,
39        QtiComponent $object
40    ) {
41        $path .= '.' . self::OUTPUT_FILE_TYPE;
42        $compactDoc = new XmlCompactDocument();
43        $compactDoc->setDocumentComponent($object);
44
45        $compilationDirectory->write(
46            $path,
47            $compactDoc->saveToString()
48        );
49    }
50
51    public function readCompilationData(
52        \tao_models_classes_service_StorageDirectory $compilationDirectory,
53        $path,
54        $cacheInfo = ''
55    ) {
56        $path .= '.' . self::OUTPUT_FILE_TYPE;
57        $compactDoc = new XmlCompactDocument();
58        $compactDoc->loadFromString($compilationDirectory->read($path));
59
60        return $compactDoc->getDocumentComponent();
61    }
62
63    /**
64     * @return string
65     */
66    public function getOutputFileType()
67    {
68        return self::OUTPUT_FILE_TYPE;
69    }
70}