mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-16 22:43:12 +00:00
Merge pull request #1277 from tdonohue/DS-3039
DS-3039 : Fix Community item counting logic. Also cleanup item counting elsewhere in code
This commit is contained in:
@@ -15,10 +15,11 @@ import org.dspace.content.service.CommunityService;
|
||||
import org.dspace.content.service.ItemService;
|
||||
import org.dspace.core.Context;
|
||||
import org.dspace.content.DSpaceObject;
|
||||
import org.dspace.core.ConfigurationManager;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.List;
|
||||
import org.dspace.services.ConfigurationService;
|
||||
import org.dspace.services.factory.DSpaceServicesFactory;
|
||||
|
||||
/**
|
||||
* This class provides a standard interface to all item counting
|
||||
@@ -48,6 +49,7 @@ public class ItemCounter
|
||||
|
||||
protected CommunityService communityService;
|
||||
protected ItemService itemService;
|
||||
protected ConfigurationService configurationService;
|
||||
|
||||
/**
|
||||
* method invoked by CLI which will result in the number of items
|
||||
@@ -79,6 +81,7 @@ public class ItemCounter
|
||||
this.dao = ItemCountDAOFactory.getInstance(this.context);
|
||||
this.communityService = ContentServiceFactory.getInstance().getCommunityService();
|
||||
this.itemService = ContentServiceFactory.getInstance().getItemService();
|
||||
this.configurationService = DSpaceServicesFactory.getInstance().getConfigurationService();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -118,7 +121,7 @@ public class ItemCounter
|
||||
public int getCount(DSpaceObject dso)
|
||||
throws ItemCountException
|
||||
{
|
||||
boolean useCache = ConfigurationManager.getBooleanProperty(
|
||||
boolean useCache = configurationService.getBooleanProperty(
|
||||
"webui.strengths.cache", true);
|
||||
|
||||
if (useCache)
|
||||
@@ -140,7 +143,7 @@ public class ItemCounter
|
||||
if (dso instanceof Community)
|
||||
{
|
||||
try {
|
||||
return communityService.countItems(context, ((Community) dso));
|
||||
return itemService.countItems(context, ((Community) dso));
|
||||
} catch (SQLException e) {
|
||||
log.error("caught exception: ", e);
|
||||
throw new ItemCountException(e);
|
||||
@@ -180,7 +183,7 @@ public class ItemCounter
|
||||
try
|
||||
{
|
||||
// first count the community we are in
|
||||
int count = communityService.countItems(context, community);
|
||||
int count = itemService.countItems(context, community);
|
||||
dao.communityCount(community, count);
|
||||
|
||||
// now get the sub-communities
|
||||
|
@@ -576,22 +576,6 @@ public class CommunityServiceImpl extends DSpaceObjectServiceImpl<Community> imp
|
||||
authorizeService.authorizeAction(context, community, Constants.WRITE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int countItems(Context context, Community community) throws SQLException {
|
||||
int total = 0;
|
||||
// add collection counts
|
||||
List<Collection> cols = community.getCollections();
|
||||
for (Collection col : cols) {
|
||||
total += itemService.countItems(context, col);
|
||||
}
|
||||
// add sub-community counts
|
||||
List<Community> comms = community.getSubcommunities();
|
||||
for (int j = 0; j < comms.size(); j++) {
|
||||
total += countItems(context, comms.get(j));
|
||||
}
|
||||
return total;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Community findByAdminGroup(Context context, Group group) throws SQLException {
|
||||
return communityDAO.findByAdminGroup(context, group);
|
||||
|
@@ -1121,12 +1121,11 @@ public class ItemServiceImpl extends DSpaceObjectServiceImpl<Item> implements It
|
||||
|
||||
@Override
|
||||
public int countItems(Context context, Community community) throws SQLException {
|
||||
// First we need a list of all collections under this community in the hierarchy
|
||||
List<Collection> collections = communityService.getAllCollections(context, community);
|
||||
int itemCount = 0;
|
||||
for(Collection collection : collections) {
|
||||
itemCount += countItems(context, collection);
|
||||
}
|
||||
return itemCount;
|
||||
|
||||
// Now, lets count unique items across that list of collections
|
||||
return itemDAO.countItems(context, collections, true, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -1166,12 +1165,14 @@ public class ItemServiceImpl extends DSpaceObjectServiceImpl<Item> implements It
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getNotArchivedItemsCount(Context context) throws SQLException {
|
||||
return itemDAO.countNotArchived(context);
|
||||
public int countNotArchivedItems(Context context) throws SQLException {
|
||||
// return count of items not in archive and also not withdrawn
|
||||
return itemDAO.countItems(context, false, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int countWithdrawnItems(Context context) throws SQLException {
|
||||
return itemDAO.countWithdrawn(context);
|
||||
// return count of items that are in archive and withdrawn
|
||||
return itemDAO.countItems(context, true, true);
|
||||
}
|
||||
}
|
||||
|
@@ -56,8 +56,32 @@ public interface ItemDAO extends DSpaceObjectLegacySupportDAO<Item>
|
||||
|
||||
public Iterator<Item> findAllByCollection(Context context, Collection collection) throws SQLException;
|
||||
|
||||
/**
|
||||
* Count number of items in a given collection
|
||||
* @param context
|
||||
* @param collection the collection
|
||||
* @param includeArchived whether to include archived items in count
|
||||
* @param includeWithdrawn whether to include withdrawn items in count
|
||||
* @return item count
|
||||
* @throws SQLException
|
||||
*/
|
||||
public int countItems(Context context, Collection collection, boolean includeArchived, boolean includeWithdrawn) throws SQLException;
|
||||
|
||||
/**
|
||||
* Count number of unique items across several collections at once.
|
||||
* This method can be used with
|
||||
* {@link org.dspace.content.service.CommunityService#getAllCollections(Context,Community)}
|
||||
* to determine the unique number of items in a Community.
|
||||
*
|
||||
* @param context
|
||||
* @param collections the list of collections
|
||||
* @param includeArchived whether to include archived items in count
|
||||
* @param includeWithdrawn whether to include withdrawn items in count
|
||||
* @return item count
|
||||
* @throws SQLException
|
||||
*/
|
||||
public int countItems(Context context, List<Collection> collections, boolean includeArchived, boolean includeWithdrawn) throws SQLException;
|
||||
|
||||
/**
|
||||
* Get all Items installed or withdrawn, discoverable, and modified since a Date.
|
||||
* @param context
|
||||
@@ -71,9 +95,22 @@ public interface ItemDAO extends DSpaceObjectLegacySupportDAO<Item>
|
||||
boolean withdrawn, boolean discoverable, Date lastModified)
|
||||
throws SQLException;
|
||||
|
||||
/**
|
||||
* Count total number of items (rows in item table)
|
||||
* @param context
|
||||
* @return total count
|
||||
* @throws SQLException
|
||||
*/
|
||||
int countRows(Context context) throws SQLException;
|
||||
|
||||
int countNotArchived(Context context) throws SQLException;
|
||||
/**
|
||||
* Count number of items based on specific status flags
|
||||
* @param context
|
||||
* @param includeArchived whether to include archived items in count
|
||||
* @param includeWithdrawn whether to include withdrawn items in count
|
||||
* @return count of items
|
||||
* @throws SQLException
|
||||
*/
|
||||
int countItems(Context context, boolean includeArchived, boolean includeWithdrawn) throws SQLException;
|
||||
|
||||
int countWithdrawn(Context context) throws SQLException;
|
||||
}
|
||||
|
@@ -11,7 +11,6 @@ import org.apache.log4j.Logger;
|
||||
import org.dspace.content.Collection;
|
||||
import org.dspace.content.Item;
|
||||
import org.dspace.content.MetadataField;
|
||||
import org.dspace.content.MetadataSchema;
|
||||
import org.dspace.content.MetadataValue;
|
||||
import org.dspace.content.dao.ItemDAO;
|
||||
import org.dspace.core.Context;
|
||||
@@ -25,10 +24,8 @@ import org.hibernate.criterion.Property;
|
||||
import org.hibernate.criterion.Restrictions;
|
||||
import org.hibernate.criterion.Subqueries;
|
||||
import org.hibernate.type.StandardBasicTypes;
|
||||
import org.hibernate.type.Type;
|
||||
|
||||
import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Date;
|
||||
import java.util.Iterator;
|
||||
@@ -245,6 +242,18 @@ public class ItemDAOImpl extends AbstractHibernateDSODAO<Item> implements ItemDA
|
||||
return count(query);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int countItems(Context context, List<Collection> collections, boolean includeArchived, boolean includeWithdrawn) throws SQLException {
|
||||
Query query = createQuery(context, "select count(distinct i) from Item i " +
|
||||
"join i.collections collection " +
|
||||
"WHERE collection IN (:collections) AND i.inArchive=:in_archive AND i.withdrawn=:withdrawn");
|
||||
query.setParameterList("collections", collections);
|
||||
query.setParameter("in_archive", includeArchived);
|
||||
query.setParameter("withdrawn", includeWithdrawn);
|
||||
|
||||
return count(query);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Iterator<Item> findByLastModifiedSince(Context context, Date since)
|
||||
throws SQLException
|
||||
@@ -260,12 +269,10 @@ public class ItemDAOImpl extends AbstractHibernateDSODAO<Item> implements ItemDA
|
||||
}
|
||||
|
||||
@Override
|
||||
public int countNotArchived(Context context) throws SQLException {
|
||||
return count(createQuery(context, "SELECT count(*) FROM Item i WHERE i.inArchive=false AND i.withdrawn=false"));
|
||||
}
|
||||
|
||||
@Override
|
||||
public int countWithdrawn(Context context) throws SQLException {
|
||||
return count(createQuery(context, "SELECT count(*) FROM Item i WHERE i.withdrawn=true"));
|
||||
public int countItems(Context context, boolean includeArchived, boolean includeWithdrawn) throws SQLException {
|
||||
Query query = createQuery(context, "SELECT count(*) FROM Item i WHERE i.inArchive=:in_archive AND i.withdrawn=:withdrawn");
|
||||
query.setParameter("in_archive", includeArchived);
|
||||
query.setParameter("withdrawn", includeWithdrawn);
|
||||
return count(query);
|
||||
}
|
||||
}
|
||||
|
@@ -243,13 +243,6 @@ public interface CommunityService extends DSpaceObjectService<Community>, DSpace
|
||||
|
||||
public void canEdit(Context context, Community community) throws AuthorizeException, SQLException;
|
||||
|
||||
/**
|
||||
* counts items in this community
|
||||
*
|
||||
* @return total items
|
||||
*/
|
||||
public int countItems(Context context, Community community) throws SQLException;
|
||||
|
||||
public Community findByAdminGroup(Context context, Group group) throws SQLException;
|
||||
|
||||
public List<Community> findAuthorized(Context context, List<Integer> actions) throws SQLException;
|
||||
|
@@ -462,7 +462,7 @@ public interface ItemService extends DSpaceObjectService<Item>, DSpaceObjectLega
|
||||
|
||||
int countTotal(Context context) throws SQLException;
|
||||
|
||||
int getNotArchivedItemsCount(Context context) throws SQLException;
|
||||
int countNotArchivedItems(Context context) throws SQLException;
|
||||
|
||||
int countWithdrawnItems(Context context) throws SQLException;
|
||||
}
|
||||
|
@@ -74,7 +74,7 @@ public class ItemCheck extends Check {
|
||||
"Withdrawn items: %d\n", itemService.countWithdrawnItems(context));
|
||||
ret += String.format(
|
||||
"Not published items (in workspace or workflow mode): %d\n",
|
||||
itemService.getNotArchivedItemsCount(context));
|
||||
itemService.countNotArchivedItems(context));
|
||||
|
||||
for (Map.Entry<Integer, Long> row : workspaceItemService.getStageReachedCounts(context)) {
|
||||
ret += String.format("\tIn Stage %s: %s\n",
|
||||
|
@@ -1961,6 +1961,8 @@ public class CollectionTest extends AbstractDSpaceObjectTest
|
||||
{
|
||||
//0 by default
|
||||
assertTrue("testCountItems 0", itemService.countItems(context, collection) == 0);
|
||||
|
||||
//NOTE: a more thorough test of item counting is in ITCommunityCollection integration test
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -1480,7 +1480,9 @@ public class CommunityTest extends AbstractDSpaceObjectTest
|
||||
public void testCountItems() throws Exception
|
||||
{
|
||||
//0 by default
|
||||
assertTrue("testCountItems 0", communityService.countItems(context, c) == 0);
|
||||
assertTrue("testCountItems 0", itemService.countItems(context, c) == 0);
|
||||
|
||||
//NOTE: a more thorough test of item counting is in ITCommunityCollection integration test
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -98,15 +98,13 @@ public class ITCommunityCollection extends AbstractIntegrationTest
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that count items works as expected
|
||||
* Tests the creation of items in a community/collection tree
|
||||
*/
|
||||
@Test
|
||||
@PerfTest(invocations = 50, threads = 1)
|
||||
@Required(percentile95 = 2000, average= 1800)
|
||||
public void testCountItems() throws SQLException, AuthorizeException, IOException {
|
||||
//make it an even number, not too high to reduce time during testing
|
||||
int totalitems = 4;
|
||||
|
||||
@PerfTest(invocations = 25, threads = 1)
|
||||
@Required(percentile95 = 1200, average = 700, throughput = 1)
|
||||
public void testCreateItems() throws SQLException, AuthorizeException
|
||||
{
|
||||
//we create the structure
|
||||
context.turnOffAuthorisationSystem();
|
||||
Community parent = communityService.create(null, context);
|
||||
@@ -115,19 +113,58 @@ public class ITCommunityCollection extends AbstractIntegrationTest
|
||||
Collection col1 = collectionService.create(context, child1);
|
||||
Collection col2 = collectionService.create(context, child1);
|
||||
|
||||
for(int count = 0; count < totalitems/2; count++)
|
||||
{
|
||||
|
||||
Item item1 = installItemService.installItem(context, workspaceItemService.create(context, col1, false));
|
||||
Item item2 = installItemService.installItem(context, workspaceItemService.create(context, col2, false));
|
||||
}
|
||||
|
||||
context.restoreAuthSystemState();
|
||||
|
||||
//verify it works as expected
|
||||
assertThat("testCountItems 0", itemService.countItems(context, col1), equalTo(totalitems/2));
|
||||
assertThat("testCountItems 1", itemService.countItems(context, col2), equalTo(totalitems/2));
|
||||
assertThat("testCountItems 2", communityService.countItems(context, child1), equalTo(totalitems));
|
||||
assertThat("testCountItems 3", communityService.countItems(context, parent), equalTo(totalitems));
|
||||
assertThat("testCreateItems 0", (Collection) itemService.getParentObject(context, item1), equalTo(col1));
|
||||
assertThat("testCreateItems 1", (Collection) itemService.getParentObject(context, item2), equalTo(col2));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests that count items works as expected
|
||||
* NOTE: Counts are currently expensive (take a while)
|
||||
*/
|
||||
@Test
|
||||
@PerfTest(invocations = 10, threads = 1)
|
||||
@Required(percentile95 = 2000, average= 1800)
|
||||
public void testCountItems() throws SQLException, AuthorizeException, IOException {
|
||||
int items_per_collection = 2;
|
||||
|
||||
//we create the structure
|
||||
context.turnOffAuthorisationSystem();
|
||||
Community parentCom = communityService.create(null, context);
|
||||
Community childCom = communityService.create(parentCom, context);
|
||||
|
||||
Collection col1 = collectionService.create(context, childCom);
|
||||
Collection col2 = collectionService.create(context, childCom);
|
||||
|
||||
// Add same number of items to each collection
|
||||
for(int count = 0; count < items_per_collection; count++)
|
||||
{
|
||||
Item item1 = installItemService.installItem(context, workspaceItemService.create(context, col1, false));
|
||||
Item item2 = installItemService.installItem(context, workspaceItemService.create(context, col2, false));
|
||||
}
|
||||
|
||||
// Finally, let's throw in a small wrench and add a mapped item
|
||||
// Add it to collection 1
|
||||
Item item3 = installItemService.installItem(context, workspaceItemService.create(context, col1, false));
|
||||
// Map it into collection 2
|
||||
collectionService.addItem(context, col2, item3);
|
||||
|
||||
// Our total number of items should be
|
||||
int totalitems = items_per_collection*2 + 1;
|
||||
// Our collection counts should be
|
||||
int collTotalItems = items_per_collection + 1;
|
||||
|
||||
context.restoreAuthSystemState();
|
||||
|
||||
//verify it works as expected
|
||||
assertThat("testCountItems 0", itemService.countItems(context, col1), equalTo(collTotalItems));
|
||||
assertThat("testCountItems 1", itemService.countItems(context, col2), equalTo(collTotalItems));
|
||||
assertThat("testCountItems 2", itemService.countItems(context, childCom), equalTo(totalitems));
|
||||
assertThat("testCountItems 3", itemService.countItems(context, parentCom), equalTo(totalitems));
|
||||
}
|
||||
}
|
||||
|
@@ -21,7 +21,7 @@ import org.dspace.authorize.AuthorizeException;
|
||||
import org.dspace.content.Community;
|
||||
import org.dspace.content.DSpaceObject;
|
||||
import org.dspace.content.factory.ContentServiceFactory;
|
||||
import org.dspace.content.service.CommunityService;
|
||||
import org.dspace.content.service.ItemService;
|
||||
import org.xml.sax.SAXException;
|
||||
|
||||
/**
|
||||
@@ -36,7 +36,7 @@ public class CommunityRecentSubmissions extends AbstractRecentSubmissionTransfor
|
||||
private static final Message T_head_recent_submissions =
|
||||
message("xmlui.ArtifactBrowser.CommunityViewer.head_recent_submissions");
|
||||
|
||||
protected CommunityService communityService = ContentServiceFactory.getInstance().getCommunityService();
|
||||
protected ItemService itemService = ContentServiceFactory.getInstance().getItemService();
|
||||
|
||||
/**
|
||||
* Displays the recent submissions for this community
|
||||
@@ -80,7 +80,7 @@ public class CommunityRecentSubmissions extends AbstractRecentSubmissionTransfor
|
||||
|
||||
Community community = (Community) dso;
|
||||
|
||||
if (communityService.countItems(context, community) > maxRecentSubmissions)
|
||||
if (itemService.countItems(context, community) > maxRecentSubmissions)
|
||||
addViewMoreLink(lastSubmittedDiv, dso);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user