2 * Copyright 2007 Jacek Caban for CodeWeavers
3 * Copyright 2011 Owen Rudge for CodeWeavers
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #define NONAMELESSUNION
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(htmlhelp
);
35 static void free_content_item(ContentItem
*item
)
42 free_content_item(item
->child
);
44 heap_free(item
->name
);
45 heap_free(item
->local
);
46 heap_free(item
->merge
.chm_file
);
47 heap_free(item
->merge
.chm_index
);
53 static void parse_obj_node_param(ContentItem
*item
, ContentItem
*hhc_root
, const char *text
, UINT code_page
)
59 ptr
= get_attr(text
, "name", &len
);
61 WARN("name attr not found\n");
65 if(!strncasecmp("name", ptr
, len
)) {
67 }else if(!strncasecmp("merge", ptr
, len
)) {
69 }else if(!strncasecmp("local", ptr
, len
)) {
72 WARN("unhandled param %s\n", debugstr_an(ptr
, len
));
76 ptr
= get_attr(text
, "value", &len
);
78 WARN("value attr not found\n");
83 * "merge" parameter data (referencing another CHM file) can be incorporated into the "local" parameter
84 * by specifying the filename in the format:
85 * MS-ITS:file.chm::/local_path.htm
87 if(param
== &item
->local
&& strstr(ptr
, "::"))
89 const char *local
= strstr(ptr
, "::")+2;
90 int local_len
= len
-(local
-ptr
);
92 item
->local
= decode_html(local
, local_len
, code_page
);
96 *param
= decode_html(ptr
, len
, code_page
);
99 SetChmPath(&item
->merge
, hhc_root
->merge
.chm_file
, merge
);
104 static ContentItem
*parse_hhc(HHInfo
*,IStream
*,ContentItem
*,insert_type_t
*);
106 static ContentItem
*insert_item(ContentItem
*item
, ContentItem
*new_item
, insert_type_t insert_type
)
114 switch(insert_type
) {
116 item
->next
= new_item
;
120 ContentItem
*iter
= item
->child
;
123 iter
->next
= new_item
;
125 item
->child
= new_item
;
133 static ContentItem
*parse_sitemap_object(HHInfo
*info
, stream_t
*stream
, ContentItem
*hhc_root
,
134 insert_type_t
*insert_type
)
136 strbuf_t node
, node_name
;
139 *insert_type
= INSERT_NEXT
;
142 strbuf_init(&node_name
);
144 item
= heap_alloc_zero(sizeof(ContentItem
));
146 while(next_node(stream
, &node
)) {
147 get_node_name(&node
, &node_name
);
149 TRACE("%s\n", node
.buf
);
151 if(!strcasecmp(node_name
.buf
, "/object"))
153 if(!strcasecmp(node_name
.buf
, "param"))
154 parse_obj_node_param(item
, hhc_root
, node
.buf
, info
->pCHMInfo
->codePage
);
160 strbuf_free(&node_name
);
162 if(item
->merge
.chm_index
) {
163 IStream
*merge_stream
;
165 merge_stream
= GetChmStream(info
->pCHMInfo
, item
->merge
.chm_file
, &item
->merge
);
167 item
->child
= parse_hhc(info
, merge_stream
, hhc_root
, insert_type
);
168 IStream_Release(merge_stream
);
170 WARN("Could not get %s::%s stream\n", debugstr_w(item
->merge
.chm_file
),
171 debugstr_w(item
->merge
.chm_file
));
174 free_content_item(item
);
184 static ContentItem
*parse_ul(HHInfo
*info
, stream_t
*stream
, ContentItem
*hhc_root
)
186 strbuf_t node
, node_name
;
187 ContentItem
*ret
= NULL
, *prev
= NULL
, *new_item
= NULL
;
191 strbuf_init(&node_name
);
193 while(next_node(stream
, &node
)) {
194 get_node_name(&node
, &node_name
);
196 TRACE("%s\n", node
.buf
);
198 if(!strcasecmp(node_name
.buf
, "object")) {
202 static const char sz_text_sitemap
[] = "text/sitemap";
204 ptr
= get_attr(node
.buf
, "type", &len
);
206 if(ptr
&& len
== sizeof(sz_text_sitemap
)-1
207 && !memcmp(ptr
, sz_text_sitemap
, len
)) {
208 new_item
= parse_sitemap_object(info
, stream
, hhc_root
, &it
);
209 prev
= insert_item(prev
, new_item
, it
);
213 }else if(!strcasecmp(node_name
.buf
, "ul")) {
214 new_item
= parse_ul(info
, stream
, hhc_root
);
215 insert_item(prev
, new_item
, INSERT_CHILD
);
216 }else if(!strcasecmp(node_name
.buf
, "/ul")) {
224 strbuf_free(&node_name
);
229 static ContentItem
*parse_hhc(HHInfo
*info
, IStream
*str
, ContentItem
*hhc_root
,
230 insert_type_t
*insert_type
)
233 strbuf_t node
, node_name
;
234 ContentItem
*ret
= NULL
, *prev
= NULL
;
236 *insert_type
= INSERT_NEXT
;
239 strbuf_init(&node_name
);
241 stream_init(&stream
, str
);
243 while(next_node(&stream
, &node
)) {
244 get_node_name(&node
, &node_name
);
246 TRACE("%s\n", node
.buf
);
248 if(!strcasecmp(node_name
.buf
, "ul")) {
249 ContentItem
*item
= parse_ul(info
, &stream
, hhc_root
);
250 prev
= insert_item(prev
, item
, INSERT_CHILD
);
253 *insert_type
= INSERT_CHILD
;
260 strbuf_free(&node_name
);
265 static void insert_content_item(HWND hwnd
, ContentItem
*parent
, ContentItem
*item
)
267 TVINSERTSTRUCTW tvis
;
269 memset(&tvis
, 0, sizeof(tvis
));
270 tvis
.u
.item
.mask
= TVIF_TEXT
|TVIF_PARAM
|TVIF_IMAGE
|TVIF_SELECTEDIMAGE
;
271 tvis
.u
.item
.cchTextMax
= strlenW(item
->name
)+1;
272 tvis
.u
.item
.pszText
= item
->name
;
273 tvis
.u
.item
.lParam
= (LPARAM
)item
;
274 tvis
.u
.item
.iImage
= item
->child
? HHTV_FOLDER
: HHTV_DOCUMENT
;
275 tvis
.u
.item
.iSelectedImage
= item
->child
? HHTV_FOLDER
: HHTV_DOCUMENT
;
276 tvis
.hParent
= parent
? parent
->id
: 0;
277 tvis
.hInsertAfter
= TVI_LAST
;
279 item
->id
= (HTREEITEM
)SendMessageW(hwnd
, TVM_INSERTITEMW
, 0, (LPARAM
)&tvis
);
282 static void fill_content_tree(HWND hwnd
, ContentItem
*parent
, ContentItem
*item
)
286 insert_content_item(hwnd
, parent
, item
);
287 fill_content_tree(hwnd
, item
, item
->child
);
289 fill_content_tree(hwnd
, parent
, item
->child
);
295 static void set_item_parents(ContentItem
*parent
, ContentItem
*item
)
298 item
->parent
= parent
;
299 set_item_parents(item
, item
->child
);
304 void InitContent(HHInfo
*info
)
307 insert_type_t insert_type
;
309 info
->content
= heap_alloc_zero(sizeof(ContentItem
));
310 SetChmPath(&info
->content
->merge
, info
->pCHMInfo
->szFile
, info
->WinType
.pszToc
);
312 stream
= GetChmStream(info
->pCHMInfo
, info
->pCHMInfo
->szFile
, &info
->content
->merge
);
314 TRACE("Could not get content stream\n");
318 info
->content
->child
= parse_hhc(info
, stream
, info
->content
, &insert_type
);
319 IStream_Release(stream
);
321 set_item_parents(NULL
, info
->content
);
322 fill_content_tree(info
->tabs
[TAB_CONTENTS
].hwnd
, NULL
, info
->content
);
325 void ReleaseContent(HHInfo
*info
)
327 free_content_item(info
->content
);
330 void ActivateContentTopic(HWND hWnd
, LPCWSTR filename
, ContentItem
*item
)
332 if (lstrcmpiW(item
->local
, filename
) == 0)
334 SendMessageW(hWnd
, TVM_SELECTITEM
, TVGN_CARET
, (LPARAM
) item
->id
);
339 ActivateContentTopic(hWnd
, filename
, item
->next
);
342 ActivateContentTopic(hWnd
, filename
, item
->child
);