- fixed a bug in navigation between conferences via post links - fixed the "your post is 'new'" bug (this was actually another bug, in postNewMessage()) - some other stuff
169 lines
4.4 KiB
Java
169 lines
4.4 KiB
Java
/*
|
|
* 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 <http://www.mozilla.org/MPL/>.
|
|
*
|
|
* 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 <erbo@silcom.com>,
|
|
* 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; i<topiclist.size(); i++)
|
|
{ // fill in topic numbers and unread states
|
|
TopicContext t = (TopicContext)(topiclist.get(i));
|
|
topics[i] = t.getTopicNumber();
|
|
unread[i] = (t.getUnreadMessages()>0);
|
|
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<topics.length; i++)
|
|
{ // simple linear search - can't be tricky because the topic numbers might be
|
|
// in any order
|
|
if (topnum==topics[i])
|
|
{ // plant ourselves right there
|
|
unread[i] = false;
|
|
ndx_next = i;
|
|
break;
|
|
|
|
} // end if
|
|
|
|
} // end for
|
|
|
|
} // end if
|
|
else
|
|
unread[ndx_next] = false;
|
|
|
|
// move the "next" pointer
|
|
ndx_next = moveNext();
|
|
|
|
} // end visit
|
|
|
|
} // end class TopicVisitOrder
|
|
|
|
|
|
|