/* * The contents of this file are subject to the Mozilla Public License Version 1.1 * (the "License"); you may not use this file except in compliance with the License. * You may obtain a copy of the License at . * * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT * WARRANTY OF ANY KIND, either express or implied. See the License for the specific * language governing rights and limitations under the License. * * The Original Code is the Venice Web Communities System. * * The Initial Developer of the Original Code is Eric J. Bowersox , * for Silverwrist Design Studios. Portions created by Eric J. Bowersox are * Copyright (C) 2001 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved. * * Contributor(s): */ package com.silverwrist.venice.servlets.format; import java.util.*; import javax.servlet.*; import javax.servlet.http.*; import com.silverwrist.venice.core.*; public class TopicVisitOrder { /*-------------------------------------------------------------------------------- * Static data members *-------------------------------------------------------------------------------- */ protected static final String ATTRIBUTE = "conf.display.topic.visitorder"; /*-------------------------------------------------------------------------------- * Attributes *-------------------------------------------------------------------------------- */ private int confid; private short[] topics; private boolean[] unread; private int ndx_next; /*-------------------------------------------------------------------------------- * Constructor *-------------------------------------------------------------------------------- */ protected TopicVisitOrder(int confid, List topiclist) { this.confid = confid; this.topics = new short[topiclist.size()]; this.unread = new boolean[topiclist.size()]; ndx_next = -1; for (int i=0; i0); if (unread[i] && (ndx_next<0)) ndx_next = i; } // end for } // end constructor private int moveNext() { int i = ndx_next; do { // move forward to next "unread" topic if (unread[i]) break; if (++i==unread.length) i = 0; } while (i!=ndx_next); // end do return i; } // end moveNext /*-------------------------------------------------------------------------------- * External static functions *-------------------------------------------------------------------------------- */ public static TopicVisitOrder initialize(HttpSession session, int confid, List topic_list) { TopicVisitOrder tvo = new TopicVisitOrder(confid,topic_list); session.setAttribute(ATTRIBUTE,tvo); return tvo; } // end initialize public static TopicVisitOrder retrieve(HttpSession session, int confid) { TopicVisitOrder tvo = (TopicVisitOrder)(session.getAttribute(ATTRIBUTE)); if (tvo!=null) { // make sure the conference is OK if (tvo.confid!=confid) // wrong conference - remove this tvo = null; } // end if return tvo; } // end retrieve /*-------------------------------------------------------------------------------- * External operations *-------------------------------------------------------------------------------- */ public short getNext() { if (ndx_next<0) return -1; else if (unread[ndx_next]) return topics[ndx_next]; else return -1; } // end getNext public boolean isNext() { if (ndx_next>=0) return unread[ndx_next]; else return false; } // end isNext public void visit(short topnum) { if (ndx_next<0) return; if (topics[ndx_next]!=topnum) { // go searching for the matching topic number for (int i=0; i