Package org.dlese.dpc.oai.harvester
Class SimpleHarvestMessageHandler
java.lang.Object
org.dlese.dpc.oai.harvester.SimpleHarvestMessageHandler
- All Implemented Interfaces:
Serializable,HarvestMessageHandler
public class SimpleHarvestMessageHandler
extends Object
implements HarvestMessageHandler, Serializable
Outputs harvest status messages to standard output.
- Author:
- John Weatherley
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidcompletedHarvestMessage(int recordCount, int resumptionCount, String baseURL, String set, long startTime, long endTime, String zipFilePathName, String supportedGranularity, String deletedRecordSupport) A final report detailing the result of a successful harvest.voiderrorMessage(String errorMessage) A serios error that occured during the harvest, preventing it from completing.intGets the number of records the Harveser should harvest between sending statusMessage notifications to this HarvestMessageHandler.voidoaiErrorMessage(String oaiError, String errorMessage, String supportedGranularity, String deletedRecordSupport) A message generated by the harvester when an OAI protocol error has occured.voidsetHarvestAttributes(Date from, Date until) Sets the harvest attributes for this harvest.voidstatusMessage(int recordCount, int resumptionCount) A status message indicating the number of records currenlty harvested and the number of resumption tokens issued.voidstatusMessage(String msg) A status message indicating an event that took place during the harvest, such as a request made to the data provider.
-
Constructor Details
-
SimpleHarvestMessageHandler
public SimpleHarvestMessageHandler()
-
-
Method Details
-
statusMessage
A status message indicating an event that took place during the harvest, such as a request made to the data provider.- Specified by:
statusMessagein interfaceHarvestMessageHandler- Parameters:
msg- A harvest status message generated by the harvester.
-
statusMessage
public void statusMessage(int recordCount, int resumptionCount) A status message indicating the number of records currenlty harvested and the number of resumption tokens issued.- Specified by:
statusMessagein interfaceHarvestMessageHandler- Parameters:
recordCount- Number of recrods currently harvested.resumptionCount- Number of resumption tokens currently issued.- See Also:
-
getNumRecordsForStatusNotification
public int getNumRecordsForStatusNotification()Gets the number of records the Harveser should harvest between sending statusMessage notifications to this HarvestMessageHandler.- Specified by:
getNumRecordsForStatusNotificationin interfaceHarvestMessageHandler- Returns:
- The numRecordsForStatusNotification value.
- See Also:
-
oaiErrorMessage
public void oaiErrorMessage(String oaiError, String errorMessage, String supportedGranularity, String deletedRecordSupport) A message generated by the harvester when an OAI protocol error has occured.- Specified by:
oaiErrorMessagein interfaceHarvestMessageHandler- Parameters:
oaiError- The OAI error code, for example "noRecordsMatch".errorMessage- The accompanying message returned by the data provider, if any.supportedGranularity- Supported granularity [days, seconds] or nulldeletedRecordSupport- Deleted record support [no, transient, persistent] or null
-
errorMessage
A serios error that occured during the harvest, preventing it from completing. For example an http 500 error or a parsing error.- Specified by:
errorMessagein interfaceHarvestMessageHandler- Parameters:
errorMessage- Description of the error.
-
setHarvestAttributes
Sets the harvest attributes for this harvest.- Specified by:
setHarvestAttributesin interfaceHarvestMessageHandler- Parameters:
from- The from date or null if none useduntil- The until date or null if none used
-
completedHarvestMessage
public void completedHarvestMessage(int recordCount, int resumptionCount, String baseURL, String set, long startTime, long endTime, String zipFilePathName, String supportedGranularity, String deletedRecordSupport) A final report detailing the result of a successful harvest. This method is only called if the harvest completes successfully with no errors.- Specified by:
completedHarvestMessagein interfaceHarvestMessageHandler- Parameters:
recordCount- The total number of records harvested.resumptionCount- Number of resumption tokens issued.baseURL- The baseURL that was harvested.set- The set that was harvested, or an empty string if none.startTime- The time the harvest began.endTime- The time the harvest was completed.zipFilePathName- The full path to the harvest zip file, or null if none.supportedGranularity- Supported granularity [days, seconds]deletedRecordSupport- Deleted record support [no, transient, persistent]
-