18e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project/*
28e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Copyright (C) 2007 Apple Inc.  All rights reserved.
38e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
48e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * Redistribution and use in source and binary forms, with or without
58e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * modification, are permitted provided that the following conditions
68e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * are met:
78e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 1. Redistributions of source code must retain the above copyright
88e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer.
98e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * 2. Redistributions in binary form must reproduce the above copyright
108e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    notice, this list of conditions and the following disclaimer in the
118e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *    documentation and/or other materials provided with the distribution.
128e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project *
138e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
148e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
158e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
168e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
178e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
188e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
198e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
208e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
218e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
228e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
238e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
248e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project */
258e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#ifndef DefaultDownloadDelegate_h
268e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#define DefaultDownloadDelegate_h
278e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
288e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#include "WebKit.h"
290bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5Ben Murdoch#include <wtf/HashSet.h>
308e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
310bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5Ben Murdoch#if USE(CFNETWORK)
328e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#include <CFNetwork/CFURLDownloadPriv.h>
330bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5Ben Murdoch#endif
348e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
358e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectclass DefaultDownloadDelegate : public IWebDownloadDelegate
368e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project{
378e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectpublic:
388e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    static DefaultDownloadDelegate* sharedInstance();
398e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    static DefaultDownloadDelegate* createInstance();
408e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectprivate:
418e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    DefaultDownloadDelegate();
428e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    ~DefaultDownloadDelegate();
438e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectpublic:
448e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    // IUnknown
458e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
468e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual ULONG STDMETHODCALLTYPE AddRef(void);
478e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual ULONG STDMETHODCALLTYPE Release(void);
488e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
498e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    // IWebDownloadDelegate
508e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE decideDestinationWithSuggestedFilename(IWebDownload *download, BSTR filename);
518e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE didCancelAuthenticationChallenge(IWebDownload* download,  IWebURLAuthenticationChallenge* challenge);
528e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE didCreateDestination(IWebDownload* download,  BSTR destination);
538e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE didFailWithError(IWebDownload* download,  IWebError* error);
548e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE didReceiveAuthenticationChallenge(IWebDownload* download,  IWebURLAuthenticationChallenge* challenge);
558e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE didReceiveDataOfLength(IWebDownload* download,  unsigned length);
568e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE didReceiveResponse(IWebDownload* download,  IWebURLResponse* response);
578e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE shouldDecodeSourceDataOfMIMEType(IWebDownload* download,  BSTR encodingType, BOOL* shouldDecode);
588e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE willResumeWithResponse(IWebDownload* download,  IWebURLResponse* response,  long long fromByte);
598e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE willSendRequest(IWebDownload* download, IWebMutableURLRequest* request,  IWebURLResponse* redirectResponse, IWebMutableURLRequest** finalRequest);
608e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE didBegin(IWebDownload* download);
618e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    virtual HRESULT STDMETHODCALLTYPE didFinish(IWebDownload* download);
628e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
638e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    // DefaultDownloadDelegate
648e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    void registerDownload(IWebDownload*);
658e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    void unregisterDownload(IWebDownload*);
668e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Projectprotected:
678e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    ULONG m_refCount;
688e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
698e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project    HashSet<IWebDownload*> m_downloads;
708e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project};
718e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project
728e35f3cfc7fba1d1c829dc557ebad6409cbe16a2The Android Open Source Project#endif
73