blob: c73309af21f8429ca34790d54b1e7b246f2d4d2e [file] [log] [blame]
package org.apache.rya.indexing.mongodb.temporal;
/*
* 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 java.util.regex.Matcher;
import org.apache.rya.api.domain.RyaStatement;
import org.apache.rya.indexing.TemporalInstantRfc3339;
import org.apache.rya.indexing.TemporalInterval;
import org.apache.rya.indexing.mongodb.IndexingMongoDBStorageStrategy;
import org.bson.Document;
import com.mongodb.client.MongoCollection;
/**
* Defines how time based intervals/instants are stored in MongoDB.
* <p>
* Time can be stored as the following:
* <ul>
* <li><b>instant</b> {[statement], instant: TIME}</li>
* <li><b>interval</b> {[statement], start: TIME, end: TIME}</li>
* </ul>
* @see {@link TemporalInstantRfc3339} for how the dates are formatted.
*/
public class TemporalMongoDBStorageStrategy extends IndexingMongoDBStorageStrategy {
public static final String INTERVAL_START = "start";
public static final String INTERVAL_END = "end";
public static final String INSTANT = "instant";
@Override
public void createIndices(final MongoCollection<Document> coll){
coll.createIndex(new Document(INTERVAL_START, 1));
coll.createIndex(new Document(INTERVAL_END, 1));
coll.createIndex(new Document(INSTANT, 1));
}
@Override
public Document serialize(final RyaStatement ryaStatement) {
final Document base = super.serialize(ryaStatement);
final Document time = getTimeValue(ryaStatement.getObject().getData());
time.forEach((k, v) -> base.put(k, v));
return base;
}
public Document getTimeValue(final String timeData) {
final Matcher match = TemporalInstantRfc3339.PATTERN.matcher(timeData);
final Document doc = new Document();
if(match.find()) {
final TemporalInterval date = TemporalInstantRfc3339.parseInterval(timeData);
doc.append(INTERVAL_START, date.getHasBeginning().getAsDateTime().toDate());
doc.append(INTERVAL_END, date.getHasEnd().getAsDateTime().toDate());
} else {
doc.append(INSTANT, TemporalInstantRfc3339.FORMATTER.parseDateTime(timeData).toDate());
}
return doc;
}
}