109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)/*
209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * Copyright (C) 2014 Google Inc. All rights reserved.
309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) *
409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * modification, are permitted provided that the following conditions are
609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * met:
709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) *
809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) *     * Redistributions of source code must retain the above copyright
909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * notice, this list of conditions and the following disclaimer.
1009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) *     * Redistributions in binary form must reproduce the above
1109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * copyright notice, this list of conditions and the following disclaimer
1209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * in the documentation and/or other materials provided with the
1309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * distribution.
1409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) *     * Neither the name of Google Inc. nor the names of its
1509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * contributors may be used to endorse or promote products derived from
1609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * this software without specific prior written permission.
1709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) *
1809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) */
3009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
3109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)#ifndef WorkerLoaderClientBridgeSyncHelper_h
3209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)#define WorkerLoaderClientBridgeSyncHelper_h
3309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
3409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)#include "core/loader/ThreadableLoaderClient.h"
3509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)#include "wtf/Forward.h"
3609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)#include "wtf/Functional.h"
3709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)#include "wtf/Vector.h"
3809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
3909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)namespace blink {
4009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)class WebWaitableEvent;
4109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)}
4209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
43c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)namespace blink {
4409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
4509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)// This bridge is created and destroyed on the worker thread, but is
4609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)// passed to and used on the main thread. Each did* method records the given
4709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)// data so that they can be run on the worker thread later (by run()).
4809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)class WorkerLoaderClientBridgeSyncHelper : public ThreadableLoaderClient {
4909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)public:
5009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    static PassOwnPtr<WorkerLoaderClientBridgeSyncHelper> create(ThreadableLoaderClient&, PassOwnPtr<blink::WebWaitableEvent>);
5109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual ~WorkerLoaderClientBridgeSyncHelper();
5209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
5309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    // Called on the worker context thread.
5409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    void run();
5509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
5609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    // Called on the main thread.
5709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) OVERRIDE;
5809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void didReceiveResponse(unsigned long identifier, const ResourceResponse&) OVERRIDE;
5909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void didReceiveData(const char*, int dataLength) OVERRIDE;
6009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void didDownloadData(int dataLength) OVERRIDE;
6109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void didReceiveCachedMetadata(const char*, int dataLength) OVERRIDE;
6209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void didFinishLoading(unsigned long identifier, double finishTime) OVERRIDE;
6309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void didFail(const ResourceError&) OVERRIDE;
6409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void didFailAccessControlCheck(const ResourceError&) OVERRIDE;
6509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void didFailRedirectCheck() OVERRIDE;
6609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
6709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)private:
6809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    WorkerLoaderClientBridgeSyncHelper(ThreadableLoaderClient&, PassOwnPtr<blink::WebWaitableEvent>);
6909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
7009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    bool m_done;
7109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    ThreadableLoaderClient& m_client;
7209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    OwnPtr<blink::WebWaitableEvent> m_event;
7309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    Vector<Vector<char>*> m_receivedData;
7409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    Vector<Closure> m_clientTasks;
7509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)};
7609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
77c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)} // namespace blink
7809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
7909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)#endif // WorkerLoaderClientBridgeSyncHelper_h
80