2000-10-28 22:17:53 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
1999-08-30 22:38:58 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-08-30 22:38:58 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* 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.
|
1999-08-30 22:38:58 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-08-30 22:38:58 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:40:37 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2000-02-02 22:24:56 +00:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
1999-08-30 22:38:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsILayoutHistoryState.h"
|
2001-05-12 15:52:06 +00:00
|
|
|
#include "nsWeakReference.h"
|
1999-08-30 22:38:58 +00:00
|
|
|
#include "nsHashtable.h"
|
1999-09-03 22:10:57 +00:00
|
|
|
|
2001-05-12 15:52:06 +00:00
|
|
|
class nsLayoutHistoryState : public nsILayoutHistoryState,
|
|
|
|
public nsSupportsWeakReference
|
1999-08-30 22:38:58 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsLayoutHistoryState();
|
|
|
|
virtual ~nsLayoutHistoryState();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsILayoutHistoryState
|
2001-05-30 11:26:21 +00:00
|
|
|
NS_IMETHOD AddState(const nsCString& aKey, nsIPresState* aState);
|
|
|
|
NS_IMETHOD GetState(const nsCString& aKey, nsIPresState** aState);
|
|
|
|
NS_IMETHOD RemoveState(const nsCString& aKey);
|
2000-01-14 09:28:54 +00:00
|
|
|
|
1999-08-30 22:38:58 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsSupportsHashtable mStates;
|
|
|
|
};
|
|
|
|
|
1999-09-03 22:10:57 +00:00
|
|
|
|
1999-08-30 22:38:58 +00:00
|
|
|
nsresult
|
|
|
|
NS_NewLayoutHistoryState(nsILayoutHistoryState** aState)
|
|
|
|
{
|
2001-05-30 11:26:21 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aState);
|
1999-08-30 22:38:58 +00:00
|
|
|
if (! aState)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
2001-05-12 15:52:06 +00:00
|
|
|
nsLayoutHistoryState *state = new nsLayoutHistoryState();
|
|
|
|
if (!state)
|
1999-08-30 22:38:58 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2001-05-12 15:52:06 +00:00
|
|
|
*aState = NS_STATIC_CAST(nsILayoutHistoryState *, state);
|
1999-08-30 22:38:58 +00:00
|
|
|
NS_ADDREF(*aState);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLayoutHistoryState::nsLayoutHistoryState()
|
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLayoutHistoryState::~nsLayoutHistoryState()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-05-12 15:52:06 +00:00
|
|
|
NS_IMPL_ISUPPORTS2(nsLayoutHistoryState,
|
|
|
|
nsILayoutHistoryState,
|
|
|
|
nsISupportsWeakReference);
|
1999-08-30 22:38:58 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2001-05-30 11:26:21 +00:00
|
|
|
nsLayoutHistoryState::AddState(const nsCString& aStateKey,
|
|
|
|
nsIPresState* aState)
|
1999-08-30 22:38:58 +00:00
|
|
|
{
|
2001-05-30 11:26:21 +00:00
|
|
|
nsCStringKey key(aStateKey);
|
|
|
|
|
2000-06-06 22:06:56 +00:00
|
|
|
/*
|
2001-05-30 11:26:21 +00:00
|
|
|
* nsSupportsHashtable::Put() returns false when no object was
|
|
|
|
* replaced when inserting the new one, true if one was.
|
1999-09-15 02:30:39 +00:00
|
|
|
*/
|
2001-05-30 11:26:21 +00:00
|
|
|
#ifdef DEBUG_pollmann
|
|
|
|
PRBool replaced =
|
|
|
|
#endif
|
|
|
|
|
|
|
|
mStates.Put (&key, aState);
|
|
|
|
|
|
|
|
#ifdef DEBUG_pollmann
|
|
|
|
NS_ASSERTION(!replaced,
|
|
|
|
"nsLayoutHistoryState::AddState OOPS!. There was already a state in the hash table for the key\n");
|
2000-10-28 22:17:53 +00:00
|
|
|
#endif
|
1999-09-15 02:30:39 +00:00
|
|
|
|
2000-06-06 22:06:56 +00:00
|
|
|
return NS_OK;
|
1999-08-30 22:38:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2001-05-30 11:26:21 +00:00
|
|
|
nsLayoutHistoryState::GetState(const nsCString& aKey,
|
|
|
|
nsIPresState** aState)
|
1999-08-30 22:38:58 +00:00
|
|
|
{
|
1999-09-15 02:30:39 +00:00
|
|
|
nsresult rv = NS_OK;
|
2001-05-30 11:26:21 +00:00
|
|
|
nsCStringKey key(aKey);
|
2000-06-06 22:06:56 +00:00
|
|
|
nsISupports *state = nsnull;
|
1999-09-15 02:30:39 +00:00
|
|
|
state = mStates.Get(&key);
|
|
|
|
if (state) {
|
2000-01-14 09:28:54 +00:00
|
|
|
*aState = (nsIPresState *)state;
|
1999-09-15 02:30:39 +00:00
|
|
|
}
|
|
|
|
else {
|
2000-10-28 22:17:53 +00:00
|
|
|
#if 0
|
|
|
|
printf("nsLayoutHistoryState::GetState, ERROR getting History state for the key\n");
|
|
|
|
#endif
|
1999-09-15 02:30:39 +00:00
|
|
|
*aState = nsnull;
|
2000-01-25 06:35:27 +00:00
|
|
|
rv = NS_OK;
|
1999-09-15 02:30:39 +00:00
|
|
|
}
|
1999-09-03 22:10:57 +00:00
|
|
|
return rv;
|
1999-08-30 22:38:58 +00:00
|
|
|
}
|
2000-01-14 09:28:54 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2001-05-30 11:26:21 +00:00
|
|
|
nsLayoutHistoryState::RemoveState(const nsCString& aKey)
|
2000-01-14 09:28:54 +00:00
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
2001-05-30 11:26:21 +00:00
|
|
|
nsCStringKey key(aKey);
|
2000-06-06 22:06:56 +00:00
|
|
|
mStates.Remove(&key);
|
2000-01-14 09:28:54 +00:00
|
|
|
return rv;
|
|
|
|
}
|