/**
* 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.
*/
package org.apache.camel.component.mongodb;
import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;
import com.mongodb.MongoClient;
import com.mongodb.client.MongoCollection;
import org.bson.types.BSONTimestamp;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class MongoDbTailTrackingManager {
private static final Logger LOG = LoggerFactory.getLogger(MongoDbTailTrackingManager.class);
public Object lastVal;
private final MongoClient connection;
private final MongoDbTailTrackingConfig config;
private MongoCollection<BasicDBObject> dbCol;
private BasicDBObject trackingObj;
public MongoDbTailTrackingManager(MongoClient connection, MongoDbTailTrackingConfig config) {
this.connection = connection;
this.config = config;
}
public void initialize() throws Exception {
if (!config.persistent) {
return;
}
dbCol = connection.getDatabase(config.db).getCollection(config.collection, BasicDBObject.class);
BasicDBObject filter = new BasicDBObject("persistentId", config.persistentId);
trackingObj = dbCol.find(filter).first();
if (trackingObj == null) {
dbCol.insertOne(filter);
trackingObj = dbCol.find(filter).first();
}
// keep only the _id, the rest is useless and causes more overhead during update
trackingObj = new BasicDBObject("_id", trackingObj.get("_id"));
}
public synchronized void persistToStore() {
if (!config.persistent || lastVal == null) {
return;
}
if (LOG.isDebugEnabled()) {
LOG.debug("Persisting lastVal={} to store, collection: {}", lastVal, config.collection);
}
BasicDBObject updateObj = new BasicDBObject().append("$set", new BasicDBObject(config.field, lastVal));
dbCol.updateOne(trackingObj, updateObj);
trackingObj = dbCol.find().first();
}
public synchronized Object recoverFromStore() {
if (!config.persistent) {
return null;
}
lastVal = dbCol.find(trackingObj).first().get(config.field);
if (LOG.isDebugEnabled()) {
LOG.debug("Recovered lastVal={} from store, collection: {}", lastVal, config.collection);
}
return lastVal;
}
public void setLastVal(DBObject o) {
if (config.increasingField == null) {
return;
}
lastVal = config.mongoDBTailTrackingStrategy.extractLastVal(o, config.increasingField);
}
public String getIncreasingFieldName() {
return config.increasingField;
}
}