blob: 5398fc0b4d5a65b1df6eaff67ae29f90be53c79f [file] [log] [blame]
package org.apache.rya.api.query.strategy.wholerow;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import static org.apache.rya.api.RdfCloudTripleStoreConstants.LAST_BYTES;
import java.io.IOException;
import java.util.Map;
import org.apache.rya.api.RdfCloudTripleStoreConfiguration;
import org.apache.rya.api.RdfCloudTripleStoreConstants.TABLE_LAYOUT;
import org.apache.rya.api.RdfCloudTripleStoreUtils;
import org.apache.rya.api.domain.RyaType;
import org.apache.rya.api.domain.RyaURI;
import org.apache.rya.api.query.strategy.AbstractTriplePatternStrategy;
import org.apache.rya.api.query.strategy.ByteRange;
public class NullRowTriplePatternStrategy extends AbstractTriplePatternStrategy {
@Override
public TABLE_LAYOUT getLayout() {
return TABLE_LAYOUT.SPO;
}
@Override
public Map.Entry<TABLE_LAYOUT, ByteRange> defineRange(RyaURI subject, RyaURI predicate, RyaType object,
RyaURI context, RdfCloudTripleStoreConfiguration conf) throws IOException {
byte[] start = new byte[]{ /* empty array */ }; // Scan from the beginning of the Accumulo Table
byte[] stop = LAST_BYTES; // Scan to the end, up through things beginning with 0xff.
return new RdfCloudTripleStoreUtils.CustomEntry<>(TABLE_LAYOUT.SPO, new ByteRange(start, stop));
}
@Override
public boolean handles(RyaURI subject, RyaURI predicate, RyaType object, RyaURI context) {
return subject == null && predicate == null && object == null;
}
}