Re: turtle conformance clause / strict-vs-loose parsing

Yes, we've actually had this issue in practice (lots of web URLs are not legal URIs), you want to find that out as early as possible that you have a problem. For us that's when PUTing Turtle to a RDF store.

- Steve

On 2012-05-18, at 11:20, Richard Cyganiak wrote:

> Sandro,
> 
> -1 to a “loose Turtle”.
> 
> If a conforming Turtle parser were allowed to accept a document containing <http://example.org/a|b>, then what next? This is not a valid IRI. So it is not allowed in an RDF graph. A Turtle parser is rarely a stand-alone system — it's a component in a larger system. Once the Turtle parser tries passing on the pseudo-IRI to the next component, then a number of things can happen:
> 
> The next component might reject it outright.
> 
> Or the next component accepts it and stores the pseudo-IRI. Then the user can do their thing. Then when the user tries to save their work, the serializer checks IRIs and rejects it, taking down the app with an error message. (This is Jena's default behaviour, or at least was the last time I checked.)
> 
> Or maybe the entire system works, except that now we have a situation where certain RDF “graphs” can be loaded and saved in Turtle but not in other syntaxes. This will cause major headaches for users, who will end up messing around with format converters in order to get broken data into a format that doesn't complain about the data being broken.
> 
> Or maybe the system accepts the IRI and puts it into its store, but then you can't delete it from the store any more because the SPARQL Update part of the system is stricter and rejects DELETE DATA commands containing broken IRIs.
> 
> Given the complexity of RDF-bases systems, and the many interacting components and specifications involved, this kind of error handling cannot be introduced for a single syntax. It has to be done centrally so that all involved components and specifications can behave in a consistent way. Defining algorithms for error recovery for broken RDF data may well be a good idea, but I don't think this should be part of an 1.1 update to RDF, and I don't think we are chartered to do it.
> 
> Best,
> Richard
> 
> 
> On 17 May 2012, at 21:35, Sandro Hawke wrote:
> 
>> What should/may/must a Turtle parser do with a turtle document like
>> this:
>> 
>> <http://example.org/a> <http://example.org/a> <http://example.org/a|b>.
>> 
>> By the grammar, this is not a Turtle document, because of the '|'
>> character in a URI.   I don't think, however, that people writing Turtle
>> parsers will want to enforce this.  If they come across some Turtle
>> document that's got a URI like this -- they can still parse it just
>> fine, so they probably will.
>> 
>> The language tokens like IRIREF and PNAME are defined in the grammar
>> with these vast regexps (if you macro-expand what's there, now), but
>> actually much simpler ones will produce the same result in practice --
>> they'll just tolerate some files that are not, strictly-speaking,
>> Turtle.  (I'm pretty sure -- maybe there are some corner cases with
>> missing whitespace where these regexps will give you a different result
>> than something more like any-character-up-until-a-delimiter.
>> 
>> I'm not sure anything has to change, but I think at very least the
>> conformance clause should be clear about whether it's okay to accept a
>> turtle document like my example above.
>> 
>> It might be nice to have "strict" and "loose" parsers, especially if we
>> can define loose parsers in a way that makes them simpler to implement,
>> run faster, and never parse anything differently from a strict parser.
>> 
>> Of course, then I'm not quite sure the point of the strict parsers.
>> 
>> -- Sandro
>> 
>> 
>> 
>> 
>> 
>> 
> 
> 

-- 
Steve Harris, CTO
Garlik, a part of Experian
1-3 Halford Road, Richmond, TW10 6AW, UK
+44 20 8439 8203  http://www.garlik.com/
Registered in England and Wales 653331 VAT # 887 1335 93
Registered office: Landmark House, Experian Way, Nottingham, Notts, NG80 1ZZ

Received on Friday, 18 May 2012 11:22:48 UTC