blob: d37f117b2d4332f2422673292768fce6a6495391 [file] [log] [blame]
/*
* 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.usergrid.corepersistence.index;
import org.apache.usergrid.utils.StringUtils;
/**
* An interface for re-indexing all entities in an application
*/
public interface ReIndexService {
/**
* Perform an index rebuild
*
* @param reIndexRequestBuilder The builder to build the request
*/
ReIndexStatus rebuildIndex( final ReIndexRequestBuilder reIndexRequestBuilder );
/**
* Generate a build for the index
*/
ReIndexRequestBuilder getBuilder();
/**
* Get the status of a job
* @param jobId The jobId returned during the rebuild index
* @return
*/
ReIndexStatus getStatus( final String jobId );
/**
* Get the status of a collection job
* @param collectionName The collectionName for the rebuild index
* @return
*/
ReIndexStatus getStatusForCollection( final String appIdString, final String collectionName );
/**
* The response when requesting a re-index operation
*/
public class ReIndexStatus {
final String jobId;
final Status status;
final long numberProcessed;
final long lastUpdated;
final String collectionName;
public ReIndexStatus( final String jobId, final Status status, final long numberProcessed,
final long lastUpdated, final String collectionName ) {
if(StringUtils.isNotEmpty(jobId)){
this.jobId = jobId;
}else {
this.jobId = "";
}
this.status = status;
this.numberProcessed = numberProcessed;
this.lastUpdated = lastUpdated;
if(StringUtils.isNotEmpty(collectionName)){
this.collectionName = collectionName;
}else {
this.collectionName = "";
}
}
/**
* Get the jobId used to resume this operation
*/
public String getJobId() {
return jobId;
}
/**
* Get the jobId used to resume this operation
*/
public String getCollectionName() {
return collectionName;
}
/**
* Get the last updated time, as a long
* @return
*/
public long getLastUpdated() {
return lastUpdated;
}
/**
* Get the number of records processed
* @return
*/
public long getNumberProcessed() {
return numberProcessed;
}
/**
* Get the status
* @return
*/
public Status getStatus() {
return status;
}
}
enum Status{
STARTED, INPROGRESS, COMPLETE, UNKNOWN;
}
}