blob: 143c4204a860bd41aa289e29e5904bce1ea34dde [file] [log] [blame]
/*
* Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import "config.h"
#import "NetscapePlugInStreamLoader.h"
#import "DocumentLoader.h"
#import "FrameLoader.h"
#import "ResourceError.h"
#import "ResourceResponse.h"
#import "SharedBuffer.h"
#import <wtf/PassRefPtr.h>
namespace WebCore {
NetscapePlugInStreamLoader::NetscapePlugInStreamLoader(Frame* frame, id <WebPlugInStreamLoaderDelegate> stream)
: ResourceLoader(frame, true, true)
, m_stream(stream)
{
}
NetscapePlugInStreamLoader::~NetscapePlugInStreamLoader()
{
}
PassRefPtr<NetscapePlugInStreamLoader> NetscapePlugInStreamLoader::create(Frame* frame, id <WebPlugInStreamLoaderDelegate> d)
{
return new NetscapePlugInStreamLoader(frame, d);
}
bool NetscapePlugInStreamLoader::isDone() const
{
return !m_stream;
}
void NetscapePlugInStreamLoader::releaseResources()
{
m_stream = nil;
ResourceLoader::releaseResources();
}
void NetscapePlugInStreamLoader::didReceiveResponse(const ResourceResponse& theResponse)
{
// Protect self in this delegate method since the additional processing can do
// anything including possibly getting rid of the last reference to this object.
// One example of this is Radar 3266216.
RefPtr<NetscapePlugInStreamLoader> protect(this);
[m_stream.get() startStreamWithResponse:theResponse.nsURLResponse()];
// Don't continue if the stream is cancelled in startStreamWithResponse or didReceiveResponse.
if (!m_stream)
return;
ResourceLoader::didReceiveResponse(theResponse);
if (!m_stream)
return;
if ([theResponse.nsURLResponse() isKindOfClass:[NSHTTPURLResponse class]] &&
(theResponse.httpStatusCode() >= 400 || theResponse.httpStatusCode() < 100)) {
NSError *error = frameLoader()->fileDoesNotExistError(theResponse);
[m_stream.get() cancelLoadAndDestroyStreamWithError:error];
}
}
void NetscapePlugInStreamLoader::didReceiveData(const char* data, int length, long long lengthReceived, bool allAtOnce)
{
// Protect self in this delegate method since the additional processing can do
// anything including possibly getting rid of the last reference to this object.
// One example of this is Radar 3266216.
RefPtr<NetscapePlugInStreamLoader> protect(this);
NSData *nsData = [[NSData alloc] initWithBytesNoCopy:(void*)data length:length freeWhenDone:NO];
[m_stream.get() receivedData:nsData];
[nsData release];
ResourceLoader::didReceiveData(data, length, lengthReceived, allAtOnce);
}
void NetscapePlugInStreamLoader::didFinishLoading()
{
// Calling removePlugInStreamLoader will likely result in a call to deref, so we must protect.
RefPtr<NetscapePlugInStreamLoader> protect(this);
m_documentLoader->removePlugInStreamLoader(this);
NSData *data = resourceData()->createNSData();
[m_stream.get() finishedLoadingWithData:data];
[data release];
ResourceLoader::didFinishLoading();
}
void NetscapePlugInStreamLoader::didFail(const ResourceError& error)
{
// Protect self in this delegate method since the additional processing can do
// anything including possibly getting rid of the last reference to this object.
// One example of this is Radar 3266216.
RefPtr<NetscapePlugInStreamLoader> protect(this);
m_documentLoader->removePlugInStreamLoader(this);
[m_stream.get() destroyStreamWithError:error];
ResourceLoader::didFail(error);
}
void NetscapePlugInStreamLoader::didCancel(const ResourceError& error)
{
// Calling removePlugInStreamLoader will likely result in a call to deref, so we must protect.
RefPtr<NetscapePlugInStreamLoader> protect(this);
m_documentLoader->removePlugInStreamLoader(this);
[m_stream.get() destroyStreamWithError:error];
ResourceLoader::didCancel(error);
}
}