зеркало из https://github.com/mozilla/pjs.git
110 строки
2.8 KiB
C++
110 строки
2.8 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();
|
||
|
|
||
|
return NS_OK;
|
||
|
}
|
||
|
|
||
|
NS_IMETHODIMP
|
||
|
nsJARInputStream::Read(char* buf, PRUint32 count, PRUint32 *_retval)
|
||
|
{
|
||
|
if (mZip == nsnull)
|
||
|
*_retval = 0;
|
||
|
else
|
||
|
{
|
||
|
if( (mZip->Read(buf, count, _retval)) != ZIP_OK )
|
||
|
return NS_ERROR_FAILURE;
|
||
|
}
|
||
|
|
||
|
return NS_OK;
|
||
|
}
|
||
|
|
||
|
NS_IMETHODIMP
|
||
|
nsJARInputStream::Close()
|
||
|
{
|
||
|
// In the future, this should tell mZip to free resources associated with reading
|
||
|
return NS_ERROR_NOT_IMPLEMENTED;
|
||
|
}
|
||
|
|
||
|
nsresult
|
||
|
nsJARInputStream::Init(nsZipArchive* aZip, const char* aFilename)
|
||
|
{
|
||
|
if (aZip == 0 || aFilename == nsnull)
|
||
|
return NS_ERROR_NULL_POINTER;
|
||
|
mZip = aZip;
|
||
|
PRInt32 result = mZip->ReadInit(aFilename);
|
||
|
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()
|
||
|
{
|
||
|
NS_INIT_REFCNT();
|
||
|
mZip = 0;
|
||
|
}
|
||
|
|
||
|
nsJARInputStream::~nsJARInputStream()
|
||
|
{
|
||
|
// In the future, this should tell mZip to free up resources associated with reading.
|
||
|
}
|
||
|
|
||
|
|