What's new? | Help | Directory | Sign in
Google
             
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// Copyright 2006, Google Inc.
//
// 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 Google Inc. 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 THE AUTHOR ``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 THE AUTHOR 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.

#ifdef WINCE
// FileSubmitter is not implemented for WinCE.
#else

#include "gears/localserver/ie/file_submit_behavior.h"

const wchar_t *SubmitFileBehavior::kName_DispName = L"name";


//------------------------------------------------------------------------------
// InitFromBehaviorFactory
//------------------------------------------------------------------------------
void SubmitFileBehavior::InitFromBehaviorFactory(std::string16 &filename) {
filename_ = filename.c_str();
}


//------------------------------------------------------------------------------
// IElementBehavior::Init
//------------------------------------------------------------------------------
HRESULT SubmitFileBehavior::Init(IElementBehaviorSite *behavior_site) {
behavior_site_ = behavior_site;

// Don't allow this behavior to be attached to <input> elements. IE does
// not call GetSubmitInfo() for behaviors attached to them.
CComPtr<IHTMLElement> element;
HRESULT hr = GetHTMLElement(&element);
if (FAILED(hr)) {
return hr;
}
CComQIPtr<IHTMLInputElement> input(element);
if (input) {
LOG16((L"SubmitFileBehavior::Init"
L" - cannot attach to an <input> element\n"));
return E_FAIL;
}

return S_OK;
}


//------------------------------------------------------------------------------
// IElementBehavior::Detach
//------------------------------------------------------------------------------
HRESULT SubmitFileBehavior::Detach(void) {
Reset();
behavior_site_.Release();
return S_OK;
}


//------------------------------------------------------------------------------
// IElementBehavior::Notify
//------------------------------------------------------------------------------
HRESULT SubmitFileBehavior::Notify(long lEvent, VARIANT *var) {
if (!behavior_site_) {
return E_UNEXPECTED;
}

switch (lEvent) {
// End tag of element has been parsed (we can get at attributes)
case BEHAVIOREVENT_CONTENTREADY: {
CComVariant name_value;
HRESULT hr = GetHTMLElementAttributeValue(kName_DispName,
&name_value);
if (SUCCEEDED(hr) && (name_value.vt == VT_BSTR)) {
name_ = name_value.bstrVal;
}
return S_OK;
}

// HTML document has been parsed (we can get at the document object model)
case BEHAVIOREVENT_DOCUMENTREADY:
return S_OK;

default:
return S_OK;
}
}


//------------------------------------------------------------------------------
// IElementBehaviorSubmit::Reset
//------------------------------------------------------------------------------
HRESULT SubmitFileBehavior::Reset(void) {
return S_OK;
}


//------------------------------------------------------------------------------
// IElementBehaviorSubmit::GetSubmitInfo
//------------------------------------------------------------------------------
HRESULT SubmitFileBehavior::GetSubmitInfo(IHTMLSubmitData *submit_data) {
if (!name_ || !filename_) {
return S_OK;
}
return submit_data->appendNameFilePair(name_, filename_);
}


//------------------------------------------------------------------------------
// IDispatch::GetIDsOfNames
// Implemented to look up the IDs of the properties exposed by this behavior.
//------------------------------------------------------------------------------
HRESULT SubmitFileBehavior::GetIDsOfNames(REFIID riid,
LPOLESTR *names,
UINT num_names,
LCID lcid,
DISPID *dispids) {
if (!names || !dispids) {
return E_POINTER;
}

if (num_names == 0) {
return E_INVALIDARG; // An odd case
}

HRESULT hr = S_OK;

if (_wcsicmp(*names, kName_DispName) == 0) {
*dispids++ = kName_DispId;
hr = (num_names == 1) ? S_OK : DISP_E_UNKNOWNNAME;
} else {
*dispids++ = DISPID_UNKNOWN;
hr = DISP_E_UNKNOWNNAME;
}

for (UINT i = 1; i < num_names; ++i) {
*dispids++ = DISPID_UNKNOWN;
}

return hr;
}

//------------------------------------------------------------------------------
// IDispatch::Invoke
// Implemented to get/set the properties exposed by this behavior.
//------------------------------------------------------------------------------
HRESULT SubmitFileBehavior::Invoke(DISPID dispid,
REFIID riid,
LCID lcid,
WORD flags,
DISPPARAMS *params,
VARIANT* result,
EXCEPINFO* exceptinfo,
unsigned int *argerr) {
// Property Put
if (flags & DISPATCH_PROPERTYPUT) {
if (!params) return E_POINTER;
if ((params->cArgs != 1)
|| !params->rgvarg
|| (VT_BSTR != params->rgvarg->vt)) {
return E_INVALIDARG;
}

if (dispid == kName_DispId) {
name_ = params->rgvarg->bstrVal;
return S_OK;
} else {
return DISP_E_MEMBERNOTFOUND;
}

// Property Get
} else if (flags & DISPATCH_PROPERTYGET) {
if (!result) return E_POINTER;
VariantInit(result);

if (dispid == kName_DispId) {
return name_.CopyTo(result);
} else {
return DISP_E_MEMBERNOTFOUND;
}

// Caller is trying to invoke our property as a method
} else {
return DISP_E_MEMBERNOTFOUND;
}
}

#endif // WINCE
Show details Hide details

Change log

r2196 by gears.daemon on Jun 30, 2008   Diff
[Author: nigeltao]

FileSubmitter is now Dispatcher-based.

A few points on unifying the Firefox and
IE implementations:

* The GearsFileSubmitter (JavaScript)
object is now responsible for the
  temporary file (both its creation and
its deletion), which simplifies
  the IE-specific IElementBehavior
...
Go to: 
Project members, sign in to write a code review

Older revisions

r1361 by gears.daemon on Apr 11, 2008   Diff
[Author: cprince]

Gears Relocation: update files to
reflect new /third_party location.

...
r1354 by gears.daemon on Apr 11, 2008   Diff
[Author: cprince]

Adds support for OS-specific (browser-
agnostic) EXE targets.
Also adds a small tool to help measure
...
r687 by gears.daemon on Jan 14, 2008   Diff
[Author: steveblock]

Modifes IE code to use LOG16, rather
than ATLTRACE directly.
This allows logging to be disabled
...
All revisions of this file

File info

Size: 6985 bytes, 205 lines