1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_FRAME_URLMON_BIND_STATUS_CALLBACK_H_
#define CHROME_FRAME_URLMON_BIND_STATUS_CALLBACK_H_
#include <atlbase.h>
#include <atlcom.h>
#include "chrome_frame/bind_status_callback_impl.h"
#include "chrome_frame/stream_impl.h"
// A fake stream class to serve cached data to arbitrary
// IBindStatusCallback
class CacheStream : public CComObjectRoot, public StreamImpl {
public:
BEGIN_COM_MAP(CacheStream)
COM_INTERFACE_ENTRY(IStream)
COM_INTERFACE_ENTRY(ISequentialStream)
END_COM_MAP()
CacheStream() : cache_(NULL), size_(0), position_(0) {
}
void Initialize(const char* cache, size_t size);
static HRESULT BSCBFeedData(IBindStatusCallback* bscb, const char* data,
size_t size, CLIPFORMAT clip_format,
size_t flags);
// IStream overrides
STDMETHOD(Read)(void* pv, ULONG cb, ULONG* read);
protected:
const char* cache_;
size_t size_;
size_t position_;
private:
DISALLOW_COPY_AND_ASSIGN(CacheStream);
};
// Utility class for data sniffing
class SniffData {
public:
SniffData() : renderer_type_(OTHER), size_(0) {}
enum RendererType {
UNDETERMINED,
CHROME,
OTHER
};
bool InitializeCache(const std::wstring& url);
HRESULT ReadIntoCache(IStream* stream, bool force_determination);
HRESULT DrainCache(IBindStatusCallback* bscb, DWORD bscf,
CLIPFORMAT clip_format);
void DetermineRendererType(bool last_chance);
bool is_undetermined() const {
return (UNDETERMINED == renderer_type_);
}
bool is_chrome() const {
return (CHROME == renderer_type_);
}
RendererType renderer_type() const {
return renderer_type_;
}
size_t size() const {
return size_;
}
bool is_cache_valid() {
return (size_ != 0);
}
ScopedComPtr<IStream> cache_;
std::wstring url_;
RendererType renderer_type_;
size_t size_;
static const size_t kMaxSniffSize = 2 * 1024;
private:
DISALLOW_COPY_AND_ASSIGN(SniffData);
};
// A wrapper for bind status callback in IMoniker::BindToStorage
class BSCBStorageBind : public BSCBImpl {
public:
typedef BSCBImpl CallbackImpl;
BSCBStorageBind() : clip_format_(CF_NULL) {}
BEGIN_COM_MAP(BSCBStorageBind)
COM_INTERFACE_ENTRY(IBindStatusCallback)
COM_INTERFACE_ENTRY_CHAIN(CallbackImpl)
END_COM_MAP()
HRESULT Initialize(IMoniker* moniker, IBindCtx* bind_ctx);
HRESULT MayPlayBack(DWORD flags);
// IBindStatusCallback
STDMETHOD(OnProgress)(ULONG progress, ULONG progress_max, ULONG status_code,
LPCWSTR status_text);
STDMETHOD(OnDataAvailable)(DWORD flags, DWORD size, FORMATETC* format_etc,
STGMEDIUM* stgmed);
STDMETHOD(OnStopBinding)(HRESULT hresult, LPCWSTR error);
protected:
SniffData data_sniffer_;
// A structure to cache the progress notifications
struct Progress {
ULONG progress_;
ULONG progress_max_;
ULONG status_code_;
std::wstring status_text_;
};
std::vector<Progress> saved_progress_;
CLIPFORMAT clip_format_;
private:
DISALLOW_COPY_AND_ASSIGN(BSCBStorageBind);
};
#endif // CHROME_FRAME_URLMON_BIND_STATUS_CALLBACK_H_
|