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

org.dizitart.no2.objects.ObjectCursor Maven / Gradle / Ivy

There is a newer version: 4.3.0
Show newest version
/*
 *
 * Copyright 2017-2018 Nitrite author or authors.
 *
 * Licensed 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.dizitart.no2.objects;

import org.dizitart.no2.*;
import org.dizitart.no2.exceptions.InvalidOperationException;
import org.dizitart.no2.mapper.NitriteMapper;
import org.dizitart.no2.util.Iterables;

import java.util.Iterator;
import java.util.List;
import java.util.Set;

import static org.dizitart.no2.exceptions.ErrorCodes.VE_PROJECT_NULL_PROJECTION;
import static org.dizitart.no2.exceptions.ErrorMessage.OBJ_REMOVE_ON_OBJECT_ITERATOR_NOT_SUPPORTED;
import static org.dizitart.no2.exceptions.ErrorMessage.errorMessage;
import static org.dizitart.no2.util.DocumentUtils.emptyDocument;
import static org.dizitart.no2.util.ValidationUtils.notNull;

/**
 * @author Anindya Chatterjee
 * */
class ObjectCursor implements Cursor {
    private org.dizitart.no2.Cursor cursor;
    private NitriteMapper nitriteMapper;
    private Class type;

    ObjectCursor(NitriteMapper nitriteMapper, org.dizitart.no2.Cursor cursor, Class type) {
        this.nitriteMapper = nitriteMapper;
        this.cursor = cursor;
        this.type = type;
    }

    @Override
    @SuppressWarnings("unchecked")
    public 

RecordIterable

project(Class

projectionType) { notNull(projectionType, errorMessage("projection can not be null", VE_PROJECT_NULL_PROJECTION)); Document dummyDoc = emptyDocument(nitriteMapper, projectionType); return new ProjectedObjectIterable<>(nitriteMapper, cursor.project(dummyDoc), projectionType); } @Override public RecordIterable join(Cursor foreignCursor, Lookup lookup, Class type) { ObjectCursor foreignObjectCursor = (ObjectCursor) foreignCursor; return new JoinedObjectIterable<>(nitriteMapper, cursor.join(foreignObjectCursor.cursor, lookup), type); } @Override public Set idSet() { return cursor.idSet(); } @Override public boolean hasMore() { return cursor.hasMore(); } @Override public int size() { return cursor.size(); } @Override public int totalCount() { return cursor.totalCount(); } @Override public T firstOrDefault() { return Iterables.firstOrDefault(this); } @Override public List toList() { return Iterables.toList(this); } @Override public Iterator iterator() { return new ObjectCursorIterator(cursor.iterator()); } private class ObjectCursorIterator implements Iterator { private Iterator documentIterator; ObjectCursorIterator(Iterator documentIterator) { this.documentIterator = documentIterator; } @Override public boolean hasNext() { return documentIterator.hasNext(); } @Override public T next() { Document document = documentIterator.next(); if (document != null) { return nitriteMapper.asObject(document, type); } return null; } @Override public void remove() { throw new InvalidOperationException(OBJ_REMOVE_ON_OBJECT_ITERATOR_NOT_SUPPORTED); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy