com.bigdata.rdf.internal.constraints.StrAfterBOp Maven / Gradle / Ivy
/*
Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved.
Contact:
SYSTAP, LLC DBA Blazegraph
2501 Calvert ST NW #106
Washington, DC 20008
[email protected]
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.bigdata.rdf.internal.constraints;
import java.util.Map;
import org.openrdf.model.Literal;
import org.openrdf.model.URI;
import com.bigdata.bop.BOp;
import com.bigdata.bop.IBindingSet;
import com.bigdata.bop.IValueExpression;
import com.bigdata.bop.NV;
import com.bigdata.rdf.error.SparqlTypeErrorException;
import com.bigdata.rdf.internal.IV;
import com.bigdata.rdf.internal.XSD;
import com.bigdata.rdf.model.BigdataLiteral;
import com.bigdata.rdf.sparql.ast.GlobalAnnotations;
/**
* @see http://www.w3.org/2009/sparql/docs/query-1.1/rq25.xml#func-strafter
*/
public class StrAfterBOp extends IVValueExpression implements INeedsMaterialization {
/**
*
*/
private static final long serialVersionUID = -2786852247821202390L;
/**
* @see http://www.w3.org/2009/sparql/docs/query-1.1/rq25.xml#func-strafter
*/
@SuppressWarnings("rawtypes")
public StrAfterBOp(//
final IValueExpression extends IV> arg1,
final IValueExpression extends IV> arg2,
final GlobalAnnotations globals) {
this(new BOp[] { arg1, arg2 }, anns(globals));
}
public StrAfterBOp(BOp[] args, Map anns) {
super(args, anns);
if (args.length < 2 || args[0] == null || args[1] == null)
throw new IllegalArgumentException();
}
public StrAfterBOp(StrAfterBOp op) {
super(op);
}
@Override
public Requirement getRequirement() {
return Requirement.SOMETIMES;
}
@Override
@SuppressWarnings("rawtypes")
public IV get(final IBindingSet bs) throws SparqlTypeErrorException {
final Literal arg1 = getAndCheckLiteralValue(0, bs);
final Literal arg2 = getAndCheckLiteralValue(1, bs);
checkCompatibility(arg1, arg2);
final String s2 = arg2.getLabel();
if (s2.isEmpty()) {
return ret(arg1, arg1.getLabel(), bs);
}
final String s1 = arg1.getLabel();
final int i = s1.indexOf(s2);
// didn't find it
if (i < 0) {
return ret(arg1, null, bs);
}
// found it, but it's at the end
if (i + s2.length() == s1.length()) {
return ret(arg1, "", bs);
}
final String val = s1.substring(i + s2.length());
return ret(arg1, val, bs);
}
private IV ret(final Literal arg1, final String label, final IBindingSet bs) {
if (label == null) {
final BigdataLiteral str = getValueFactory().createLiteral("");
return super.asIV(str, bs);
}
final String lang = arg1.getLanguage();
if (lang != null) {
final BigdataLiteral str = getValueFactory().createLiteral(label, lang);
return super.asIV(str, bs);
}
final URI dt = arg1.getDatatype();
if (dt != null) {
final BigdataLiteral str = getValueFactory().createLiteral(label, dt);
return super.asIV(str, bs);
}
final BigdataLiteral str = getValueFactory().createLiteral(label);
return super.asIV(str, bs);
}
private void checkCompatibility(final Literal arg1, final Literal arg2)
throws SparqlTypeErrorException {
checkLanguage(arg1, arg2);
checkDatatype(arg1, arg2);
}
private void checkLanguage(final Literal arg1, final Literal arg2)
throws SparqlTypeErrorException {
final String lang1 = arg1.getLanguage();
final String lang2 = arg2.getLanguage();
if (lang1 == null && lang2 == null)
return;
if (lang1 != null && lang2 == null)
return;
if (lang1 == null && lang2 != null)
throw new SparqlTypeErrorException();
// both non-null, must be the same
if (!lang1.equals(lang2))
throw new SparqlTypeErrorException();
}
private void checkDatatype(final Literal arg1, final Literal arg2)
throws SparqlTypeErrorException {
final URI dt1 = arg1.getDatatype();
final URI dt2 = arg2.getDatatype();
if (dt1 != null && !dt1.stringValue().equals(XSD.STRING.stringValue()))
throw new SparqlTypeErrorException();
if (dt2 != null && !dt2.stringValue().equals(XSD.STRING.stringValue()))
throw new SparqlTypeErrorException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy