1999-07-06 05:48:12 +00:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/*
|
1999-11-06 03:43:54 +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-07-06 05:48:12 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +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-07-06 05:48:12 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code,
|
|
|
|
* released March 31, 1998.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
1999-11-06 03:43:54 +00:00
|
|
|
* Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
1999-07-06 05:48:12 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* Contributor(s):
|
1999-07-06 05:48:12 +00:00
|
|
|
* Daniel Veditz <dveditz@netscape.com>
|
|
|
|
*/
|
|
|
|
|
1999-07-12 15:20:54 +00:00
|
|
|
#include "nsString.h"
|
1999-07-06 05:48:12 +00:00
|
|
|
#include "nsStubNotifier.h"
|
|
|
|
|
1999-10-09 21:37:21 +00:00
|
|
|
extern PRInt32 gInstallStatus;
|
1999-07-06 05:48:12 +00:00
|
|
|
|
2000-05-05 06:23:11 +00:00
|
|
|
nsStubListener::nsStubListener( pfnXPIProgress aProgress )
|
1999-10-09 21:37:21 +00:00
|
|
|
: m_progress(aProgress)
|
1999-07-06 05:48:12 +00:00
|
|
|
{
|
|
|
|
NS_INIT_ISUPPORTS();
|
|
|
|
}
|
|
|
|
|
2000-05-05 06:23:11 +00:00
|
|
|
nsStubListener::~nsStubListener()
|
1999-07-06 05:48:12 +00:00
|
|
|
{}
|
|
|
|
|
2000-05-05 06:23:11 +00:00
|
|
|
NS_IMPL_ISUPPORTS(nsStubListener, NS_GET_IID(nsIXPIListener));
|
1999-07-06 05:48:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-05-05 06:23:11 +00:00
|
|
|
nsStubListener::BeforeJavascriptEvaluation(const PRUnichar *URL)
|
1999-07-06 05:48:12 +00:00
|
|
|
{
|
|
|
|
// we're not interested in this one
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-05-05 06:23:11 +00:00
|
|
|
nsStubListener::AfterJavascriptEvaluation(const PRUnichar *URL)
|
1999-07-06 05:48:12 +00:00
|
|
|
{
|
|
|
|
// we're not interested in this one
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-05-05 06:23:11 +00:00
|
|
|
nsStubListener::InstallStarted(const PRUnichar *URL, const PRUnichar* UIPackageName)
|
1999-07-06 05:48:12 +00:00
|
|
|
{
|
1999-10-09 21:37:21 +00:00
|
|
|
// we're not interested in this one
|
1999-07-06 05:48:12 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-05-05 06:23:11 +00:00
|
|
|
nsStubListener::ItemScheduled(const PRUnichar* message )
|
1999-07-06 05:48:12 +00:00
|
|
|
{
|
|
|
|
if (m_progress)
|
2000-04-18 05:46:08 +00:00
|
|
|
{
|
|
|
|
nsCAutoString messageCStr;
|
|
|
|
messageCStr.AssignWithConversion(message);
|
|
|
|
m_progress( messageCStr, 0, 0 );
|
|
|
|
}
|
1999-07-12 15:20:54 +00:00
|
|
|
return NS_OK;
|
1999-07-06 05:48:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-05-05 06:23:11 +00:00
|
|
|
nsStubListener::FinalizeProgress(const PRUnichar* message, PRInt32 itemNum, PRInt32 totNum )
|
1999-07-06 05:48:12 +00:00
|
|
|
{
|
|
|
|
if (m_progress)
|
2000-04-18 05:46:08 +00:00
|
|
|
{
|
|
|
|
nsCAutoString messageCStr;
|
|
|
|
messageCStr.AssignWithConversion(message);
|
|
|
|
m_progress( messageCStr, itemNum, totNum );
|
|
|
|
}
|
1999-07-12 15:20:54 +00:00
|
|
|
return NS_OK;
|
1999-07-06 05:48:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-05-05 06:23:11 +00:00
|
|
|
nsStubListener::FinalStatus(const PRUnichar *URL, PRInt32 status)
|
1999-07-06 05:48:12 +00:00
|
|
|
{
|
1999-10-09 21:37:21 +00:00
|
|
|
// if (m_final)
|
|
|
|
// m_final( nsCAutoString(URL), status );
|
|
|
|
gInstallStatus = status;
|
1999-07-06 05:48:12 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-05-05 06:23:11 +00:00
|
|
|
nsStubListener::LogComment(const PRUnichar* comment)
|
1999-07-06 05:48:12 +00:00
|
|
|
{
|
|
|
|
// we're not interested in this one
|
|
|
|
return NS_OK;
|
|
|
|
}
|