Package org.apache.isis.objectstore.nosql.db.mongo

Source Code of org.apache.isis.objectstore.nosql.db.mongo.MongoClientCommandContext

/*
*  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.isis.objectstore.nosql.db.mongo;

import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.DBObject;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import org.apache.isis.core.metamodel.adapter.oid.Oid;
import org.apache.isis.core.metamodel.adapter.version.ConcurrencyException;
import org.apache.isis.core.metamodel.spec.ObjectSpecId;
import org.apache.isis.objectstore.nosql.NoSqlCommandContext;
import org.apache.isis.objectstore.nosql.db.StateWriter;


public class MongoClientCommandContext implements NoSqlCommandContext {

    private static final Logger LOG = LoggerFactory.getLogger(MongoClientCommandContext.class);
    private final DB db;

    public MongoClientCommandContext(DB db) {
        this.db = db;
    }

    @Override
    public void start() {}

    @Override
    public void end() {}

    @Override
    public StateWriter createStateWriter(final ObjectSpecId objectSpecId) {
        return new MongoStateWriter(db, objectSpecId);
    }

    @Override
    public void delete(final ObjectSpecId objectSpecId, final String mongoId, final String version, final Oid oid) {
        final DBCollection instances = db.getCollection(objectSpecId.asString());
        final DBObject object = instances.findOne(mongoId);
        if (!object.get(PropertyNames.VERSION).equals(version)) {
            throw new ConcurrencyException("Could not delete object of different version", oid);
        }
        instances.remove(object);
        LOG.info("removed " + oid);
    }

    @Override
    public void insert(final StateWriter writer) {
        ((MongoStateWriter) writer).flush();
    }

    @Override
    public void update(final StateWriter writer) {
        ((MongoStateWriter) writer).flush();
    }

}
TOP

Related Classes of org.apache.isis.objectstore.nosql.db.mongo.MongoClientCommandContext

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.