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

org.apache.cayenne.lifecycle.relationship.ObjectIdBatchFault Maven / Gradle / Ivy

The newest version!
/*****************************************************************
 *   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
 *
 *    https://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.cayenne.lifecycle.relationship;

import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.cayenne.Cayenne;
import org.apache.cayenne.ObjectContext;
import org.apache.cayenne.ObjectId;
import org.apache.cayenne.Persistent;
import org.apache.cayenne.exp.Expression;
import org.apache.cayenne.exp.ExpressionFactory;
import org.apache.cayenne.lifecycle.id.EntityIdCoder;
import org.apache.cayenne.map.EntityResolver;
import org.apache.cayenne.map.ObjEntity;
import org.apache.cayenne.query.ObjectIdQuery;
import org.apache.cayenne.query.ObjectSelect;

/**
 * Provides lazy faulting functionality for a map of objects identified by
 * String ObjectId.
 * 
 * @since 3.1
 */
class ObjectIdBatchFault {

	private ObjectContext context;
	private List sources;
	private volatile Map resolved;

	ObjectIdBatchFault(ObjectContext context, List sources) {
		this.context = context;
		this.sources = sources;
	}

	Map getObjects() {

		if (resolved == null) {

			synchronized (this) {

				if (resolved == null) {
					resolved = fetchObjects();
				}
			}
		}

		return resolved;
	}

	private Map fetchObjects() {

		if (sources == null) {
			return Collections.emptyMap();
		}

		EntityResolver resolver = context.getEntityResolver();

		// simple case of one query, handle it separately for performance
		// reasons
		if (sources.size() == 1) {

			String uuid = sources.get(0).getId();
			String entityName = EntityIdCoder.getEntityName(uuid);

			ObjEntity entity = resolver.getObjEntity(entityName);
			ObjectId id = new EntityIdCoder(entity).toObjectId(uuid);

			Object object = Cayenne.objectForQuery(context, new ObjectIdQuery(id));
			if (object == null) {
				return Collections.emptyMap();
			} else {
				return Collections.singletonMap(uuid, object);
			}
		}

		Map> queriesByEntity = new HashMap<>();
		Map codersByEntity = new HashMap<>();

		for (ObjectIdBatchSourceItem source : sources) {

			String uuid = source.getId();
			String entityName = EntityIdCoder.getEntityName(uuid);
			EntityIdCoder coder = codersByEntity.get(entityName);
			ObjectSelect query;

			if (coder == null) {
				coder = new EntityIdCoder(resolver.getObjEntity(entityName));
				codersByEntity.put(entityName, coder);

				query = ObjectSelect.query(Persistent.class, entityName);
				queriesByEntity.put(entityName, query);
			} else {
				query = queriesByEntity.get(entityName);
			}

			ObjectId id = coder.toObjectId(uuid);
			Expression idExp = ExpressionFactory.matchAllDbExp(id.getIdSnapshot(), Expression.EQUAL_TO);
			query.or(idExp);
		}

		int capacity = (int) Math.ceil(sources.size() / 0.75d);
		Map results = new HashMap<>(capacity);

		for (ObjectSelect query : queriesByEntity.values()) {
			EntityIdCoder coder = codersByEntity.get(query.getEntityName());
			List objects = query.select(context);
			for (Persistent object : objects) {
				String uuid = coder.toStringId(object.getObjectId());
				results.put(uuid, object);
			}
		}

		return results;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy