Skip to content
Snippets Groups Projects
Commit ea7ca131 authored by Ere Maijala's avatar Ere Maijala Committed by Demian Katz
Browse files

Tolerate backend exceptions when loading records in favorite lists.

parent 8d3c4d18
No related merge requests found
......@@ -43,8 +43,10 @@ use VuFind\Exception\RecordMissing as RecordMissingException,
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org Main Site
*/
class Loader
class Loader implements \Zend\Log\LoggerAwareInterface
{
use \VuFind\Log\LoggerAwareTrait;
/**
* Record factory
*
......@@ -131,14 +133,18 @@ class Loader
* Given an array of IDs and a record source, load a batch of records for
* that source.
*
* @param array $ids Record IDs
* @param string $source Record source
* @param array $ids Record IDs
* @param string $source Record source
* @param bool $tolerateBackendExceptions Whether to tolerate backend
* exceptions that may be caused by e.g. connection issues or changes in
* subcscriptions
*
* @throws \Exception
* @return array
*/
public function loadBatchForSource($ids, $source = DEFAULT_SEARCH_BACKEND)
{
public function loadBatchForSource($ids, $source = DEFAULT_SEARCH_BACKEND,
$tolerateBackendExceptions = false
) {
$cachedRecords = [];
if (null !== $this->recordCache && $this->recordCache->isPrimary($source)) {
// Try to load records from cache if source is cachable
......@@ -155,8 +161,18 @@ class Loader
// Try to load the uncached records from the original $source
$genuineRecords = [];
if (!empty($ids)) {
$genuineRecords = $this->searchService->retrieveBatch($source, $ids)
->getRecords();
try {
$genuineRecords = $this->searchService->retrieveBatch($source, $ids)
->getRecords();
} catch (\VuFindSearch\Backend\Exception\BackendException $e) {
if (!$tolerateBackendExceptions) {
throw $e;
}
$this->logWarning(
"Exception when trying to retrieve records from $source: "
. $e->getMessage()
);
}
foreach ($genuineRecords as $genuineRecord) {
$key = array_search($genuineRecord->getUniqueId(), $ids);
......@@ -187,16 +203,19 @@ class Loader
* separated source|id strings), load all of the requested records in the
* requested order.
*
* @param array $ids Array of associative arrays with id/source keys or
* strings in source|id format. In associative array formats, there is
* also an optional "extra_fields" key which can be used to pass in data
* @param array $ids Array of associative arrays with
* id/source keys or strings in source|id format. In associative array formats,
* there is also an optional "extra_fields" key which can be used to pass in data
* formatted as if it belongs to the Solr schema; this is used to create
* a mock driver object if the real data source is unavailable.
* @param bool $tolerateBackendExceptions Whether to tolerate backend
* exceptions that may be caused by e.g. connection issues or changes in
* subcscriptions
*
* @throws \Exception
* @return array Array of record drivers
*/
public function loadBatch($ids)
public function loadBatch($ids, $tolerateBackendExceptions = false)
{
// Sort the IDs by source -- we'll create an associative array indexed by
// source and record ID which points to the desired position of the indexed
......@@ -216,7 +235,9 @@ class Loader
// Retrieve the records and put them back in order:
$retVal = [];
foreach ($idBySource as $source => $details) {
$records = $this->loadBatchForSource(array_keys($details), $source);
$records = $this->loadBatchForSource(
array_keys($details), $source, $tolerateBackendExceptions
);
foreach ($records as $current) {
$id = $current->getUniqueId();
// In theory, we should be able to assume that $details[$id] is
......
......@@ -211,7 +211,7 @@ class Results extends BaseResults
}
$this->recordLoader->setCacheContext(Cache::CONTEXT_FAVORITE);
$this->results = $this->recordLoader->loadBatch($recordsToRequest);
$this->results = $this->recordLoader->loadBatch($recordsToRequest, true);
}
/**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment