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
|
<?php
namespace EasyRdf\Serialiser;
/**
* EasyRdf
*
* LICENSE
*
* Copyright (c) 2009-2020 Nicholas J Humfrey. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. The name of the author 'Nicholas J Humfrey" may be used to endorse or
* promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package EasyRdf
* @copyright Copyright (c) 2009-2020 Nicholas J Humfrey
* @license https://www.opensource.org/licenses/bsd-license.php
*/
use EasyRdf\Container;
use EasyRdf\Exception;
use EasyRdf\Graph;
use EasyRdf\Literal;
use EasyRdf\RdfNamespace;
use EasyRdf\Resource;
use EasyRdf\Serialiser;
/**
* Class to serialise an EasyRdf\Graph to RDF/XML
* with no external dependencies.
*
* @package EasyRdf
* @copyright Copyright (c) 2009-2020 Nicholas J Humfrey
* @license https://www.opensource.org/licenses/bsd-license.php
*/
class RdfXml extends Serialiser
{
private $outputtedResources = array();
/** A constant for the RDF Type property URI */
const RDF_XML_LITERAL = 'http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral';
/**
* Protected method to serialise an object node into an XML object
* @ignore
*/
protected function rdfxmlObject($property, $obj, $depth)
{
$indent = str_repeat(' ', $depth);
if ($property[0] === ':') {
$property = substr($property, 1);
}
if (is_object($obj) and $obj instanceof Resource) {
$pcount = count($obj->propertyUris());
$rpcount = $this->reversePropertyCount($obj);
$alreadyOutput = isset($this->outputtedResources[$obj->getUri()]);
$tag = "{$indent}<{$property}";
if ($obj->isBNode()) {
if ($alreadyOutput or $rpcount > 1 or $pcount == 0) {
$tag .= " rdf:nodeID=\"".htmlspecialchars($obj->getBNodeId()).'"';
}
} else {
if ($alreadyOutput or $rpcount != 1 or $pcount == 0) {
$tag .= " rdf:resource=\"".htmlspecialchars($obj->getURI()).'"';
}
}
if ($alreadyOutput == false and $rpcount == 1 and $pcount > 0) {
$xml = $this->rdfxmlResource($obj, false, $depth+1);
if ($xml) {
return "$tag>$xml$indent</$property>\n\n";
} else {
return '';
}
} else {
return $tag."/>\n";
}
} elseif (is_object($obj) and $obj instanceof Literal) {
$atrributes = "";
$datatype = $obj->getDatatypeUri();
if ($datatype) {
if ($datatype == self::RDF_XML_LITERAL) {
$atrributes .= " rdf:parseType=\"Literal\"";
$value = strval($obj);
} else {
$datatype = htmlspecialchars($datatype);
$atrributes .= " rdf:datatype=\"$datatype\"";
}
} elseif ($obj->getLang()) {
$atrributes .= ' xml:lang="'.
htmlspecialchars($obj->getLang()).'"';
}
// Escape the value
if (!isset($value)) {
$value = htmlspecialchars(strval($obj));
}
return "{$indent}<{$property}{$atrributes}>{$value}</{$property}>\n";
} else {
throw new Exception(
"Unable to serialise object to xml: ".getType($obj)
);
}
}
/**
* Protected method to serialise a whole resource and its properties
* @ignore
*/
protected function rdfxmlResource($res, $showNodeId, $depth = 1)
{
// Keep track of the resources we have already serialised
if (isset($this->outputtedResources[$res->getUri()])) {
return '';
} else {
$this->outputtedResources[$res->getUri()] = true;
}
// If the resource has no properties - don't serialise it
$properties = $res->propertyUris();
if (count($properties) == 0) {
return '';
}
$type = $res->type();
if ($type) {
$this->addPrefix($type);
} else {
$type = 'rdf:Description';
}
$indent = str_repeat(' ', $depth);
$xml = "\n$indent<$type";
if ($res->isBNode()) {
if ($showNodeId) {
$xml .= ' rdf:nodeID="'.htmlspecialchars($res->getBNodeId()).'"';
}
} else {
$xml .= ' rdf:about="'.htmlspecialchars($res->getUri()).'"';
}
$xml .= ">\n";
if ($res instanceof Container) {
foreach ($res as $item) {
$xml .= $this->rdfxmlObject('rdf:li', $item, $depth+1);
}
} else {
foreach ($properties as $property) {
$short = RdfNamespace::shorten($property, true);
if ($short) {
$this->addPrefix($short);
$objects = $res->all("<$property>");
if ($short == 'rdf:type' && $type != 'rdf:Description') {
array_shift($objects);
}
foreach ($objects as $object) {
$xml .= $this->rdfxmlObject($short, $object, $depth+1);
}
} else {
throw new Exception(
"It is not possible to serialse the property ".
"'$property' to RDF/XML."
);
}
}
}
$xml .= "$indent</$type>\n";
return $xml;
}
/**
* Method to serialise an EasyRdf\Graph to RDF/XML
*
* @param Graph $graph An EasyRdf\Graph object.
* @param string $format The name of the format to convert to.
* @param array $options
*
* @return string The RDF in the new desired format.
* @throws Exception
*/
public function serialise(Graph $graph, $format, array $options = array())
{
parent::checkSerialiseParams($format);
if ($format != 'rdfxml') {
throw new Exception(
"EasyRdf\\Serialiser\\RdfXml does not support: {$format}"
);
}
// store of namespaces to be appended to the rdf:RDF tag
$this->prefixes = array('rdf' => true);
// store of the resource URIs we have serialised
$this->outputtedResources = array();
$xml = '';
// Serialise URIs first
foreach ($graph->resources() as $resource) {
if (!$resource->isBnode()) {
$xml .= $this->rdfxmlResource($resource, true);
}
}
// Serialise bnodes afterwards
foreach ($graph->resources() as $resource) {
if ($resource->isBnode()) {
$xml .= $this->rdfxmlResource($resource, true);
}
}
// iterate through namepsaces array prefix and output a string.
$namespaceStr = '';
foreach ($this->prefixes as $prefix => $count) {
$url = RdfNamespace::get($prefix);
if (strlen($namespaceStr)) {
$namespaceStr .= "\n ";
}
if (strlen($prefix) === 0) {
$namespaceStr .= ' xmlns="'.htmlspecialchars($url).'"';
} else {
$namespaceStr .= ' xmlns:'.$prefix.'="'.htmlspecialchars($url).'"';
}
}
return "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n".
"<rdf:RDF". $namespaceStr . ">\n" . $xml . "\n</rdf:RDF>\n";
}
}
|