/** * Copyright (c) 2008-2012 The Sakai Foundation * * Licensed under the Educational Community 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.osedu.org/licenses/ECL-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.sakaiproject.profile2.tool.dataproviders; import java.util.Collections; import java.util.Iterator; import java.util.List; import org.apache.wicket.injection.web.InjectorHolder; import org.apache.wicket.markup.repeater.data.IDataProvider; import org.apache.wicket.model.IModel; import org.apache.wicket.spring.injection.annot.SpringBean; import org.sakaiproject.profile2.logic.ProfileLogic; import org.sakaiproject.profile2.logic.ProfileMessagingLogic; import org.sakaiproject.profile2.model.Message; import org.sakaiproject.profile2.tool.models.DetachableMessageModel; /** * Implementation of IDataProvider that retrieves messages in a given thread * * @author Steve Swinsburg (steve.swinsburg@gmail.com) * */ public class MessagesDataProvider implements IDataProvider<Message> { private static final long serialVersionUID = 1L; private final String threadId; @SpringBean(name="org.sakaiproject.profile2.logic.ProfileMessagingLogic") protected ProfileMessagingLogic messagingLogic; public MessagesDataProvider(String threadId) { //inject InjectorHolder.getInjector().inject(this); this.threadId = threadId; } /** * retrieves messages from database, gets the sublist and returns an iterator for that sublist * * @see org.apache.wicket.markup.repeater.data.IDataProvider#iterator(int, int) */ public Iterator<Message> iterator(int first, int count){ try { List<Message> slice = messagingLogic.getMessagesInThread(threadId).subList(first, first + count); return slice.iterator(); } catch (Exception e) { e.printStackTrace(); return Collections.EMPTY_LIST.iterator(); } } /** * returns total number of message thread headers * * @see org.apache.wicket.markup.repeater.data.IDataProvider#size() */ public int size(){ return messagingLogic.getMessagesInThreadCount(threadId); } /** * wraps retrieved message pojo with a wicket model * * @see org.apache.wicket.markup.repeater.data.IDataProvider#model(java.lang.Object) */ public IModel<Message> model(Message object){ return new DetachableMessageModel(object); } /** * @see org.apache.wicket.model.IDetachable#detach() */ public void detach(){ } }