blob: c6a0339a6cc4f0c507b32f9b8fd77d8b5217708f [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.stanbol.enhancer.engines.keywordextraction.linking.impl;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.apache.stanbol.enhancer.engines.keywordextraction.linking.EntitySearcher;
import org.apache.stanbol.entityhub.servicesapi.model.Entity;
import org.apache.stanbol.entityhub.servicesapi.model.Representation;
import org.apache.stanbol.entityhub.servicesapi.query.FieldQuery;
import org.apache.stanbol.entityhub.servicesapi.query.QueryResultList;
import org.apache.stanbol.entityhub.servicesapi.site.Site;
import org.apache.stanbol.entityhub.servicesapi.site.SiteConfiguration;
import org.apache.stanbol.entityhub.servicesapi.site.SiteException;
import org.osgi.framework.BundleContext;
public final class ReferencedSiteSearcher extends TrackingEntitySearcher<Site> implements EntitySearcher {
private final String siteId;
private final Integer limit;
public ReferencedSiteSearcher(BundleContext context,String siteId, Integer limit) {
super(context, Site.class,
Collections.singletonMap(SiteConfiguration.ID,siteId));
this.siteId = siteId;
this.limit = limit != null && limit > 0 ? limit : null;
}
@Override
public Representation get(String id,Set<String> includeFields) {
if(id == null || id.isEmpty()){
return null;
}
Entity entity;
Site site = getSearchService();
if(site == null){
throw new IllegalStateException("ReferencedSite "+siteId+" is currently not available");
}
try {
entity = site.getEntity(id);
} catch (SiteException e) {
throw new IllegalStateException("Exception while getting "+id+
" from the ReferencedSite "+site.getId(),e);
}
return entity == null ? null : entity.getRepresentation();
}
@Override
public Collection<? extends Representation> lookup(String field,
Set<String> includeFields,
List<String> search,
String[] languages,
Integer limit) throws IllegalStateException {
//build the query and than return the result
Site site = getSearchService();
if(site == null){
throw new IllegalStateException("ReferencedSite "+siteId+" is currently not available");
}
FieldQuery query = EntitySearcherUtils.createFieldQuery(site.getQueryFactory(),
field, includeFields, search, languages);
if(limit != null && limit > 0){
query.setLimit(limit);
} else if(this.limit != null){
query.setLimit(this.limit);
}
QueryResultList<Representation> results;
try {
results = site.find(query);
} catch (SiteException e) {
throw new IllegalStateException("Exception while searchign for "+
search+'@'+Arrays.toString(languages)+"in the ReferencedSite "+
site.getId(), e);
}
return results.results();
}
@Override
public boolean supportsOfflineMode() {
Site site = getSearchService();
//Do not throw an exception here if the site is not available. Just return false
return site == null ? false : site.supportsLocalMode();
}
@Override
public Integer getLimit() {
return limit;
}
}