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

com.threewks.thundr.gae.objectify.repository.SearchImpl Maven / Gradle / Ivy

The newest version!
/*
 * This file is a component of thundr, a software library from 3wks.
 * Read more: http://3wks.github.io/thundr/
 * Copyright (C) 2015 3wks, 
 *
 * 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 com.threewks.thundr.gae.objectify.repository;

import java.util.Collection;
import java.util.List;

import com.googlecode.objectify.Key;
import com.threewks.thundr.search.Is;
import com.threewks.thundr.search.OrderComponent;
import com.threewks.thundr.search.QueryComponent;
import com.threewks.thundr.search.Result;
import com.threewks.thundr.search.Search;
import com.threewks.thundr.search.gae.SearchExecutor;

public class SearchImpl implements Search {
	protected com.threewks.thundr.search.Search> searchRequest;
	protected AbstractRepository repository;

	protected SearchImpl(AbstractRepository repository, com.threewks.thundr.search.Search> searchRequest) {
		this.searchRequest = searchRequest;
		this.repository = repository;
	}

	public com.threewks.thundr.search.Search> getSearchRequest() {
		return searchRequest;
	}

	@Override
	public Search query(CharSequence query) {
		return new SearchImpl<>(repository, searchRequest.query(query));
	}

	@Override
	public  Search field(String field, Is is, V value) {
		return new SearchImpl(repository, searchRequest.field(field, is, value));
	}

	@Override
	public  Search field(String field, Collection values) {
		return new SearchImpl(repository, searchRequest.field(field, values));
	}

	@Override
	public Search limit(Integer limit) {
		return new SearchImpl<>(repository, searchRequest.limit(limit));
	}

	@Override
	public Search offset(Integer offset) {
		return new SearchImpl<>(repository, searchRequest.offset(offset));
	}

	@Override
	public Search accuracy(Integer accuracy) {
		return new SearchImpl<>(repository, searchRequest.accuracy(accuracy));
	}

	@Override
	public Search order(String field, boolean ascending) {
		return new SearchImpl<>(repository, searchRequest.order(field, ascending));
	}

	@Override
	public Result run() {
		SearchExecutor> searchExecutor = repository.getSearchExecutor();
		return searchExecutor.createSearchResult(this);
	}

	@Override
	public List query() {
		return searchRequest.query();
	}

	@Override
	public List order() {
		return searchRequest.order();
	}

	@Override
	public Integer limit() {
		return searchRequest.limit();
	}

	@Override
	public Integer offset() {
		return searchRequest.offset();
	}

	@Override
	public Integer accuracy() {
		return searchRequest.accuracy();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy