gecko-dev/modules/libjar/nsJARInputStream.cpp

111 строки
2.7 KiB
C++
Исходник Обычный вид История

/* nsJARInputStream.cpp
*
* 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 Netscape Communicator source code.
* The Initial Developer of the Original Code is Netscape Communications
* Corporation. Portions created by Netscape are
* Copyright (C) 1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Mitch Stoltz <mstoltz@netscape.com>
*/
#include "nsJARInputStream.h"
#include "zipfile.h" // defines ZIP error codes
#include "nsZipArchive.h"
/*---------------------------------------------
* nsISupports implementation
*--------------------------------------------*/
NS_IMPL_ISUPPORTS1(nsJARInputStream, nsIInputStream);
/*----------------------------------------------------------
* nsJARInputStream implementation
*--------------------------------------------------------*/
NS_IMETHODIMP
nsJARInputStream::Available(PRUint32 *_retval)
{
if (mZip == 0)
*_retval = 0;
else
*_retval = mZip->Available(mReadInfo);
return NS_OK;
}
NS_IMETHODIMP
nsJARInputStream::Read(char* buf, PRUint32 count, PRUint32 *_retval)
{
if (mZip == nsnull)
*_retval = 0;
else
{
if( (mZip->Read(mReadInfo, buf, count, _retval)) != ZIP_OK )
return NS_ERROR_FAILURE;
}
return NS_OK;
}
NS_IMETHODIMP
nsJARInputStream::Close()
{
delete mReadInfo;
return NS_OK;
}
nsresult
nsJARInputStream::Init(nsZipArchive* aZip, const char* aFilename)
{
if (aZip == 0 || aFilename == nsnull)
return NS_ERROR_NULL_POINTER;
mZip = aZip;
PRInt32 result;
result = mZip->ReadInit(aFilename, &mReadInfo);
if (result != ZIP_OK)
return NS_ERROR_FAILURE;
else
return NS_OK;
}
NS_METHOD
nsJARInputStream::Create(nsISupports* ignored, const nsIID& aIID, void* *aResult)
{
nsJARInputStream* is = new nsJARInputStream();
if (is == nsnull)
return NS_ERROR_OUT_OF_MEMORY;
NS_ADDREF(is);
nsresult rv = is->QueryInterface(aIID, aResult);
NS_RELEASE(is);
return rv;
}
//----------------------------------------------
// nsJARInputStream constructor and destructor
//----------------------------------------------
nsJARInputStream::nsJARInputStream(): mZip(0), mReadInfo(0)
{
NS_INIT_REFCNT();
}
nsJARInputStream::~nsJARInputStream()
{
if (mReadInfo != 0)
delete mReadInfo;
}