зеркало из https://github.com/mozilla/pjs.git
286 строки
8.3 KiB
C++
286 строки
8.3 KiB
C++
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||
|
*
|
||
|
* 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/
|
||
|
*
|
||
|
* 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 mozilla.org code.
|
||
|
*
|
||
|
* The Initial Developer of the Original Code is Netscape
|
||
|
* Communications Corporation. Portions created by Netscape are
|
||
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
||
|
* Rights Reserved.
|
||
|
*
|
||
|
* Contributor(s):
|
||
|
* Chak Nanga <chak@netscape.com>
|
||
|
* David Epstein <depstein@netscape.com>
|
||
|
*/
|
||
|
|
||
|
#ifdef _WINDOWS
|
||
|
#include "stdafx.h"
|
||
|
#endif
|
||
|
#include "BrowserImpl.h"
|
||
|
#include "IBrowserFrameGlue.h"
|
||
|
|
||
|
#include "TestEmbed.h"
|
||
|
#include "BrowserView.h"
|
||
|
#include "BrowserFrm.h"
|
||
|
|
||
|
#include "QaUtils.h"
|
||
|
|
||
|
//*****************************************************************************
|
||
|
// CBrowserImpl::nsIWebProgressListener Implementation
|
||
|
//*****************************************************************************
|
||
|
//
|
||
|
// - Implements browser progress update functionality
|
||
|
// while loading a page into the embedded browser
|
||
|
//
|
||
|
// - Calls methods via the IBrowserFrameGlue interace
|
||
|
// (available thru' the m_pBrowserFrameGlue member var)
|
||
|
// to do the actual statusbar/progress bar updates.
|
||
|
//
|
||
|
|
||
|
class CBrowserView;
|
||
|
|
||
|
NS_IMETHODIMP CBrowserImpl::OnProgressChange(nsIWebProgress *progress, nsIRequest *request,
|
||
|
PRInt32 curSelfProgress, PRInt32 maxSelfProgress,
|
||
|
PRInt32 curTotalProgress, PRInt32 maxTotalProgress)
|
||
|
{
|
||
|
|
||
|
nsCString stringMsg;
|
||
|
|
||
|
if(! m_pBrowserFrameGlue)
|
||
|
return NS_ERROR_FAILURE;
|
||
|
|
||
|
CQaUtils::QAOutput("Entering nsIWebProgLstnr::OnProgressChange().");
|
||
|
|
||
|
PRInt32 nProgress = curTotalProgress;
|
||
|
PRInt32 nProgressMax = maxTotalProgress;
|
||
|
|
||
|
CQaUtils::RequestName(request, stringMsg);
|
||
|
|
||
|
if (nProgressMax == 0)
|
||
|
nProgressMax = LONG_MAX;
|
||
|
|
||
|
if (curSelfProgress > maxSelfProgress)
|
||
|
CQaUtils::QAOutput("nsIWebProgLstnr::OnProgressChange(): Self progress complete!", 1);
|
||
|
|
||
|
if (nProgress > nProgressMax)
|
||
|
{
|
||
|
nProgress = nProgressMax; // Progress complete
|
||
|
CQaUtils::QAOutput("nsIWebProgLstnr::OnProgressChange(): Progress Update complete!", 1);
|
||
|
}
|
||
|
|
||
|
m_pBrowserFrameGlue->UpdateProgress(nProgress, nProgressMax);
|
||
|
|
||
|
CQaUtils::QAOutput("Exiting nsIWebProgLstnr::OnProgressChange().\r\n");
|
||
|
|
||
|
return NS_OK;
|
||
|
}
|
||
|
|
||
|
NS_IMETHODIMP CBrowserImpl::OnStateChange(nsIWebProgress *progress, nsIRequest *request,
|
||
|
PRInt32 progressStateFlags, PRUint32 status)
|
||
|
{
|
||
|
char theDocType[100];
|
||
|
char theStateType[100];
|
||
|
char theTotalString[1000];
|
||
|
int displayMode = 1;
|
||
|
nsCString stringMsg;
|
||
|
nsCString totalMsg;
|
||
|
|
||
|
if(! m_pBrowserFrameGlue)
|
||
|
return NS_ERROR_FAILURE;
|
||
|
|
||
|
CQaUtils::QAOutput("Entering nsIWebProgLstnr::OnStateChange().");
|
||
|
|
||
|
CQaUtils::RequestName(request, stringMsg);
|
||
|
|
||
|
if (progressStateFlags & STATE_IS_DOCUMENT) // DOCUMENT
|
||
|
{
|
||
|
strcpy(theDocType, "DOCUMENT");
|
||
|
if (progressStateFlags & STATE_START)
|
||
|
{
|
||
|
// Navigation has begun
|
||
|
strcpy(theStateType, "STATE_START");
|
||
|
displayMode = 2;
|
||
|
|
||
|
if(m_pBrowserFrameGlue)
|
||
|
m_pBrowserFrameGlue->UpdateBusyState(PR_TRUE);
|
||
|
}
|
||
|
|
||
|
else if (progressStateFlags & STATE_REDIRECTING)
|
||
|
strcpy(theStateType, "STATE_REDIRECTING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_TRANSFERRING)
|
||
|
strcpy(theStateType, "STATE_TRANSFERRING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_NEGOTIATING)
|
||
|
strcpy(theStateType, "STATE_NEGOTIATING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_STOP)
|
||
|
{
|
||
|
// We've completed the navigation
|
||
|
|
||
|
strcpy(theStateType, "STATE_STOP");
|
||
|
displayMode = 2;
|
||
|
|
||
|
m_pBrowserFrameGlue->UpdateBusyState(PR_FALSE);
|
||
|
m_pBrowserFrameGlue->UpdateProgress(0, 100); // Clear the prog bar
|
||
|
m_pBrowserFrameGlue->UpdateStatusBarText(nsnull); // Clear the status bar
|
||
|
}
|
||
|
} // end STATE_IS_DOCUMENT
|
||
|
if (progressStateFlags & STATE_IS_REQUEST) // REQUEST
|
||
|
{
|
||
|
strcpy(theDocType, "REQUEST");
|
||
|
if (progressStateFlags & STATE_START)
|
||
|
strcpy(theStateType, "STATE_START");
|
||
|
else if (progressStateFlags & STATE_REDIRECTING)
|
||
|
strcpy(theStateType, "STATE_REDIRECTING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_TRANSFERRING)
|
||
|
strcpy(theStateType, "STATE_TRANSFERRING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_NEGOTIATING)
|
||
|
strcpy(theStateType, "STATE_NEGOTIATING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_STOP)
|
||
|
strcpy(theStateType, "STATE_STOP");
|
||
|
}
|
||
|
|
||
|
if (progressStateFlags & STATE_IS_NETWORK) // NETWORK
|
||
|
{
|
||
|
strcpy(theDocType, "NETWORK");
|
||
|
if (progressStateFlags & STATE_START)
|
||
|
strcpy(theStateType, "STATE_START");
|
||
|
else if (progressStateFlags & STATE_REDIRECTING)
|
||
|
strcpy(theStateType, "STATE_REDIRECTING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_TRANSFERRING)
|
||
|
strcpy(theStateType, "STATE_TRANSFERRING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_NEGOTIATING)
|
||
|
strcpy(theStateType, "STATE_NEGOTIATING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_STOP)
|
||
|
strcpy(theStateType, "STATE_STOP");
|
||
|
}
|
||
|
if (progressStateFlags & STATE_IS_WINDOW) // WINDOW
|
||
|
{
|
||
|
strcpy(theDocType, "WINDOW");
|
||
|
if (progressStateFlags & STATE_START)
|
||
|
strcpy(theStateType, "STATE_START");
|
||
|
else if (progressStateFlags & STATE_REDIRECTING)
|
||
|
strcpy(theStateType, "STATE_REDIRECTING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_TRANSFERRING)
|
||
|
strcpy(theStateType, "STATE_TRANSFERRING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_NEGOTIATING)
|
||
|
strcpy(theStateType, "STATE_NEGOTIATING");
|
||
|
|
||
|
else if (progressStateFlags & STATE_STOP)
|
||
|
strcpy(theStateType, "STATE_STOP");
|
||
|
}
|
||
|
|
||
|
totalMsg = "OnStateChange(): ";
|
||
|
totalMsg += theStateType;
|
||
|
totalMsg += ", ";
|
||
|
totalMsg += theDocType;
|
||
|
totalMsg += ", ";
|
||
|
totalMsg += stringMsg;
|
||
|
|
||
|
CQaUtils::QAOutput(totalMsg.get(), displayMode);
|
||
|
CQaUtils::QAOutput("Exiting nsIWebProgLstnr::OnStateChange().\r\n");
|
||
|
|
||
|
return NS_OK;
|
||
|
}
|
||
|
|
||
|
|
||
|
NS_IMETHODIMP CBrowserImpl::OnLocationChange(nsIWebProgress* aWebProgress,
|
||
|
nsIRequest* aRequest,
|
||
|
nsIURI *location)
|
||
|
{
|
||
|
nsCString stringMsg;
|
||
|
|
||
|
if(! m_pBrowserFrameGlue)
|
||
|
return NS_ERROR_FAILURE;
|
||
|
|
||
|
CQaUtils::QAOutput("Entering nsIWebProgLstnr::OnLocationChange().");
|
||
|
|
||
|
nsresult rv;
|
||
|
char *uriSpec;
|
||
|
rv = location->GetSpec(&uriSpec);
|
||
|
if (NS_FAILED(rv))
|
||
|
CQaUtils::QAOutput("Bad result for GetSpec().");
|
||
|
else
|
||
|
CQaUtils::QAOutput("Good result for GetSpec().");
|
||
|
|
||
|
CQaUtils::FormatAndPrintOutput("The location url = ", uriSpec, 1);
|
||
|
|
||
|
// CQaUtils::RequestName(aRequest, stringMsg);
|
||
|
|
||
|
PRBool isSubFrameLoad = PR_FALSE; // Is this a subframe load
|
||
|
if (aWebProgress) {
|
||
|
nsCOMPtr<nsIDOMWindow> domWindow;
|
||
|
nsCOMPtr<nsIDOMWindow> topDomWindow;
|
||
|
aWebProgress->GetDOMWindow(getter_AddRefs(domWindow));
|
||
|
if (domWindow) { // Get root domWindow
|
||
|
domWindow->GetTop(getter_AddRefs(topDomWindow));
|
||
|
}
|
||
|
if (domWindow != topDomWindow)
|
||
|
isSubFrameLoad = PR_TRUE;
|
||
|
}
|
||
|
|
||
|
if (!isSubFrameLoad) // Update urlbar only if it is not a subframe load
|
||
|
m_pBrowserFrameGlue->UpdateCurrentURI(location);
|
||
|
|
||
|
CQaUtils::QAOutput("Exiting nsIWebProgLstnr::OnLocationChange().\r\n");
|
||
|
return NS_OK;
|
||
|
}
|
||
|
|
||
|
NS_IMETHODIMP
|
||
|
CBrowserImpl::OnStatusChange(nsIWebProgress* aWebProgress,
|
||
|
nsIRequest* aRequest,
|
||
|
nsresult aStatus,
|
||
|
const PRUnichar* aMessage)
|
||
|
{
|
||
|
nsCString stringMsg;
|
||
|
|
||
|
if(! m_pBrowserFrameGlue)
|
||
|
return NS_ERROR_FAILURE;
|
||
|
|
||
|
CQaUtils::QAOutput("Entering nsIWebProgLstnr::OnStatusChange().");
|
||
|
|
||
|
|
||
|
CQaUtils::RequestName(aRequest, stringMsg);
|
||
|
|
||
|
m_pBrowserFrameGlue->UpdateStatusBarText(aMessage);
|
||
|
|
||
|
CQaUtils::QAOutput("Exiting nsIWebProgLstnr::OnStatusChange().\r\n");
|
||
|
|
||
|
return NS_OK;
|
||
|
}
|
||
|
|
||
|
|
||
|
NS_IMETHODIMP
|
||
|
CBrowserImpl::OnSecurityChange(nsIWebProgress *aWebProgress,
|
||
|
nsIRequest *aRequest,
|
||
|
PRInt32 state)
|
||
|
{
|
||
|
nsCString stringMsg;
|
||
|
|
||
|
CQaUtils::QAOutput("Entering nsIWebProgLstnr::OnSecurityChange().");
|
||
|
|
||
|
CQaUtils::RequestName(aRequest, stringMsg);
|
||
|
|
||
|
CQaUtils::QAOutput("Exiting nsIWebProgLstnr::OnSecurityChange().\r\n");
|
||
|
|
||
|
return NS_OK;
|
||
|
}
|