All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.schoellerfamily.gedbrowser.api.crud.HeadCrud Maven / Gradle / Ivy

There is a newer version: 1.3.0-RC2
Show newest version
package org.schoellerfamily.gedbrowser.api.crud;

import java.util.ArrayList;
import java.util.List;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.schoellerfamily.gedbrowser.api.datamodel.ApiHead;
import org.schoellerfamily.gedbrowser.datamodel.Head;
import org.schoellerfamily.gedbrowser.persistence.domain.HeadDocument;
import org.schoellerfamily.gedbrowser.persistence.mongo.gedconvert.GedObjectToGedDocumentMongoConverter;
import org.schoellerfamily.gedbrowser.persistence.mongo.loader.GedDocumentFileLoader;
import org.schoellerfamily.gedbrowser.persistence.mongo.repository.RepositoryManagerMongo;
import org.schoellerfamily.gedbrowser.persistence.repository.FindableDocument;

/**
 * @author Dick Schoeller
 */
public class HeadCrud
    extends OperationsEnabler
    implements CrudOperations,
        ObjectCrud {
    /** Logger. */
    private final transient Log logger = LogFactory.getLog(getClass());

    /**
     * @param loader the file loader that we will use
     * @param toDocConverter the document converter
     * @param repositoryManager the repository manager
     */
    public HeadCrud(final GedDocumentFileLoader loader,
            final GedObjectToGedDocumentMongoConverter toDocConverter,
            final RepositoryManagerMongo repositoryManager) {
        super(loader, toDocConverter, repositoryManager);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public FindableDocument getRepository() {
        return getRepositoryManager().getHeadDocumentRepository();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Class getGedClass() {
        return Head.class;
    }

    /**
     * @param db the name of the db to access
     * @param head a head object to create
     * @return the head
     * @throws UnsupportedOperationException always
     */
    public ApiHead createOne(final String db, final ApiHead head) {
        throw new UnsupportedOperationException(
                "Can't create a head through the crud operations");
    }

    /**
     * @param db the name of the db to access
     * @return the one head
     */
    public ApiHead readOne(final String db) {
        logger.info("Entering head, db: " + db);
        return (ApiHead) getD2dm().convert(read(db)).get(0);
    }

    /**
     * @param db the name of the db to access
     * @param id the id is not used here (just filling an API)
     * @return the one head
     */
    @Override
    public ApiHead readOne(final String db, final String id) {
        return readOne(db);
    }

    /**
     * @param db the name of the db to access
     * @return the list of heads
     */
    @Override
    public List readAll(final String db) {
        logger.info("Entering all head, db: " + db);
        final List list = new ArrayList<>();
        list.add((ApiHead) getD2dm().convert(read(db)).get(0));
        return list;
    }

    /**
     * @param db the name of the db to access
     * @param head the data for the head
     * @return the head as created
     */
    public ApiHead updateHead(final String db, final ApiHead head) {
        logger.info("Entering update head in db: " + db);
        return update(readRoot(db), head);
    }

    /**
     * @param db the name of the db to access
     * @param id the id of the head (ignored)
     * @param head the data for the head
     * @return the head as created
     */
    @Override
    public ApiHead updateOne(final String db, final String id,
            final ApiHead head) {
        logger.info("Entering update head in db: " + db);
        return updateHead(db, head);
    }

    /**
     * @param db the name of the db to access
     * @param id the id of a head object to delete
     * @return the head
     * @throws UnsupportedOperationException always
     */
    public ApiHead deleteOne(final String db, final String id) {
        throw new UnsupportedOperationException(
                "Can't delete a head through the crud operations");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy