[view] 'session' interface in 'session history' (bug #92)
[abstract.git] / view / aaSessionHistory.cpp
blob49776b2f9751a995d25b4ac6c27b83990d7f4c42
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent tw=79 ft=cpp: */
3 /*
4 * Copyright (C) 2007 Sergey Yanovich <ynvich@gmail.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
22 #include <abstract/aacore.h>
24 #include "nsCOMPtr.h"
25 #include "nsISHistory.h"
26 #include "nsIInterfaceRequestor.h"
27 #include "nsComponentManagerUtils.h"
29 /* Unfrozen API */
30 #include "unstable/nsISHistoryInternal.h"
31 #include "unstable/nsIWebNavigation.h"
33 /* Project includes */
34 #include <abstract/storage/aaISession.h>
35 #include "aaSessionHistory.h"
37 aaSessionHistory::aaSessionHistory()
39 mSH = do_CreateInstance(NS_SHISTORY_CONTRACTID);
40 if (!mSH)
41 return;
42 mSHI = do_QueryInterface(mSH);
43 if (!mSHI)
44 return;
45 mWN = do_QueryInterface(mSH);
46 if (!mWN)
47 return;
48 mSession = do_CreateInstance("@aasii.org/storage/session;1");
51 aaSessionHistory::~aaSessionHistory()
55 NS_IMPL_ISUPPORTS4(aaSessionHistory,
56 nsISHistory,
57 nsISHistoryInternal,
58 nsIWebNavigation,
59 aaISession)
61 /* nsISHistoryInternal */
62 NS_IMETHODIMP
63 aaSessionHistory::AddEntry(nsISHEntry *aEntry, PRBool aPersist)
65 nsCOMPtr<nsISHEntry> pageView( do_CreateInstance(
66 "@aasii.org/view/page-view;1", aEntry));
67 return mSHI->AddEntry(pageView, aPersist);
70 NS_IMETHODIMP
71 aaSessionHistory::GetRootTransaction(nsISHTransaction * *aRootTransaction)
73 return mSHI->GetRootTransaction(aRootTransaction);
76 NS_IMETHODIMP
77 aaSessionHistory::GetRootDocShell(nsIDocShell * *aRootDocShell)
79 return mSHI->GetRootDocShell( aRootDocShell );
81 NS_IMETHODIMP
82 aaSessionHistory::SetRootDocShell(nsIDocShell * aRootDocShell)
84 return mSHI->SetRootDocShell( aRootDocShell );
87 NS_IMETHODIMP
88 aaSessionHistory::UpdateIndex()
90 return mSHI->UpdateIndex();
93 NS_IMETHODIMP
94 aaSessionHistory::ReplaceEntry(PRInt32 aIndex, nsISHEntry *aReplaceEntry)
96 return mSHI->ReplaceEntry(aIndex, aReplaceEntry);
99 NS_IMETHODIMP
100 aaSessionHistory::GetListener(nsISHistoryListener * *aListener)
102 return mSHI->GetListener(aListener);
105 NS_IMETHODIMP
106 aaSessionHistory::EvictContentViewers(PRInt32 previousIndex, PRInt32 index)
108 return mSHI->EvictContentViewers(previousIndex, index);
111 NS_IMETHODIMP
112 aaSessionHistory::EvictExpiredContentViewerForEntry(nsISHEntry *aEntry)
114 return mSHI->EvictExpiredContentViewerForEntry(aEntry);