Make member variable private.
[wxWidgets.git] / src / unix / mimetype.cpp
CommitLineData
b13d92d1 1/////////////////////////////////////////////////////////////////////////////
7dc3cc31 2// Name: unix/mimetype.cpp
b13d92d1
VZ
3// Purpose: classes and functions to manage MIME types
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 23.09.98
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence (part of wxExtra library)
b13d92d1
VZ
10/////////////////////////////////////////////////////////////////////////////
11
2b813b73
VZ
12// known bugs; there may be others!! chris elliott, biol75@york.ac.uk 27 Mar 01
13
14// 1) .mailcap and .mimetypes can be either in a netscape or metamail format
15// and entries may get confused during writing (I've tried to fix this; please let me know
16// any files that fail)
17// 2) KDE and Gnome do not yet fully support international read/write
18// 3) Gnome key lines like open.latex."LaTeX this file"=latex %f will have odd results
19// 4) writing to files comments out the existing data; I hope this avoids losing
20// any data which we could not read, and data which we did not store like test=
21// 5) results from reading files with multiple entries (especially matches with type/* )
22// may (or may not) work for getXXX commands
23// 6) Loading the png icons in Gnome doesn't work for me...
24// 7) In Gnome, if keys.mime exists but keys.users does not, there is
25// an error message in debug mode, but the file is still written OK
26// 8) Deleting entries is only allowed from the user file; sytem wide entries
27// will be preserved during unassociate
678ebfcd
VZ
28// 9) KDE does not yet handle multiple actions; Netscape mode never will
29
30/*
31 TODO: this file is a mess, we need to split it and reformet/review
32 everything (VZ)
33 */
2b813b73 34
f6bcfd97
BP
35// ============================================================================
36// declarations
37// ============================================================================
38
39// ----------------------------------------------------------------------------
40// headers
41// ----------------------------------------------------------------------------
42
b13d92d1
VZ
43// for compilers that support precompilation, includes "wx.h".
44#include "wx/wxprec.h"
45
46#ifdef __BORLANDC__
ce4169a4 47 #pragma hdrstop
b13d92d1
VZ
48#endif
49
b13d92d1 50#ifndef WX_PRECOMP
ce4169a4
RR
51 #include "wx/defs.h"
52#endif
53
b79e32cc 54#if wxUSE_MIMETYPE && wxUSE_FILE && wxUSE_TEXTFILE
ce4169a4
RR
55
56#ifndef WX_PRECOMP
57 #include "wx/string.h"
b13d92d1
VZ
58#endif //WX_PRECOMP
59
3d05544e 60
b13d92d1 61#include "wx/log.h"
ce4169a4 62#include "wx/file.h"
b13d92d1
VZ
63#include "wx/intl.h"
64#include "wx/dynarray.h"
2432b92d 65#include "wx/confbase.h"
b13d92d1 66
7dc3cc31
VS
67#include "wx/ffile.h"
68#include "wx/textfile.h"
69#include "wx/dir.h"
70#include "wx/utils.h"
71#include "wx/tokenzr.h"
c41dbc20 72#include "wx/iconloc.h"
1d529ef7 73#include "wx/filename.h"
b13d92d1 74
7dc3cc31 75#include "wx/unix/mimetype.h"
b13d92d1
VZ
76
77// other standard headers
78#include <ctype.h>
79
2900bd1c
JJ
80#ifdef __VMS
81/* silence warnings for comparing unsigned int's <0 */
82# pragma message disable unscomzer
83#endif
84
678ebfcd
VZ
85// wxMimeTypeCommands stores the verbs defined for the given MIME type with
86// their values
87class wxMimeTypeCommands
2b813b73
VZ
88{
89public:
678ebfcd
VZ
90 wxMimeTypeCommands() { }
91
92 wxMimeTypeCommands(const wxArrayString& verbs,
93 const wxArrayString& commands)
94 : m_verbs(verbs),
95 m_commands(commands)
2b813b73 96 {
2b813b73
VZ
97 }
98
678ebfcd
VZ
99 // add a new verb with the command or replace the old value
100 void AddOrReplaceVerb(const wxString& verb, const wxString& cmd)
2b813b73 101 {
d0ee33f5 102 int n = m_verbs.Index(verb, false /* ignore case */);
678ebfcd 103 if ( n == wxNOT_FOUND )
2b813b73 104 {
678ebfcd
VZ
105 m_verbs.Add(verb);
106 m_commands.Add(cmd);
107 }
108 else
109 {
110 m_commands[n] = cmd;
2b813b73 111 }
2b813b73
VZ
112 }
113
678ebfcd 114 void Add(const wxString& s)
2b813b73 115 {
678ebfcd
VZ
116 m_verbs.Add(s.BeforeFirst(_T('=')));
117 m_commands.Add(s.AfterFirst(_T('=')));
2b813b73
VZ
118 }
119
678ebfcd
VZ
120 // access the commands
121 size_t GetCount() const { return m_verbs.GetCount(); }
122 const wxString& GetVerb(size_t n) const { return m_verbs[n]; }
123 const wxString& GetCmd(size_t n) const { return m_commands[n]; }
124
125 bool HasVerb(const wxString& verb) const
126 { return m_verbs.Index(verb) != wxNOT_FOUND; }
127
128 wxString GetCommandForVerb(const wxString& verb, size_t *idx = NULL) const
2b813b73 129 {
678ebfcd
VZ
130 wxString s;
131
132 int n = m_verbs.Index(verb);
133 if ( n != wxNOT_FOUND )
134 {
135 s = m_commands[(size_t)n];
136 if ( idx )
137 *idx = n;
138 }
139
140 return s;
2b813b73
VZ
141 }
142
678ebfcd
VZ
143 // get a "verb=command" string
144 wxString GetVerbCmd(size_t n) const
2b813b73 145 {
678ebfcd 146 return m_verbs[n] + _T('=') + m_commands[n];
2b813b73 147 }
678ebfcd
VZ
148
149private:
150 wxArrayString m_verbs,
151 m_commands;
2b813b73
VZ
152};
153
678ebfcd
VZ
154// this class extends wxTextFile
155//
156// VZ: ???
2b813b73
VZ
157class wxMimeTextFile : public wxTextFile
158{
159public:
160 // constructors
161 wxMimeTextFile () : wxTextFile () {};
162 wxMimeTextFile (const wxString& strFile) : wxTextFile (strFile) { };
163
d0ee33f5 164 int pIndexOf(const wxString & sSearch, bool bIncludeComments = false, int iStart = 0)
2b813b73
VZ
165 {
166 size_t i = iStart;
167 int nResult = wxNOT_FOUND;
168 if (i>=GetLineCount()) return wxNOT_FOUND;
169
170 wxString sTest = sSearch;
171 sTest.MakeLower();
172 wxString sLine;
173
174 if (bIncludeComments)
175 {
176 while ( (i < GetLineCount()) )
177 {
178 sLine = GetLine (i);
179 sLine.MakeLower();
180 if (sLine.Contains(sTest)) nResult = (int) i;
181 i++;
182 }
183 }
184 else
185 {
186 while ( (i < GetLineCount()) )
187 {
188 sLine = GetLine (i);
189 sLine.MakeLower();
190 if ( ! sLine.StartsWith(wxT("#")))
191 {
192 if (sLine.Contains(sTest)) nResult = (int) i;
193 }
194 i++;
195 }
196 }
197 return nResult;
198 }
199
200 bool CommentLine(int nIndex)
201 {
d0ee33f5
WS
202 if (nIndex <0) return false;
203 if (nIndex >= (int)GetLineCount() ) return false;
2b813b73 204 GetLine(nIndex) = GetLine(nIndex).Prepend(wxT("#"));
d0ee33f5 205 return true;
2b813b73
VZ
206 }
207
208 bool CommentLine(const wxString & sTest)
209 {
210 int nIndex = pIndexOf(sTest);
d0ee33f5
WS
211 if (nIndex <0) return false;
212 if (nIndex >= (int)GetLineCount() ) return false;
2b813b73 213 GetLine(nIndex) = GetLine(nIndex).Prepend(wxT("#"));
d0ee33f5 214 return true;
2b813b73
VZ
215 }
216
217 wxString GetVerb (size_t i)
218 {
2b813b73
VZ
219 if (i > GetLineCount() ) return wxEmptyString;
220 wxString sTmp = GetLine(i).BeforeFirst(wxT('='));
221 return sTmp;
222 }
223
224 wxString GetCmd (size_t i)
225 {
2b813b73
VZ
226 if (i > GetLineCount() ) return wxEmptyString;
227 wxString sTmp = GetLine(i).AfterFirst(wxT('='));
228 return sTmp;
229 }
230};
231
b12915c1
VZ
232// in case we're compiling in non-GUI mode
233class WXDLLEXPORT wxIcon;
234
f6bcfd97
BP
235// ----------------------------------------------------------------------------
236// constants
237// ----------------------------------------------------------------------------
238
239// MIME code tracing mask
240#define TRACE_MIME _T("mime")
241
678ebfcd
VZ
242// give trace messages about the results of mailcap tests
243#define TRACE_MIME_TEST _T("mimetest")
244
f6bcfd97
BP
245// ----------------------------------------------------------------------------
246// private functions
247// ----------------------------------------------------------------------------
248
249// there are some fields which we don't understand but for which we don't give
250// warnings as we know that they're not important - this function is used to
251// test for them
252static bool IsKnownUnimportantField(const wxString& field);
253
b13d92d1
VZ
254// ----------------------------------------------------------------------------
255// private classes
256// ----------------------------------------------------------------------------
257
2b813b73 258
a6c65e88 259// This class uses both mailcap and mime.types to gather information about file
b13d92d1
VZ
260// types.
261//
a6c65e88
VZ
262// The information about mailcap file was extracted from metamail(1) sources
263// and documentation and subsequently revised when I found the RFC 1524
264// describing it.
b13d92d1
VZ
265//
266// Format of mailcap file: spaces are ignored, each line is either a comment
267// (starts with '#') or a line of the form <field1>;<field2>;...;<fieldN>.
268// A backslash can be used to quote semicolons and newlines (and, in fact,
269// anything else including itself).
270//
271// The first field is always the MIME type in the form of type/subtype (see RFC
272// 822) where subtype may be '*' meaning "any". Following metamail, we accept
273// "type" which means the same as "type/*", although I'm not sure whether this
274// is standard.
275//
276// The second field is always the command to run. It is subject to
277// parameter/filename expansion described below.
278//
279// All the following fields are optional and may not be present at all. If
280// they're present they may appear in any order, although each of them should
281// appear only once. The optional fields are the following:
282// * notes=xxx is an uninterpreted string which is silently ignored
283// * test=xxx is the command to be used to determine whether this mailcap line
284// applies to our data or not. The RHS of this field goes through the
285// parameter/filename expansion (as the 2nd field) and the resulting string
286// is executed. The line applies only if the command succeeds, i.e. returns 0
287// exit code.
288// * print=xxx is the command to be used to print (and not view) the data of
289// this type (parameter/filename expansion is done here too)
290// * edit=xxx is the command to open/edit the data of this type
a6c65e88
VZ
291// * needsterminal means that a new interactive console must be created for
292// the viewer
b13d92d1
VZ
293// * copiousoutput means that the viewer doesn't interact with the user but
294// produces (possibly) a lof of lines of output on stdout (i.e. "cat" is a
295// good example), thus it might be a good idea to use some kind of paging
296// mechanism.
297// * textualnewlines means not to perform CR/LF translation (not honored)
298// * compose and composetyped fields are used to determine the program to be
299// called to create a new message pert in the specified format (unused).
300//
a6c65e88 301// Parameter/filename expansion:
b13d92d1
VZ
302// * %s is replaced with the (full) file name
303// * %t is replaced with MIME type/subtype of the entry
304// * for multipart type only %n is replaced with the nnumber of parts and %F is
305// replaced by an array of (content-type, temporary file name) pairs for all
306// message parts (TODO)
307// * %{parameter} is replaced with the value of parameter taken from
308// Content-type header line of the message.
309//
b13d92d1
VZ
310//
311// There are 2 possible formats for mime.types file, one entry per line (used
a6c65e88
VZ
312// for global mime.types and called Mosaic format) and "expanded" format where
313// an entry takes multiple lines (used for users mime.types and called
314// Netscape format).
b13d92d1
VZ
315//
316// For both formats spaces are ignored and lines starting with a '#' are
317// comments. Each record has one of two following forms:
318// a) for "brief" format:
319// <mime type> <space separated list of extensions>
ec4768ef 320// b) for "expanded" format:
1457c903
VZ
321// type=<mime type> BACKSLASH
322// desc="<description>" BACKSLASH
a6c65e88 323// exts="<comma separated list of extensions>"
b13d92d1 324//
1457c903
VZ
325// (where BACKSLASH is a literal '\\' which we can't put here because cpp
326// misinterprets it)
327//
b13d92d1
VZ
328// We try to autodetect the format of mime.types: if a non-comment line starts
329// with "type=" we assume the second format, otherwise the first one.
330
331// there may be more than one entry for one and the same mime type, to
332// choose the right one we have to run the command specified in the test
333// field on our data.
b9517a0a
VZ
334
335// ----------------------------------------------------------------------------
2b813b73 336// wxGNOME
b9517a0a
VZ
337// ----------------------------------------------------------------------------
338
339// GNOME stores the info we're interested in in several locations:
340// 1. xxx.keys files under /usr/share/mime-info
341// 2. xxx.keys files under ~/.gnome/mime-info
342//
343// The format of xxx.keys file is the following:
344//
345// mimetype/subtype:
346// field=value
347//
348// with blank lines separating the entries and indented lines starting with
349// TABs. We're interested in the field icon-filename whose value is the path
350// containing the icon.
afaee315
VZ
351//
352// Update (Chris Elliott): apparently there may be an optional "[lang]" prefix
353// just before the field name.
b9517a0a 354
b9517a0a 355
2b813b73 356bool wxMimeTypesManagerImpl::CheckGnomeDirsExist ()
678ebfcd 357{
2b813b73
VZ
358 wxString gnomedir;
359 wxGetHomeDir( &gnomedir );
360 wxString sTmp = gnomedir;
2b5f62a0 361 sTmp = sTmp + wxT("/.gnome");
2b813b73 362 if (! wxDir::Exists ( sTmp ) )
678ebfcd 363 {
2b813b73 364 if (!wxMkdir ( sTmp ))
678ebfcd 365 {
2b5f62a0 366 wxLogError(_("Failed to create directory %s/.gnome."), sTmp.c_str());
d0ee33f5 367 return false;
b9517a0a 368 }
678ebfcd 369 }
2b5f62a0 370 sTmp = sTmp + wxT("/mime-info");
2b813b73 371 if (! wxDir::Exists ( sTmp ) )
678ebfcd 372 {
2b813b73
VZ
373 if (!wxMkdir ( sTmp ))
374 {
2b5f62a0 375 wxLogError(_("Failed to create directory %s/mime-info."), sTmp.c_str());
d0ee33f5 376 return false;
b9517a0a 377 }
2b813b73 378 }
d0ee33f5 379 return true;
b9517a0a 380
2b813b73
VZ
381}
382
383
384
385bool wxMimeTypesManagerImpl::WriteGnomeKeyFile(int index, bool delete_index)
678ebfcd 386{
2b813b73
VZ
387 wxString gnomedir;
388 wxGetHomeDir( &gnomedir );
389
2b5f62a0 390 wxMimeTextFile outfile ( gnomedir + wxT("/.gnome/mime-info/user.keys"));
2b813b73
VZ
391 // if this fails probably Gnome is not installed ??
392 // create it anyway as a private mime store
393
2b5f62a0
VZ
394#if defined(__WXGTK20__) && wxUSE_UNICODE
395 if (! outfile.Open ( wxConvUTF8) )
396#else
2b813b73 397 if (! outfile.Open () )
2b5f62a0 398#endif
2b813b73 399 {
d0ee33f5
WS
400 if (delete_index) return false;
401 if (!CheckGnomeDirsExist() ) return false;
2b813b73
VZ
402 outfile.Create ();
403 }
404
405 wxString sTmp, strType = m_aTypes[index];
406 int nIndex = outfile.pIndexOf(strType);
407 if ( nIndex == wxNOT_FOUND )
678ebfcd 408 {
2b813b73
VZ
409 outfile.AddLine ( strType + wxT(':') );
410 // see file:/usr/doc/gnome-libs-devel-1.0.40/devel-docs/mime-type-handling.txt
411 // as this does not deal with internationalisation
412 // wxT( "\t[en_US]") + verb + wxT ('=') + cmd + wxT(" %f");
678ebfcd
VZ
413 wxMimeTypeCommands * entries = m_aEntries[index];
414 size_t count = entries->GetCount();
415 for ( size_t i = 0; i < count; i++ )
416 {
417 sTmp = entries->GetVerbCmd(i);
2b813b73
VZ
418 sTmp.Replace( wxT("%s"), wxT("%f") );
419 sTmp = wxT ( "\t") + sTmp;
420 outfile.AddLine ( sTmp );
678ebfcd 421 }
2b813b73
VZ
422 //for international use do something like this
423 //outfile.AddLine ( wxString( "\t[en_US]icon-filename=") + cmd );
424 outfile.AddLine ( wxT( "\ticon-filename=") + m_aIcons[index] );
678ebfcd
VZ
425 }
426 else
427 {
428 if (delete_index)
429 outfile.CommentLine(nIndex);
430
431 wxMimeTypeCommands sOld;
2b813b73 432 size_t nOld = nIndex + 1;
d0ee33f5
WS
433 bool oldEntryEnd = false;
434 while ( (nOld < outfile.GetLineCount() )&& (!oldEntryEnd))
678ebfcd 435 {
2b813b73
VZ
436 sTmp = outfile.GetLine(nOld);
437 if ( (sTmp[0u] == wxT('\t')) || (sTmp[0u] == wxT('#')) )
678ebfcd 438 {
2b813b73
VZ
439 // we have another line to deal with
440 outfile.CommentLine(nOld);
441 nOld ++;
442 // add the line to our store
678ebfcd
VZ
443 if ((!delete_index) && (sTmp[0u] == wxT('\t')))
444 sOld.Add(sTmp);
b9517a0a 445 }
678ebfcd
VZ
446 // next mimetpye ??or blank line
447 else
d0ee33f5 448 oldEntryEnd = true;
678ebfcd 449 }
2b813b73
VZ
450 // list of entries in our data; these should all be in sOld,
451 // though sOld may also contain other entries , eg flags
452 if (!delete_index)
678ebfcd
VZ
453 {
454 wxMimeTypeCommands * entries = m_aEntries[index];
2b813b73
VZ
455 size_t i;
456 for (i=0; i < entries->GetCount(); i++)
678ebfcd 457 {
2b813b73 458 // replace any entries in sold that match verbs we know
678ebfcd 459 sOld.AddOrReplaceVerb ( entries->GetVerb(i), entries->GetCmd (i) );
b9517a0a 460 }
2b813b73 461 //sOld should also contain the icon
678ebfcd 462 if ( !m_aIcons[index].empty() )
2b5f62a0 463 sOld.AddOrReplaceVerb ( wxT("icon-filename"), m_aIcons[index] );
b9517a0a 464
2b813b73 465 for (i=0; i < sOld.GetCount(); i++)
678ebfcd
VZ
466 {
467 sTmp = sOld.GetVerbCmd(i);
2b813b73 468 sTmp.Replace( wxT("%s"), wxT("%f") );
2b5f62a0 469 sTmp = wxT("\t") + sTmp;
2b813b73
VZ
470 nIndex ++;
471 outfile.InsertLine ( sTmp, nIndex );
2b813b73
VZ
472 }
473 }
678ebfcd 474 }
2b813b73
VZ
475 bool bTmp = outfile.Write ();
476 return bTmp;
678ebfcd 477}
b9517a0a 478
b9517a0a 479
2b813b73 480bool wxMimeTypesManagerImpl::WriteGnomeMimeFile(int index, bool delete_index)
678ebfcd 481{
2b813b73
VZ
482 wxString gnomedir;
483 wxGetHomeDir( &gnomedir );
afaee315 484
2b5f62a0 485 wxMimeTextFile outfile ( gnomedir + wxT("/.gnome/mime-info/user.mime"));
2b813b73
VZ
486 // if this fails probably Gnome is not installed ??
487 // create it anyway as a private mime store
488 if (! outfile.Open () )
489 {
d0ee33f5
WS
490 if (delete_index) return false;
491 if (!CheckGnomeDirsExist() ) return false;
2b813b73
VZ
492 outfile.Create ();
493 }
494 wxString strType = m_aTypes[index];
495 int nIndex = outfile.pIndexOf(strType);
496 if ( nIndex == wxNOT_FOUND )
678ebfcd 497 {
2b813b73 498 outfile.AddLine ( strType );
2b5f62a0 499 outfile.AddLine ( wxT("\text:") + m_aExtensions.Item(index) );
678ebfcd 500 }
2b813b73 501 else
678ebfcd 502 {
2b813b73 503 if (delete_index)
678ebfcd 504 {
2b813b73
VZ
505 outfile.CommentLine(nIndex);
506 outfile.CommentLine(nIndex+1);
b9517a0a
VZ
507 }
508 else
678ebfcd 509 {// check for next line being the right one to replace ??
2b813b73 510 wxString sOld = outfile.GetLine(nIndex+1);
2b5f62a0 511 if (sOld.Contains( wxT("\text: ")))
678ebfcd 512 {
2b5f62a0 513 outfile.GetLine(nIndex+1) = wxT("\text: ") + m_aExtensions.Item(index);
678ebfcd 514 }
2b813b73 515 else
b9517a0a 516 {
2b5f62a0 517 outfile.InsertLine( wxT("\text: ") + m_aExtensions.Item(index), nIndex + 1 );
b9517a0a 518 }
4d2976ad
VS
519 }
520 }
2b813b73
VZ
521 bool bTmp = outfile.Write ();
522 return bTmp;
4d2976ad
VS
523}
524
2b813b73 525
25d599ae
VS
526void wxMimeTypesManagerImpl::LoadGnomeDataFromKeyFile(const wxString& filename,
527 const wxArrayString& dirs)
4d2976ad 528{
2b813b73 529 wxTextFile textfile(filename);
2b5f62a0
VZ
530#if defined(__WXGTK20__) && wxUSE_UNICODE
531 if ( !textfile.Open( wxConvUTF8) )
532#else
2b813b73 533 if ( !textfile.Open() )
2b5f62a0 534#endif
2b813b73
VZ
535 return;
536 wxLogTrace(TRACE_MIME, wxT("--- Opened Gnome file %s ---"),
678ebfcd 537 filename.c_str());
4d2976ad 538
2b813b73
VZ
539 // values for the entry being parsed
540 wxString curMimeType, curIconFile;
678ebfcd 541 wxMimeTypeCommands * entry = new wxMimeTypeCommands;
4d2976ad 542
2b813b73
VZ
543 // these are always empty in this file
544 wxArrayString strExtensions;
545 wxString strDesc;
4d2976ad 546
2b813b73
VZ
547 const wxChar *pc;
548 size_t nLineCount = textfile.GetLineCount();
549 size_t nLine = 0;
550 while ( nLine < nLineCount)
678ebfcd 551 {
2b813b73
VZ
552 pc = textfile[nLine].c_str();
553 if ( *pc != _T('#') )
678ebfcd 554 {
4d2976ad 555
2b813b73 556 wxLogTrace(TRACE_MIME, wxT("--- Reading from Gnome file %s '%s' ---"),
678ebfcd 557 filename.c_str(),pc);
4d2976ad 558
2b813b73
VZ
559 wxString sTmp(pc);
560 if (sTmp.Contains(wxT("=")) )
561 {
25d599ae 562 // GNOME 1:
678ebfcd 563 if (sTmp.Contains( wxT("icon-filename=") ) )
2b813b73 564 {
678ebfcd 565 curIconFile = sTmp.AfterFirst(wxT('='));
2b813b73 566 }
25d599ae
VS
567 // GNOME 2:
568 else if (sTmp.Contains( wxT("icon_filename=") ) )
569 {
570 curIconFile = sTmp.AfterFirst(wxT('='));
d0ee33f5 571
25d599ae
VS
572 if (!wxFileExists(curIconFile))
573 {
574 size_t nDirs = dirs.GetCount();
575 for (size_t nDir = 0; nDir < nDirs; nDir++)
576 {
1d529ef7 577 wxFileName newFile( curIconFile );
10274336
RR
578 newFile.SetPath( dirs[nDir] );
579 newFile.AppendDir( wxT("pixmaps") );
580 newFile.AppendDir( wxT("document-icons") );
581 newFile.SetExt( wxT("png") );
1d529ef7
RR
582 if (newFile.FileExists())
583 curIconFile = newFile.GetFullPath();
25d599ae
VS
584 }
585 }
586 }
678ebfcd
VZ
587 else //: some other field,
588 {
589 //may contain lines like this (RH7)
590 // \t[lang]open.tex."TeX this file"=tex %f
591 // \tflags.tex.flags=needsterminal
592 // \topen.latex."LaTeX this file"=latex %f
593 // \tflags.latex.flags=needsterminal
594
595 // \topen=xdvi %f
596 // \tview=xdvi %f
597 // \topen.convert.Convert file to Postscript=dvips %f -o `basename %f .dvi`.ps
598
599 // for now ignore lines with flags in...FIX
600 sTmp = sTmp.AfterLast(wxT(']'));
601 sTmp = sTmp.AfterLast(wxT('\t'));
d0ee33f5 602 sTmp.Trim(false).Trim();
678ebfcd
VZ
603 if (0 == sTmp.Replace ( wxT("%f"), wxT("%s") )) sTmp = sTmp + wxT(" %s");
604 entry->Add(sTmp);
4d2976ad 605
2b813b73
VZ
606 }
607
608 } // emd of has an equals sign
609 else
678ebfcd 610 {
2b813b73
VZ
611 // not a comment and not an equals sign
612 if (sTmp.Contains(wxT('/')))
678ebfcd 613 {
2b813b73
VZ
614 // this is the start of the new mimetype
615 // overwrite any existing data
678ebfcd
VZ
616 if (! curMimeType.empty())
617 {
2b813b73
VZ
618 AddToMimeData ( curMimeType, curIconFile, entry, strExtensions, strDesc);
619
620 // now get ready for next bit
678ebfcd 621 entry = new wxMimeTypeCommands;
2b813b73 622 }
678ebfcd
VZ
623 curMimeType = sTmp.BeforeFirst(wxT(':'));
624 }
625 }
2b813b73 626 } // end of not a comment
678ebfcd
VZ
627 // ignore blank lines
628 nLine ++;
2b813b73 629 } // end of while, save any data
d0ee33f5 630
678ebfcd 631 if (! curMimeType.empty())
2b813b73 632 AddToMimeData ( curMimeType, curIconFile, entry, strExtensions, strDesc);
4d2976ad
VS
633}
634
635
2b813b73
VZ
636
637void wxMimeTypesManagerImpl::LoadGnomeMimeTypesFromMimeFile(const wxString& filename)
4d2976ad
VS
638{
639 wxTextFile textfile(filename);
640 if ( !textfile.Open() )
641 return;
2b6d8c00
VZ
642
643 wxLogTrace(TRACE_MIME,
644 wxT("--- Opened Gnome file %s ---"),
645 filename.c_str());
4d2976ad
VS
646
647 // values for the entry being parsed
648 wxString curMimeType, curExtList;
649
650 const wxChar *pc;
651 size_t nLineCount = textfile.GetLineCount();
678ebfcd 652 for ( size_t nLine = 0;; nLine++ )
4d2976ad
VS
653 {
654 if ( nLine < nLineCount )
655 {
656 pc = textfile[nLine].c_str();
2b5f62a0 657 if ( *pc == wxT('#') )
4d2976ad
VS
658 {
659 // skip comments
660 continue;
661 }
662 }
663 else
664 {
665 // so that we will fall into the "if" below
666 pc = NULL;
667 }
b9517a0a 668
4d2976ad
VS
669 if ( !pc || !*pc )
670 {
671 // end of the entry
d0ee33f5 672 if ( !curMimeType.empty() && !curExtList.empty() )
b9517a0a 673 {
2b6d8c00
VZ
674 wxLogTrace(TRACE_MIME,
675 wxT("--- At end of Gnome file finding mimetype %s ---"),
676 curMimeType.c_str());
d0ee33f5 677
2b813b73 678 AddMimeTypeInfo(curMimeType, curExtList, wxEmptyString);
4d2976ad 679 }
b9517a0a 680
4d2976ad
VS
681 if ( !pc )
682 {
683 // the end - this can only happen if nLine == nLineCount
b9517a0a
VZ
684 break;
685 }
4d2976ad
VS
686
687 curExtList.Empty();
688
689 continue;
690 }
691
692 // what do we have here?
2b5f62a0 693 if ( *pc == wxT('\t') )
4d2976ad
VS
694 {
695 // this is a field=value ling
696 pc++; // skip leading TAB
697
2b6d8c00
VZ
698 static const int lenField = 5; // strlen("ext: ")
699 if ( wxStrncmp(pc, wxT("ext: "), lenField) == 0 )
4d2976ad 700 {
2b6d8c00
VZ
701 // skip it and take everything left until the end of line
702 curExtList = pc + lenField;
4d2976ad
VS
703 }
704 //else: some other field, we don't care
705 }
706 else
707 {
708 // this is the start of the new section
2b6d8c00
VZ
709 wxLogTrace(TRACE_MIME,
710 wxT("--- In Gnome file finding mimetype %s ---"),
711 curMimeType.c_str());
2b813b73 712
678ebfcd
VZ
713 if (! curMimeType.empty())
714 AddMimeTypeInfo(curMimeType, curExtList, wxEmptyString);
2b813b73 715
4d2976ad
VS
716 curMimeType.Empty();
717
2b5f62a0 718 while ( *pc != wxT(':') && *pc != wxT('\0') )
4d2976ad
VS
719 {
720 curMimeType += *pc++;
721 }
b9517a0a
VZ
722 }
723 }
724}
725
4d2976ad 726
25d599ae
VS
727void wxMimeTypesManagerImpl::LoadGnomeMimeFilesFromDir(
728 const wxString& dirbase, const wxArrayString& dirs)
b9517a0a 729{
d0ee33f5 730 wxASSERT_MSG( !dirbase.empty() && !wxEndsWithPathSeparator(dirbase),
b9517a0a
VZ
731 _T("base directory shouldn't end with a slash") );
732
733 wxString dirname = dirbase;
2b5f62a0 734 dirname << wxT("/mime-info");
d0ee33f5 735
b9517a0a
VZ
736 if ( !wxDir::Exists(dirname) )
737 return;
738
739 wxDir dir(dirname);
740 if ( !dir.IsOpened() )
741 return;
742
743 // we will concatenate it with filename to get the full path below
2b5f62a0 744 dirname += wxT('/');
b9517a0a
VZ
745
746 wxString filename;
1d529ef7
RR
747 bool cont;
748 cont = dir.GetFirst(&filename, _T("*.mime"), wxDIR_FILES);
b9517a0a
VZ
749 while ( cont )
750 {
2b813b73 751 LoadGnomeMimeTypesFromMimeFile(dirname + filename);
b9517a0a
VZ
752
753 cont = dir.GetNext(&filename);
754 }
fb5ddb4c 755
2b813b73
VZ
756 cont = dir.GetFirst(&filename, _T("*.keys"), wxDIR_FILES);
757 while ( cont )
b9517a0a 758 {
25d599ae 759 LoadGnomeDataFromKeyFile(dirname + filename, dirs);
b9517a0a 760
2b813b73
VZ
761 cont = dir.GetNext(&filename);
762 }
b9517a0a 763
1d529ef7
RR
764 // Hack alert: We scan all icons and deduce the
765 // mime-type from the file name.
766 dirname = dirbase;
767 dirname << wxT("/pixmaps/document-icons");
d0ee33f5 768
1d529ef7
RR
769 // these are always empty in this file
770 wxArrayString strExtensions;
771 wxString strDesc;
d0ee33f5 772
1d529ef7 773 if ( !wxDir::Exists(dirname) )
ca06ee0d
RR
774 {
775 // Jst test for default GPE dir also
776 dirname = wxT("/usr/share/gpe/pixmaps/default/filemanager/document-icons");
d0ee33f5 777
ca06ee0d
RR
778 if ( !wxDir::Exists(dirname) )
779 return;
780 }
4d2976ad 781
1d529ef7 782 wxDir dir2( dirname );
2b813b73 783
1d529ef7
RR
784 cont = dir2.GetFirst(&filename, wxT("gnome-*.png"), wxDIR_FILES);
785 while ( cont )
786 {
10274336
RR
787 wxString mimeType = filename;
788 mimeType.Remove( 0, 6 ); // remove "gnome-"
789 mimeType.Remove( mimeType.Len()-4, 4 ); // remove ".png"
790 int pos = mimeType.Find( wxT("-") );
791 if (pos != wxNOT_FOUND)
792 {
793 mimeType.SetChar( pos, wxT('/') );
794 wxString iconFile = dirname;
795 iconFile << wxT("/");
796 iconFile << filename;
d0ee33f5 797 AddToMimeData ( mimeType, iconFile, NULL, strExtensions, strDesc, true );
10274336 798 }
1d529ef7
RR
799
800 cont = dir2.GetNext(&filename);
801 }
802}
2b813b73
VZ
803
804void wxMimeTypesManagerImpl::GetGnomeMimeInfo(const wxString& sExtraDir)
4d2976ad 805{
4d2976ad 806 wxArrayString dirs;
d0ee33f5 807
10274336
RR
808 wxString gnomedir = wxGetenv( wxT("GNOMEDIR") );;
809 if (!gnomedir.empty())
810 {
811 gnomedir << wxT("/share");
812 dirs.Add( gnomedir );
813 }
814
2b5f62a0
VZ
815 dirs.Add(wxT("/usr/share"));
816 dirs.Add(wxT("/usr/local/share"));
d0ee33f5 817
10274336
RR
818 gnomedir = wxGetHomeDir();
819 gnomedir << wxT("/.gnome");
4d2976ad 820 dirs.Add( gnomedir );
d0ee33f5 821
678ebfcd 822 if (!sExtraDir.empty()) dirs.Add( sExtraDir );
4d2976ad
VS
823
824 size_t nDirs = dirs.GetCount();
825 for ( size_t nDir = 0; nDir < nDirs; nDir++ )
826 {
25d599ae 827 LoadGnomeMimeFilesFromDir(dirs[nDir], dirs);
4d2976ad
VS
828 }
829}
830
b9517a0a 831// ----------------------------------------------------------------------------
678ebfcd 832// KDE
b9517a0a
VZ
833// ----------------------------------------------------------------------------
834
678ebfcd 835
b9517a0a
VZ
836// KDE stores the icon info in its .kdelnk files. The file for mimetype/subtype
837// may be found in either of the following locations
838//
509a6196 839// 1. $KDEDIR/share/mimelnk/mimetype/subtype.kdelnk
b9517a0a
VZ
840// 2. ~/.kde/share/mimelnk/mimetype/subtype.kdelnk
841//
842// The format of a .kdelnk file is almost the same as the one used by
843// wxFileConfig, i.e. there are groups, comments and entries. The icon is the
844// value for the entry "Type"
845
2b813b73
VZ
846// kde writing; see http://webcvs.kde.org/cgi-bin/cvsweb.cgi/~checkout~/kdelibs/kio/DESKTOP_ENTRY_STANDARD
847// for now write to .kdelnk but should eventually do .desktop instead (in preference??)
848
10274336
RR
849bool wxMimeTypesManagerImpl::CheckKDEDirsExist ( const wxString &sOK, const wxString &sTest )
850{
678ebfcd 851 if (sTest.empty())
10274336
RR
852 {
853 if (wxDir::Exists(sOK))
d0ee33f5 854 return true;
10274336 855 else
d0ee33f5 856 return false;
10274336 857 }
2b813b73 858 else
10274336
RR
859 {
860 wxString sStart = sOK + wxT("/") + sTest.BeforeFirst(wxT('/'));
861 if (!wxDir::Exists(sStart)) wxMkdir(sStart);
862 wxString sEnd = sTest.AfterFirst(wxT('/'));
863 return CheckKDEDirsExist(sStart, sEnd);
2b813b73
VZ
864 }
865}
866
867bool wxMimeTypesManagerImpl::WriteKDEMimeFile(int index, bool delete_index)
868{
869 wxMimeTextFile appoutfile, mimeoutfile;
870 wxString sHome = wxGetHomeDir();
871 wxString sTmp = wxT(".kde/share/mimelnk/");
678ebfcd 872 wxString sMime = m_aTypes[index];
2b813b73
VZ
873 CheckKDEDirsExist (sHome, sTmp + sMime.BeforeFirst(wxT('/')) );
874 sTmp = sHome + wxT('/') + sTmp + sMime + wxT(".kdelnk");
875
876 bool bTemp;
877 bool bMimeExists = mimeoutfile.Open (sTmp);
878 if (!bMimeExists)
879 {
678ebfcd
VZ
880 bTemp = mimeoutfile.Create (sTmp);
881 // some unknown error eg out of disk space
d0ee33f5 882 if (!bTemp) return false;
2b813b73
VZ
883 }
884
885 sTmp = wxT(".kde/share/applnk/");
886 CheckKDEDirsExist (sHome, sTmp + sMime.AfterFirst(wxT('/')) );
887 sTmp = sHome + wxT('/') + sTmp + sMime.AfterFirst(wxT('/')) + wxT(".kdelnk");
888
889 bool bAppExists;
890 bAppExists = appoutfile.Open (sTmp);
891 if (!bAppExists)
892 {
893 bTemp = appoutfile.Create (sTmp);
894 // some unknown error eg out of disk space
d0ee33f5 895 if (!bTemp) return false;
2b813b73
VZ
896 }
897
898 // fixed data; write if new file
899 if (!bMimeExists)
900 {
901 mimeoutfile.AddLine(wxT("#KDE Config File"));
902 mimeoutfile.AddLine(wxT("[KDE Desktop Entry]"));
903 mimeoutfile.AddLine(wxT("Version=1.0"));
904 mimeoutfile.AddLine(wxT("Type=MimeType"));
905 mimeoutfile.AddLine(wxT("MimeType=") + sMime);
906 }
907
908 if (!bAppExists)
909 {
910 mimeoutfile.AddLine(wxT("#KDE Config File"));
911 mimeoutfile.AddLine(wxT("[KDE Desktop Entry]"));
912 appoutfile.AddLine(wxT("Version=1.0"));
913 appoutfile.AddLine(wxT("Type=Application"));
914 appoutfile.AddLine(wxT("MimeType=") + sMime + wxT(';'));
915 }
916
917 // variable data
918 // ignore locale
919 mimeoutfile.CommentLine(wxT("Comment="));
920 if (!delete_index)
921 mimeoutfile.AddLine(wxT("Comment=") + m_aDescriptions[index]);
922 appoutfile.CommentLine(wxT("Name="));
923 if (!delete_index)
924 appoutfile.AddLine(wxT("Comment=") + m_aDescriptions[index]);
925
926 sTmp = m_aIcons[index];
927 // we can either give the full path, or the shortfilename if its in
928 // one of the directories we search
929 mimeoutfile.CommentLine(wxT("Icon=") );
930 if (!delete_index) mimeoutfile.AddLine(wxT("Icon=") + sTmp );
931 appoutfile.CommentLine(wxT("Icon=") );
932 if (!delete_index) appoutfile.AddLine(wxT("Icon=") + sTmp );
933
934 sTmp = wxT(" ") + m_aExtensions[index];
935
936 wxStringTokenizer tokenizer(sTmp, _T(" "));
937 sTmp = wxT("Patterns=");
938 mimeoutfile.CommentLine(sTmp);
939 while ( tokenizer.HasMoreTokens() )
940 {
941 // holds an extension; need to change it to *.ext;
942 wxString e = wxT("*.") + tokenizer.GetNextToken() + wxT(";");
943 sTmp = sTmp + e;
678ebfcd 944 }
2b813b73
VZ
945 if (!delete_index) mimeoutfile.AddLine(sTmp);
946
678ebfcd 947 wxMimeTypeCommands * entries = m_aEntries[index];
2b813b73 948 // if we don't find open just have an empty string ... FIX this
678ebfcd 949 sTmp = entries->GetCommandForVerb(_T("open"));
2b813b73
VZ
950 sTmp.Replace( wxT("%s"), wxT("%f") );
951
952 mimeoutfile.CommentLine(wxT("DefaultApp=") );
953 if (!delete_index) mimeoutfile.AddLine(wxT("DefaultApp=") + sTmp);
954
955 sTmp.Replace( wxT("%f"), wxT("") );
956 appoutfile.CommentLine(wxT("Exec="));
957 if (!delete_index) appoutfile.AddLine(wxT("Exec=") + sTmp);
958
959 if (entries->GetCount() > 1)
678ebfcd
VZ
960 {
961 //other actions as well as open
2b813b73 962
678ebfcd 963 }
d0ee33f5
WS
964 bTemp = false;
965 if (mimeoutfile.Write ()) bTemp = true;
2b813b73 966 mimeoutfile.Close ();
d0ee33f5 967 if (appoutfile.Write ()) bTemp = true;
2b813b73
VZ
968 appoutfile.Close ();
969
970 return bTemp;
2b813b73
VZ
971}
972
973void wxMimeTypesManagerImpl::LoadKDELinksForMimeSubtype(const wxString& dirbase,
b9517a0a 974 const wxString& subdir,
cdf339c9
VS
975 const wxString& filename,
976 const wxArrayString& icondirs)
b9517a0a 977{
2b813b73
VZ
978 wxMimeTextFile file;
979 if ( !file.Open(dirbase + filename) ) return;
b9517a0a 980
25d599ae
VS
981 wxLogTrace(TRACE_MIME, wxT("loading KDE file %s"),
982 (dirbase+filename).c_str());
d0ee33f5 983
678ebfcd 984 wxMimeTypeCommands * entry = new wxMimeTypeCommands;
2b813b73
VZ
985 wxArrayString sExts;
986 wxString mimetype, mime_desc, strIcon;
987
2b5f62a0 988 int nIndex = file.pIndexOf( wxT("MimeType=") );
2b813b73 989 if (nIndex == wxNOT_FOUND)
678ebfcd
VZ
990 {
991 // construct mimetype from the directory name and the basename of the
992 // file (it always has .kdelnk extension)
2b5f62a0 993 mimetype << subdir << wxT('/') << filename.BeforeLast( wxT('.') );
678ebfcd 994 }
2b813b73 995 else mimetype = file.GetCmd (nIndex);
b9517a0a 996
276c7463
VZ
997 // first find the description string: it is the value in either "Comment="
998 // line or "Comment[<locale_name>]=" one
2b813b73 999 nIndex = wxNOT_FOUND;
276c7463
VZ
1000
1001 wxString comment;
1002#if wxUSE_INTL
1003 wxLocale *locale = wxGetLocale();
1004 if ( locale )
1005 {
1006 // try "Comment[locale name]" first
1007 comment << _T("Comment[") + locale->GetName() + _T("]=");
2b813b73 1008 nIndex = file.pIndexOf(comment);
276c7463
VZ
1009 }
1010#endif // wxUSE_INTL
cdf339c9 1011
2b813b73 1012 if ( nIndex == wxNOT_FOUND )
276c7463
VZ
1013 {
1014 comment = _T("Comment=");
2b813b73 1015 nIndex = file.pIndexOf(comment);
276c7463
VZ
1016 }
1017
2b813b73 1018 if ( nIndex != wxNOT_FOUND ) mime_desc = file.GetCmd(nIndex);
276c7463 1019 //else: no description
cdf339c9 1020
276c7463
VZ
1021 // next find the extensions
1022 wxString mime_extension;
1023
2b813b73
VZ
1024 nIndex = file.pIndexOf(_T("Patterns="));
1025 if ( nIndex != wxNOT_FOUND )
678ebfcd 1026 {
d0ee33f5 1027 wxString exts = file.GetCmd (nIndex);
5bd3a2da 1028
276c7463
VZ
1029 wxStringTokenizer tokenizer(exts, _T(";"));
1030 while ( tokenizer.HasMoreTokens() )
cdf339c9 1031 {
276c7463
VZ
1032 wxString e = tokenizer.GetNextToken();
1033 if ( e.Left(2) != _T("*.") )
1034 continue; // don't support too difficult patterns
1035
1036 if ( !mime_extension.empty() )
1037 {
1038 // separate from the previous ext
1039 mime_extension << _T(' ');
1040 }
1041
cdf339c9 1042 mime_extension << e.Mid(2);
cdf339c9 1043 }
cdf339c9 1044 }
2b813b73 1045 sExts.Add(mime_extension);
5bd3a2da 1046
cdf339c9
VS
1047 // ok, now we can take care of icon:
1048
2b813b73
VZ
1049 nIndex = file.pIndexOf(_T("Icon="));
1050 if ( nIndex != wxNOT_FOUND )
b9517a0a 1051 {
2b813b73 1052 strIcon = file.GetCmd(nIndex);
25d599ae 1053 wxLogTrace(TRACE_MIME, wxT(" icon %s"), strIcon.c_str());
2b813b73 1054 //it could be the real path, but more often a short name
d0ee33f5
WS
1055
1056
2b813b73 1057 if (!wxFileExists(strIcon))
678ebfcd 1058 {
2b813b73 1059 // icon is just the short name
678ebfcd 1060 if ( !strIcon.empty() )
cdf339c9 1061 {
678ebfcd
VZ
1062 // we must check if the file exists because it may be stored
1063 // in many locations, at least ~/.kde and $KDEDIR
1064 size_t nDir, nDirs = icondirs.GetCount();
1065 for ( nDir = 0; nDir < nDirs; nDir++ )
10274336 1066 {
3d780434
RR
1067 wxFileName fnameIcon( strIcon );
1068 wxFileName fname( icondirs[nDir], fnameIcon.GetName() );
10274336 1069 fname.SetExt( wxT("png") );
1d529ef7 1070 if (fname.FileExists())
678ebfcd 1071 {
1d529ef7 1072 strIcon = fname.GetFullPath();
25d599ae 1073 wxLogTrace(TRACE_MIME, wxT(" iconfile %s"), strIcon.c_str());
678ebfcd
VZ
1074 break;
1075 }
10274336 1076 }
2b813b73 1077 }
678ebfcd
VZ
1078 }
1079 }
2b813b73
VZ
1080 // now look for lines which know about the application
1081 // exec= or DefaultApp=
1082
1083 nIndex = file.pIndexOf(wxT("DefaultApp"));
b9517a0a 1084
2b813b73 1085 if ( nIndex == wxNOT_FOUND )
678ebfcd 1086 {
2b813b73
VZ
1087 // no entry try exec
1088 nIndex = file.pIndexOf(wxT("Exec"));
678ebfcd 1089 }
2b813b73
VZ
1090
1091 if ( nIndex != wxNOT_FOUND )
678ebfcd 1092 {
2b813b73
VZ
1093 wxString sTmp = file.GetCmd(nIndex);
1094 // we expect %f; others including %F and %U and %u are possible
678ebfcd
VZ
1095 if (0 == sTmp.Replace ( wxT("%f"), wxT("%s") ))
1096 sTmp = sTmp + wxT(" %s");
1097 entry->AddOrReplaceVerb (wxString(wxT("open")), sTmp );
b9517a0a 1098 }
2b813b73
VZ
1099
1100 AddToMimeData (mimetype, strIcon, entry, sExts, mime_desc);
b9517a0a
VZ
1101}
1102
2b813b73 1103void wxMimeTypesManagerImpl::LoadKDELinksForMimeType(const wxString& dirbase,
cdf339c9
VS
1104 const wxString& subdir,
1105 const wxArrayString& icondirs)
b9517a0a
VZ
1106{
1107 wxString dirname = dirbase;
1108 dirname += subdir;
1109 wxDir dir(dirname);
1110 if ( !dir.IsOpened() )
1111 return;
1112
25d599ae
VS
1113 wxLogTrace(TRACE_MIME, wxT("--- Loading from KDE directory %s ---"),
1114 dirname.c_str());
d0ee33f5 1115
b9517a0a
VZ
1116 dirname += _T('/');
1117
1118 wxString filename;
1119 bool cont = dir.GetFirst(&filename, _T("*.kdelnk"), wxDIR_FILES);
1120 while ( cont )
1121 {
2b813b73
VZ
1122 LoadKDELinksForMimeSubtype(dirname, subdir, filename, icondirs);
1123
1124 cont = dir.GetNext(&filename);
1125 }
1126 // new standard for Gnome and KDE
1127 cont = dir.GetFirst(&filename, _T("*.desktop"), wxDIR_FILES);
1128 while ( cont )
1129 {
1130 LoadKDELinksForMimeSubtype(dirname, subdir, filename, icondirs);
b9517a0a
VZ
1131
1132 cont = dir.GetNext(&filename);
1133 }
1134}
1135
2b813b73 1136void wxMimeTypesManagerImpl::LoadKDELinkFilesFromDir(const wxString& dirbase,
cdf339c9 1137 const wxArrayString& icondirs)
b9517a0a 1138{
d0ee33f5 1139 wxASSERT_MSG( !dirbase.empty() && !wxEndsWithPathSeparator(dirbase),
b9517a0a
VZ
1140 _T("base directory shouldn't end with a slash") );
1141
1142 wxString dirname = dirbase;
1143 dirname << _T("/mimelnk");
1144
1145 if ( !wxDir::Exists(dirname) )
1146 return;
1147
1148 wxDir dir(dirname);
1149 if ( !dir.IsOpened() )
1150 return;
1151
1152 // we will concatenate it with dir name to get the full path below
1153 dirname += _T('/');
1154
1155 wxString subdir;
1156 bool cont = dir.GetFirst(&subdir, wxEmptyString, wxDIR_DIRS);
1157 while ( cont )
1158 {
2b813b73 1159 LoadKDELinksForMimeType(dirname, subdir, icondirs);
b9517a0a
VZ
1160
1161 cont = dir.GetNext(&subdir);
1162 }
1163}
1164
2b813b73 1165void wxMimeTypesManagerImpl::GetKDEMimeInfo(const wxString& sExtraDir)
b9517a0a
VZ
1166{
1167 wxArrayString dirs;
cdf339c9 1168 wxArrayString icondirs;
320c341a
VS
1169
1170 // FIXME: This code is heavily broken. There are three bugs in it:
1171 // 1) it uses only KDEDIR, which is deprecated, instead of using
1172 // list of paths from KDEDIRS and using KDEDIR only if KDEDIRS
1173 // is not set
1174 // 2) it doesn't look into ~/.kde/share/config/kdeglobals where
1175 // user's settings are stored and thus *ignores* user's settings
1176 // instead of respecting them
1177 // 3) it "tries to guess KDEDIR" and "tries a few likely theme
1178 // names", both of which is completely arbitrary; instead, the
1179 // code should give up if KDEDIR(S) is not set and/or the icon
1180 // theme cannot be determined, because it means that the user is
1181 // not using KDE (and thus is not interested in KDE icons anyway)
d0ee33f5 1182
10274336
RR
1183 // the variable $KDEDIR is set when KDE is running
1184 wxString kdedir = wxGetenv( wxT("KDEDIR") );
d0ee33f5 1185
10274336 1186 if (!kdedir.empty())
1d529ef7 1187 {
10274336
RR
1188 // $(KDEDIR)/share/config/kdeglobals holds info
1189 // the current icons theme
1190 wxFileName configFile( kdedir, wxEmptyString );
1191 configFile.AppendDir( wxT("share") );
1192 configFile.AppendDir( wxT("config") );
1193 configFile.SetName( wxT("kdeglobals") );
d0ee33f5 1194
320c341a
VS
1195 wxTextFile config;
1196 if (configFile.FileExists() && config.Open(configFile.GetFullPath()))
10274336 1197 {
10274336
RR
1198 // $(KDEDIR)/share/config -> $(KDEDIR)/share
1199 configFile.RemoveDir( configFile.GetDirCount()-1 );
1200 // $(KDEDIR)/share/ -> $(KDEDIR)/share/icons
1201 configFile.AppendDir( wxT("icons") );
1202
1203 // Check for entry
320c341a
VS
1204 wxString theme(wxT("default.kde"));
1205 size_t cnt = config.GetLineCount();
1206 for (size_t i = 0; i < cnt; i++)
1207 {
1208 if (config[i].StartsWith(wxT("Theme="), &theme/*rest*/))
1209 break;
1210 }
1211 configFile.AppendDir(theme);
10274336
RR
1212 }
1213 else
1214 {
1215 // $(KDEDIR)/share/config -> $(KDEDIR)/share
1216 configFile.RemoveDir( configFile.GetDirCount()-1 );
1217 // $(KDEDIR)/share/ -> $(KDEDIR)/share/icons
1218 configFile.AppendDir( wxT("icons") );
1219 // $(KDEDIR)/share/icons -> $(KDEDIR)/share/icons/default.kde
1220 configFile.AppendDir( wxT("default.kde") );
1221 }
d0ee33f5 1222
10274336 1223 configFile.SetName( wxEmptyString );
16c587ca
RR
1224 configFile.AppendDir( wxT("32x32") );
1225 configFile.AppendDir( wxT("mimetypes") );
d0ee33f5 1226
10274336 1227 // Just try a few likely icons theme names
d0ee33f5 1228
16c587ca 1229 int pos = configFile.GetDirCount()-3;
d0ee33f5 1230
10274336
RR
1231 if (!wxDir::Exists(configFile.GetPath()))
1232 {
16c587ca
RR
1233 configFile.RemoveDir( pos );
1234 configFile.InsertDir( pos, wxT("default.kde") );
10274336 1235 }
d0ee33f5 1236
10274336
RR
1237 if (!wxDir::Exists(configFile.GetPath()))
1238 {
16c587ca
RR
1239 configFile.RemoveDir( pos );
1240 configFile.InsertDir( pos, wxT("default") );
10274336 1241 }
d0ee33f5 1242
10274336
RR
1243 if (!wxDir::Exists(configFile.GetPath()))
1244 {
16c587ca
RR
1245 configFile.RemoveDir( pos );
1246 configFile.InsertDir( pos, wxT("crystalsvg") );
10274336 1247 }
d0ee33f5 1248
10274336
RR
1249 if (!wxDir::Exists(configFile.GetPath()))
1250 {
16c587ca
RR
1251 configFile.RemoveDir( pos );
1252 configFile.InsertDir( pos, wxT("crystal") );
10274336 1253 }
d0ee33f5 1254
10274336 1255 if (wxDir::Exists(configFile.GetPath()))
10274336 1256 icondirs.Add( configFile.GetFullPath() );
1d529ef7 1257 }
cdf339c9
VS
1258
1259 // settings in ~/.kde have maximal priority
2b5f62a0
VZ
1260 dirs.Add(wxGetHomeDir() + wxT("/.kde/share"));
1261 icondirs.Add(wxGetHomeDir() + wxT("/.kde/share/icons/"));
509a6196 1262
10274336 1263 if (kdedir)
509a6196 1264 {
2b5f62a0
VZ
1265 dirs.Add( wxString(kdedir) + wxT("/share") );
1266 icondirs.Add( wxString(kdedir) + wxT("/share/icons/") );
509a6196
VZ
1267 }
1268 else
1269 {
1270 // try to guess KDEDIR
1271 dirs.Add(_T("/usr/share"));
1272 dirs.Add(_T("/opt/kde/share"));
cdf339c9 1273 icondirs.Add(_T("/usr/share/icons/"));
13e3b45a 1274 icondirs.Add(_T("/usr/X11R6/share/icons/")); // Debian/Corel linux
cdf339c9 1275 icondirs.Add(_T("/opt/kde/share/icons/"));
509a6196
VZ
1276 }
1277
678ebfcd 1278 if (!sExtraDir.empty()) dirs.Add (sExtraDir);
2b813b73
VZ
1279 icondirs.Add(sExtraDir + wxT("/icons"));
1280
b9517a0a
VZ
1281 size_t nDirs = dirs.GetCount();
1282 for ( size_t nDir = 0; nDir < nDirs; nDir++ )
1283 {
2b813b73 1284 LoadKDELinkFilesFromDir(dirs[nDir], icondirs);
b9517a0a 1285 }
b9517a0a
VZ
1286}
1287
2b813b73
VZ
1288// ----------------------------------------------------------------------------
1289// wxFileTypeImpl (Unix)
1290// ----------------------------------------------------------------------------
1291
2b813b73 1292wxString wxFileTypeImpl::GetExpandedCommand(const wxString & verb, const wxFileType::MessageParameters& params) const
b9517a0a 1293{
2b813b73
VZ
1294 wxString sTmp;
1295 size_t i = 0;
678ebfcd 1296 while ( (i < m_index.GetCount() ) && sTmp.empty() )
b9517a0a 1297 {
2b813b73
VZ
1298 sTmp = m_manager->GetCommand ( verb, m_index[i] );
1299 i ++;
b9517a0a
VZ
1300 }
1301
2b813b73
VZ
1302 return wxFileType::ExpandCommand(sTmp, params);
1303}
b9517a0a 1304
da0766ab 1305bool wxFileTypeImpl::GetIcon(wxIconLocation *iconLoc) const
2b813b73
VZ
1306
1307{
1308 wxString sTmp;
1309 size_t i = 0;
678ebfcd 1310 while ( (i < m_index.GetCount() ) && sTmp.empty() )
c786f763
VZ
1311 {
1312 sTmp = m_manager->m_aIcons[m_index[i]];
1313 i ++;
1314 }
da0766ab 1315 if ( sTmp.empty () )
d0ee33f5 1316 return false;
b9517a0a 1317
da0766ab 1318 if ( iconLoc )
c786f763 1319 {
a49686b4 1320 iconLoc->SetFileName(sTmp);
2b813b73 1321 }
c786f763 1322
d0ee33f5 1323 return true;
c786f763 1324}
2b813b73
VZ
1325
1326
1327bool
1328wxFileTypeImpl::GetMimeTypes(wxArrayString& mimeTypes) const
1329{
1330 mimeTypes.Clear();
1331 for (size_t i = 0; i < m_index.GetCount(); i++)
1332 mimeTypes.Add(m_manager->m_aTypes[m_index[i]]);
d0ee33f5 1333 return true;
2b813b73
VZ
1334}
1335
1336
1337size_t wxFileTypeImpl::GetAllCommands(wxArrayString *verbs,
1338 wxArrayString *commands,
1339 const wxFileType::MessageParameters& params) const
1340{
1341
1342 wxString vrb, cmd, sTmp;
1343 size_t count = 0;
678ebfcd 1344 wxMimeTypeCommands * sPairs;
2b813b73
VZ
1345
1346 // verbs and commands have been cleared already in mimecmn.cpp...
1347 // if we find no entries in the exact match, try the inexact match
1348 for (size_t n = 0; ((count ==0) && (n < m_index.GetCount())); n++)
1349 {
1350 // list of verb = command pairs for this mimetype
1351 sPairs = m_manager->m_aEntries [m_index[n]];
1352 size_t i;
678ebfcd 1353 for ( i = 0; i < sPairs->GetCount (); i++ )
2b813b73
VZ
1354 {
1355 vrb = sPairs->GetVerb(i);
1356 // some gnome entries have . inside
1357 vrb = vrb.AfterLast(wxT('.'));
1358 cmd = sPairs->GetCmd (i);
678ebfcd 1359 if (! cmd.empty() )
2b813b73
VZ
1360 {
1361 cmd = wxFileType::ExpandCommand(cmd, params);
1362 count ++;
1363 if ( vrb.IsSameAs (wxT("open")))
1364 {
1365 verbs->Insert(vrb,0u);
1366 commands ->Insert(cmd,0u);
1367 }
1368 else
1369 {
1370 verbs->Add (vrb);
1371 commands->Add (cmd);
1372 }
1373 }
1374
1375 }
1376
1377 }
1378 return count;
1379
1380}
1381
1382bool wxFileTypeImpl::GetExtensions(wxArrayString& extensions)
1383{
1384 wxString strExtensions = m_manager->GetExtension(m_index[0]);
1385 extensions.Empty();
1386
1387 // one extension in the space or comma delimitid list
1388 wxString strExt;
678ebfcd 1389 for ( const wxChar *p = strExtensions;; p++ ) {
2b813b73 1390 if ( *p == wxT(' ') || *p == wxT(',') || *p == wxT('\0') ) {
678ebfcd 1391 if ( !strExt.empty() ) {
2b813b73
VZ
1392 extensions.Add(strExt);
1393 strExt.Empty();
1394 }
1395 //else: repeated spaces (shouldn't happen, but it's not that
1396 // important if it does happen)
1397
1398 if ( *p == wxT('\0') )
1399 break;
1400 }
1401 else if ( *p == wxT('.') ) {
1402 // remove the dot from extension (but only if it's the first char)
678ebfcd 1403 if ( !strExt.empty() ) {
2b813b73
VZ
1404 strExt += wxT('.');
1405 }
1406 //else: no, don't append it
1407 }
1408 else {
1409 strExt += *p;
1410 }
1411 }
1412
d0ee33f5 1413 return true;
2b813b73
VZ
1414}
1415
1416// set an arbitrary command,
1417// could adjust the code to ask confirmation if it already exists and
d0ee33f5 1418// overwriteprompt is true, but this is currently ignored as *Associate* has
2b813b73 1419// no overwrite prompt
d0ee33f5 1420bool wxFileTypeImpl::SetCommand(const wxString& cmd, const wxString& verb, bool overwriteprompt /*= true*/)
d84afea9 1421{
2b813b73 1422 wxArrayString strExtensions;
678ebfcd 1423 wxString strDesc, strIcon;
2b813b73 1424
678ebfcd 1425 wxMimeTypeCommands *entry = new wxMimeTypeCommands ();
2b813b73
VZ
1426 entry->Add(verb + wxT("=") + cmd + wxT(" %s "));
1427
1428 wxArrayString strTypes;
1429 GetMimeTypes (strTypes);
d0ee33f5 1430 if (strTypes.GetCount() < 1) return false;
2b813b73
VZ
1431
1432 size_t i;
d0ee33f5 1433 bool Ok = true;
2b813b73 1434 for (i = 0; i < strTypes.GetCount(); i++)
d84afea9 1435 {
2b813b73 1436 if (!m_manager->DoAssociation (strTypes[i], strIcon, entry, strExtensions, strDesc))
d0ee33f5 1437 Ok = false;
d84afea9 1438 }
2b813b73
VZ
1439
1440 return Ok;
d84afea9 1441}
2b813b73
VZ
1442
1443// ignore index on the grouds that we only have one icon in a Unix file
1444bool wxFileTypeImpl::SetDefaultIcon(const wxString& strIcon /*= wxEmptyString*/, int /*index = 0*/)
d84afea9 1445{
d0ee33f5 1446 if (strIcon.empty()) return false;
2b813b73
VZ
1447 wxArrayString strExtensions;
1448 wxString strDesc;
1449
678ebfcd 1450 wxMimeTypeCommands *entry = new wxMimeTypeCommands ();
2b813b73
VZ
1451
1452 wxArrayString strTypes;
1453 GetMimeTypes (strTypes);
d0ee33f5 1454 if (strTypes.GetCount() < 1) return false;
2b813b73
VZ
1455
1456 size_t i;
d0ee33f5 1457 bool Ok = true;
2b813b73 1458 for (i = 0; i < strTypes.GetCount(); i++)
d84afea9 1459 {
2b813b73 1460 if (!m_manager->DoAssociation (strTypes[i], strIcon, entry, strExtensions, strDesc))
d0ee33f5 1461 Ok = false;
d84afea9 1462 }
2b813b73
VZ
1463
1464 return Ok;
d84afea9
GD
1465}
1466
2b813b73
VZ
1467// ----------------------------------------------------------------------------
1468// wxMimeTypesManagerImpl (Unix)
1469// ----------------------------------------------------------------------------
1470
1471
1472wxMimeTypesManagerImpl::wxMimeTypesManagerImpl()
1473{
d0ee33f5 1474 m_initialized = false;
2b813b73
VZ
1475 m_mailcapStylesInited = 0;
1476}
1477
1d529ef7
RR
1478void wxMimeTypesManagerImpl::InitIfNeeded()
1479{
1480 if ( !m_initialized )
1481 {
1482 // set the flag first to prevent recursion
d0ee33f5
WS
1483 m_initialized = true;
1484
1d529ef7 1485#if 0
10274336 1486 wxString wm = wxGetenv( wxT("WINDOWMANAGER") );
d0ee33f5 1487
10274336
RR
1488 if (wm.Find( wxT("kde") ) != wxNOT_FOUND)
1489 Initialize( wxMAILCAP_KDE|wxMAILCAP_STANDARD );
1490 else if (wm.Find( wxT("gnome") ) != wxNOT_FOUND)
1491 Initialize( wxMAILCAP_GNOME|wxMAILCAP_STANDARD );
1492 else
1d529ef7 1493#endif
10274336 1494 Initialize();
1d529ef7
RR
1495 }
1496}
1497
2b813b73
VZ
1498// read system and user mailcaps and other files
1499void wxMimeTypesManagerImpl::Initialize(int mailcapStyles,
1500 const wxString& sExtraDir)
1501{
1502 // read mimecap amd mime.types
a06c1b9b
VZ
1503 if ( (mailcapStyles & wxMAILCAP_NETSCAPE) ||
1504 (mailcapStyles & wxMAILCAP_STANDARD) )
2b813b73
VZ
1505 GetMimeInfo(sExtraDir);
1506
1507 // read GNOME tables
1d529ef7 1508 if (mailcapStyles & wxMAILCAP_GNOME)
2b813b73
VZ
1509 GetGnomeMimeInfo(sExtraDir);
1510
1511 // read KDE tables
1d529ef7 1512 if (mailcapStyles & wxMAILCAP_KDE)
2b813b73
VZ
1513 GetKDEMimeInfo(sExtraDir);
1514
1515 m_mailcapStylesInited |= mailcapStyles;
1516}
1517
1518// clear data so you can read another group of WM files
1519void wxMimeTypesManagerImpl::ClearData()
1520{
1521 m_aTypes.Clear ();
1522 m_aIcons.Clear ();
1523 m_aExtensions.Clear ();
1524 m_aDescriptions.Clear ();
1525
2b5f62a0 1526 WX_CLEAR_ARRAY(m_aEntries);
678ebfcd
VZ
1527 m_aEntries.Empty();
1528
2b813b73
VZ
1529 m_mailcapStylesInited = 0;
1530}
1531
1532wxMimeTypesManagerImpl::~wxMimeTypesManagerImpl()
1533{
678ebfcd 1534 ClearData();
2b813b73
VZ
1535}
1536
1537
1538void wxMimeTypesManagerImpl::GetMimeInfo (const wxString& sExtraDir)
1539{
1540 // read this for netscape or Metamail formats
1541
1542 // directories where we look for mailcap and mime.types by default
1543 // used by netscape and pine and other mailers, using 2 different formats!
1544
1545 // (taken from metamail(1) sources)
1546 //
1547 // although RFC 1524 specifies the search path of
1548 // /etc/:/usr/etc:/usr/local/etc only, it doesn't hurt to search in more
1549 // places - OTOH, the RFC also says that this path can be changed with
1550 // MAILCAPS environment variable (containing the colon separated full
1551 // filenames to try) which is not done yet (TODO?)
1552
1553 wxString strHome = wxGetenv(wxT("HOME"));
1554
1555 wxArrayString dirs;
d353bd45 1556 dirs.Add ( strHome + wxT("/.") );
2b813b73
VZ
1557 dirs.Add ( wxT("/etc/") );
1558 dirs.Add ( wxT("/usr/etc/") );
1559 dirs.Add ( wxT("/usr/local/etc/") );
1560 dirs.Add ( wxT("/etc/mail/") );
1561 dirs.Add ( wxT("/usr/public/lib/") );
678ebfcd 1562 if (!sExtraDir.empty()) dirs.Add ( sExtraDir + wxT("/") );
2b813b73
VZ
1563
1564 size_t nDirs = dirs.GetCount();
1565 for ( size_t nDir = 0; nDir < nDirs; nDir++ )
1566 {
1567 wxString file = dirs[nDir] + wxT("mailcap");
1568 if ( wxFile::Exists(file) ) {
1569 ReadMailcap(file);
1570 }
1571
1572 file = dirs[nDir] + wxT("mime.types");
1573 if ( wxFile::Exists(file) ) {
1574 ReadMimeTypes(file);
1575 }
1576 }
1577
1578}
1579
1580bool wxMimeTypesManagerImpl::WriteToMimeTypes (int index, bool delete_index)
1581{
1582 // check we have the right manager
a06c1b9b 1583 if (! ( m_mailcapStylesInited & wxMAILCAP_STANDARD) )
d0ee33f5 1584 return false;
2b813b73
VZ
1585
1586 bool bTemp;
1587 wxString strHome = wxGetenv(wxT("HOME"));
1588
1589 // and now the users mailcap
1590 wxString strUserMailcap = strHome + wxT("/.mime.types");
1591
1592 wxMimeTextFile file;
1593 if ( wxFile::Exists(strUserMailcap) )
1594 {
1595 bTemp = file.Open(strUserMailcap);
1596 }
1597 else
1598 {
d0ee33f5 1599 if (delete_index) return false;
2b813b73
VZ
1600 bTemp = file.Create(strUserMailcap);
1601 }
1602 if (bTemp)
1603 {
1604 int nIndex;
d0ee33f5 1605 // test for netscape's header and return false if its found
2b813b73
VZ
1606 nIndex = file.pIndexOf (wxT("#--Netscape"));
1607 if (nIndex != wxNOT_FOUND)
1608 {
d0ee33f5
WS
1609 wxASSERT_MSG(false,wxT("Error in .mime.types \nTrying to mix Netscape and Metamail formats\nFile not modiifed"));
1610 return false;
2b813b73
VZ
1611 }
1612 // write it in alternative format
1613 // get rid of unwanted entries
1614 wxString strType = m_aTypes[index];
1615 nIndex = file.pIndexOf (strType);
1616 // get rid of all the unwanted entries...
1617 if (nIndex != wxNOT_FOUND) file.CommentLine (nIndex);
1618
1619 if (!delete_index)
1620 {
1621 // add the new entries in
1622 wxString sTmp = strType.Append (wxT(' '), 40-strType.Len() );
1623 sTmp = sTmp + m_aExtensions[index];
1624 file.AddLine (sTmp);
1625 }
1626
1627
1628 bTemp = file.Write ();
1629 file.Close ();
1630 }
1631 return bTemp;
1632}
1633
1634bool wxMimeTypesManagerImpl::WriteToNSMimeTypes (int index, bool delete_index)
1635{
1636 //check we have the right managers
1637 if (! ( m_mailcapStylesInited & wxMAILCAP_NETSCAPE) )
d0ee33f5 1638 return false;
2b813b73
VZ
1639
1640 bool bTemp;
1641 wxString strHome = wxGetenv(wxT("HOME"));
1642
1643 // and now the users mailcap
1644 wxString strUserMailcap = strHome + wxT("/.mime.types");
1645
1646 wxMimeTextFile file;
1647 if ( wxFile::Exists(strUserMailcap) )
1648 {
1649 bTemp = file.Open(strUserMailcap);
1650 }
1651 else
1652 {
d0ee33f5 1653 if (delete_index) return false;
2b813b73
VZ
1654 bTemp = file.Create(strUserMailcap);
1655 }
1656 if (bTemp)
1657 {
1658
1659 // write it in the format that Netscape uses
1660 int nIndex;
1661 // test for netscape's header and insert if required...
d0ee33f5
WS
1662 // this is a comment so use true
1663 nIndex = file.pIndexOf (wxT("#--Netscape"), true);
2b813b73
VZ
1664 if (nIndex == wxNOT_FOUND)
1665 {
1666 // either empty file or metamail format
1667 // at present we can't cope with mixed formats, so exit to preseve
1668 // metamail entreies
1669 if (file.GetLineCount () > 0)
1670 {
d0ee33f5
WS
1671 wxASSERT_MSG(false, wxT(".mime.types File not in Netscape format\nNo entries written to\n.mime.types or to .mailcap"));
1672 return false;
2b813b73
VZ
1673 }
1674 file.InsertLine (wxT( "#--Netscape Communications Corporation MIME Information" ), 0);
1675 nIndex = 0;
1676 }
1677
1678 wxString strType = wxT("type=") + m_aTypes[index];
1679 nIndex = file.pIndexOf (strType);
1680 // get rid of all the unwanted entries...
1681 if (nIndex != wxNOT_FOUND)
1682 {
1683 wxString sOld = file[nIndex];
1684 while ( (sOld.Contains(wxT("\\"))) && (nIndex < (int) file.GetLineCount()) )
1685 {
1686 file.CommentLine(nIndex);
1687 sOld = file[nIndex];
1688 wxLogTrace(TRACE_MIME, wxT("--- Deleting from mime.types line '%d %s' ---"), nIndex, sOld.c_str());
1689 nIndex ++;
1690 }
1691 if (nIndex < (int) file.GetLineCount()) file.CommentLine (nIndex);
1692 }
1693 else nIndex = (int) file.GetLineCount();
1694
1695 wxString sTmp = strType + wxT(" \\");
1696 if (!delete_index) file.InsertLine (sTmp, nIndex);
678ebfcd 1697 if ( ! m_aDescriptions.Item(index).empty() )
2b813b73 1698 {
678ebfcd 1699 sTmp = wxT("desc=\"") + m_aDescriptions[index]+ wxT("\" \\"); //.trim ??
2b813b73
VZ
1700 if (!delete_index)
1701 {
1702 nIndex ++;
1703 file.InsertLine (sTmp, nIndex);
1704 }
1705 }
1706 wxString sExts = m_aExtensions.Item(index);
d0ee33f5 1707 sTmp = wxT("exts=\"") + sExts.Trim(false).Trim() + wxT("\"");
2b813b73
VZ
1708 if (!delete_index)
1709 {
1710 nIndex ++;
1711 file.InsertLine (sTmp, nIndex);
1712 }
1713
1714 bTemp = file.Write ();
1715 file.Close ();
1716 }
1717 return bTemp;
1718}
1719
1720
1721bool wxMimeTypesManagerImpl::WriteToMailCap (int index, bool delete_index)
1722{
1723 //check we have the right managers
1724 if ( !( ( m_mailcapStylesInited & wxMAILCAP_NETSCAPE) ||
a06c1b9b 1725 ( m_mailcapStylesInited & wxMAILCAP_STANDARD) ) )
d0ee33f5 1726 return false;
2b813b73
VZ
1727
1728 bool bTemp;
1729 wxString strHome = wxGetenv(wxT("HOME"));
1730
1731 // and now the users mailcap
1732 wxString strUserMailcap = strHome + wxT("/.mailcap");
1733
1734 wxMimeTextFile file;
1735 if ( wxFile::Exists(strUserMailcap) )
1736 {
1737 bTemp = file.Open(strUserMailcap);
1738 }
be0a33fb 1739 else
2b813b73 1740 {
d0ee33f5 1741 if (delete_index) return false;
2b813b73
VZ
1742 bTemp = file.Create(strUserMailcap);
1743 }
1744 if (bTemp)
1745 {
1746 // now got a file we can write to ....
678ebfcd
VZ
1747 wxMimeTypeCommands * entries = m_aEntries[index];
1748 size_t iOpen;
1749 wxString sCmd = entries->GetCommandForVerb(_T("open"), &iOpen);
2b813b73
VZ
1750 wxString sTmp;
1751
1752 sTmp = m_aTypes[index];
1753 wxString sOld;
1754 int nIndex = file.pIndexOf(sTmp);
1755 // get rid of all the unwanted entries...
1756 if (nIndex == wxNOT_FOUND)
1757 {
1758 nIndex = (int) file.GetLineCount();
1759 }
1760 else
1761 {
1762 sOld = file[nIndex];
1763 wxLogTrace(TRACE_MIME, wxT("--- Deleting from mailcap line '%d' ---"), nIndex);
6dc6fda6 1764
2b813b73
VZ
1765 while ( (sOld.Contains(wxT("\\"))) && (nIndex < (int) file.GetLineCount()) )
1766 {
1767 file.CommentLine(nIndex);
1768 if (nIndex < (int) file.GetLineCount()) sOld = sOld + file[nIndex];
1769 }
1770 if (nIndex < (int) file.GetLineCount()) file.CommentLine (nIndex);
1771 }
6dc6fda6 1772
678ebfcd 1773 sTmp = sTmp + wxT(";") + sCmd; //includes wxT(" %s ");
b9517a0a 1774
2b813b73 1775 // write it in the format that Netscape uses (default)
a06c1b9b 1776 if (! ( m_mailcapStylesInited & wxMAILCAP_STANDARD ) )
2b813b73
VZ
1777 {
1778 if (! delete_index) file.InsertLine (sTmp, nIndex);
1779 nIndex ++;
1780 }
b9517a0a 1781
2b813b73
VZ
1782 // write extended format
1783 else
1784 {
1785 // todo FIX this code;
1786 // ii) lost entries
1787 // sOld holds all the entries, but our data store only has some
1788 // eg test= is not stored
1789
1790 // so far we have written the mimetype and command out
1791 wxStringTokenizer sT (sOld, wxT(";\\"));
1792 if (sT.CountTokens () > 2)
1793 {
1794 // first one mimetype; second one command, rest unknown...
1795 wxString s;
1796 s = sT.GetNextToken();
1797 s = sT.GetNextToken();
1798
1799 // first unknown
1800 s = sT.GetNextToken();
678ebfcd 1801 while ( ! s.empty() )
2b813b73 1802 {
d0ee33f5
WS
1803 bool bKnownToken = false;
1804 if (s.Contains(wxT("description="))) bKnownToken = true;
1805 if (s.Contains(wxT("x11-bitmap="))) bKnownToken = true;
2b813b73
VZ
1806 size_t i;
1807 for (i=0; i < entries->GetCount(); i++)
1808 {
d0ee33f5 1809 if (s.Contains(entries->GetVerb(i))) bKnownToken = true;
2b813b73
VZ
1810 }
1811 if (!bKnownToken)
1812 {
1813 sTmp = sTmp + wxT("; \\");
1814 file.InsertLine (sTmp, nIndex);
1815 sTmp = s;
1816 }
1817 s = sT.GetNextToken ();
1818 }
cdf339c9 1819
2b813b73 1820 }
5bd3a2da 1821
678ebfcd 1822 if (! m_aDescriptions[index].empty() )
2b813b73
VZ
1823 {
1824 sTmp = sTmp + wxT("; \\");
1825 file.InsertLine (sTmp, nIndex);
1826 nIndex ++;
1827 sTmp = wxT(" description=\"") + m_aDescriptions[index] + wxT("\"");
1828 }
cdf339c9 1829
678ebfcd 1830 if (! m_aIcons[index].empty() )
2b813b73
VZ
1831 {
1832 sTmp = sTmp + wxT("; \\");
1833 file.InsertLine (sTmp, nIndex);
1834 nIndex ++;
1835 sTmp = wxT(" x11-bitmap=\"") + m_aIcons[index] + wxT("\"");
1836 }
1837 if ( entries->GetCount() > 1 )
cdf339c9 1838
2b813b73
VZ
1839 {
1840 size_t i;
1841 for (i=0; i < entries->GetCount(); i++)
1842 if ( i != iOpen )
1843 {
1844 sTmp = sTmp + wxT("; \\");
1845 file.InsertLine (sTmp, nIndex);
1846 nIndex ++;
678ebfcd 1847 sTmp = wxT(" ") + entries->GetVerbCmd(i);
2b813b73
VZ
1848 }
1849 }
b9517a0a 1850
2b813b73
VZ
1851 file.InsertLine (sTmp, nIndex);
1852 nIndex ++;
c93d6770 1853
b13d92d1 1854 }
2b813b73
VZ
1855 bTemp = file.Write ();
1856 file.Close ();
b13d92d1 1857 }
2b813b73 1858 return bTemp;
b13d92d1
VZ
1859}
1860
2b813b73
VZ
1861wxFileType *
1862wxMimeTypesManagerImpl::Associate(const wxFileTypeInfo& ftInfo)
b9517a0a 1863{
2b813b73 1864 InitIfNeeded();
b9517a0a 1865
2b813b73
VZ
1866 wxString strType = ftInfo.GetMimeType ();
1867 wxString strDesc = ftInfo.GetDescription ();
1868 wxString strIcon = ftInfo.GetIconFile ();
1869
678ebfcd 1870 wxMimeTypeCommands *entry = new wxMimeTypeCommands ();
2b813b73 1871
678ebfcd 1872 if ( ! ftInfo.GetOpenCommand().empty())
2b813b73 1873 entry->Add(wxT("open=") + ftInfo.GetOpenCommand () + wxT(" %s "));
678ebfcd 1874 if ( ! ftInfo.GetPrintCommand ().empty())
2b813b73
VZ
1875 entry->Add(wxT("print=") + ftInfo.GetPrintCommand () + wxT(" %s "));
1876
1877 // now find where these extensions are in the data store and remove them
1878 wxArrayString sA_Exts = ftInfo.GetExtensions ();
1879 wxString sExt, sExtStore;
1880 size_t i, nIndex;
1881 for (i=0; i < sA_Exts.GetCount(); i++)
4d2976ad 1882 {
2b813b73
VZ
1883 sExt = sA_Exts.Item(i);
1884 //clean up to just a space before and after
d0ee33f5 1885 sExt.Trim().Trim(false);
2b813b73
VZ
1886 sExt = wxT(' ') + sExt + wxT(' ');
1887 for (nIndex = 0; nIndex < m_aExtensions.GetCount(); nIndex ++)
1888 {
1889 sExtStore = m_aExtensions.Item(nIndex);
678ebfcd 1890 if (sExtStore.Replace(sExt, wxT(" ") ) > 0) m_aExtensions.Item(nIndex) = sExtStore;
b9517a0a
VZ
1891 }
1892
2b813b73 1893 }
b9517a0a 1894
2b813b73
VZ
1895 if ( !DoAssociation (strType, strIcon, entry, sA_Exts, strDesc) )
1896 return NULL;
4d2976ad 1897
2b813b73 1898 return GetFileTypeFromMimeType(strType);
4d2976ad
VS
1899}
1900
1901
2b813b73
VZ
1902bool wxMimeTypesManagerImpl::DoAssociation(const wxString& strType,
1903 const wxString& strIcon,
678ebfcd 1904 wxMimeTypeCommands *entry,
2b813b73
VZ
1905 const wxArrayString& strExtensions,
1906 const wxString& strDesc)
b13d92d1 1907{
d0ee33f5 1908 int nIndex = AddToMimeData(strType, strIcon, entry, strExtensions, strDesc, true);
b13d92d1 1909
2b813b73 1910 if ( nIndex == wxNOT_FOUND )
d0ee33f5 1911 return false;
b13d92d1 1912
d0ee33f5 1913 return WriteMimeInfo (nIndex, false);
b13d92d1
VZ
1914}
1915
2b813b73 1916bool wxMimeTypesManagerImpl::WriteMimeInfo(int nIndex, bool delete_mime )
b13d92d1 1917{
d0ee33f5 1918 bool ok = true;
b13d92d1 1919
a06c1b9b 1920 if ( m_mailcapStylesInited & wxMAILCAP_STANDARD )
2b813b73
VZ
1921 {
1922 // write in metamail format;
1923 if (WriteToMimeTypes (nIndex, delete_mime) )
1924 if ( WriteToMailCap (nIndex, delete_mime) )
d0ee33f5 1925 ok = false;
b13d92d1 1926 }
2b813b73 1927 if ( m_mailcapStylesInited & wxMAILCAP_NETSCAPE )
b9517a0a 1928 {
2b813b73
VZ
1929 // write in netsacpe format;
1930 if (WriteToNSMimeTypes (nIndex, delete_mime) )
1931 if ( WriteToMailCap (nIndex, delete_mime) )
d0ee33f5 1932 ok = false;
2b813b73
VZ
1933 }
1934 if (m_mailcapStylesInited & wxMAILCAP_GNOME)
1935 {
1936 // write in Gnome format;
1937 if (WriteGnomeMimeFile (nIndex, delete_mime) )
1938 if (WriteGnomeKeyFile (nIndex, delete_mime) )
d0ee33f5 1939 ok = false;
2b813b73
VZ
1940 }
1941 if (m_mailcapStylesInited & wxMAILCAP_KDE)
1942 {
1943 // write in KDE format;
1944 if (WriteKDEMimeFile (nIndex, delete_mime) )
d0ee33f5 1945 ok = false;
b9517a0a
VZ
1946 }
1947
2b813b73 1948 return ok;
a6c65e88
VZ
1949}
1950
2b813b73
VZ
1951int wxMimeTypesManagerImpl::AddToMimeData(const wxString& strType,
1952 const wxString& strIcon,
678ebfcd 1953 wxMimeTypeCommands *entry,
2b813b73
VZ
1954 const wxArrayString& strExtensions,
1955 const wxString& strDesc,
678ebfcd 1956 bool replaceExisting)
b13d92d1 1957{
2b813b73 1958 InitIfNeeded();
b13d92d1 1959
2b813b73 1960 // ensure mimetype is always lower case
678ebfcd
VZ
1961 wxString mimeType = strType.Lower();
1962
1963 // is this a known MIME type?
2b813b73
VZ
1964 int nIndex = m_aTypes.Index(mimeType);
1965 if ( nIndex == wxNOT_FOUND )
1966 {
1967 // new file type
1968 m_aTypes.Add(mimeType);
1969 m_aIcons.Add(strIcon);
678ebfcd 1970 m_aEntries.Add(entry ? entry : new wxMimeTypeCommands);
b13d92d1 1971
678ebfcd 1972 // change nIndex so we can use it below to add the extensions
df5168c4 1973 m_aExtensions.Add(wxEmptyString);
b8d61021 1974 nIndex = m_aExtensions.size() - 1;
678ebfcd
VZ
1975
1976 m_aDescriptions.Add(strDesc);
b13d92d1 1977 }
678ebfcd 1978 else // yes, we already have it
2b813b73 1979 {
678ebfcd 1980 if ( replaceExisting )
2b813b73
VZ
1981 {
1982 // if new description change it
678ebfcd 1983 if ( !strDesc.empty())
2b813b73
VZ
1984 m_aDescriptions[nIndex] = strDesc;
1985
1986 // if new icon change it
678ebfcd 1987 if ( !strIcon.empty())
2b813b73
VZ
1988 m_aIcons[nIndex] = strIcon;
1989
678ebfcd
VZ
1990 if ( entry )
1991 {
1992 delete m_aEntries[nIndex];
1993 m_aEntries[nIndex] = entry;
1994 }
2b813b73 1995 }
678ebfcd 1996 else // add data we don't already have ...
2b813b73 1997 {
2b813b73 1998 // if new description add only if none
678ebfcd 1999 if ( m_aDescriptions[nIndex].empty() )
2b813b73
VZ
2000 m_aDescriptions[nIndex] = strDesc;
2001
2002 // if new icon and no existing icon
678ebfcd 2003 if ( m_aIcons[nIndex].empty () )
2b813b73
VZ
2004 m_aIcons[nIndex] = strIcon;
2005
2b813b73 2006 // add any new entries...
678ebfcd 2007 if ( entry )
2b813b73 2008 {
678ebfcd
VZ
2009 wxMimeTypeCommands *entryOld = m_aEntries[nIndex];
2010
2011 size_t count = entry->GetCount();
2012 for ( size_t i = 0; i < count; i++ )
2013 {
2014 const wxString& verb = entry->GetVerb(i);
2015 if ( !entryOld->HasVerb(verb) )
2016 {
2017 entryOld->AddOrReplaceVerb(verb, entry->GetCmd(i));
2018 }
2019 }
2b293fc7
VZ
2020
2021 // as we don't store it anywhere, it won't be deleted later as
2022 // usual -- do it immediately instead
2023 delete entry;
2b813b73
VZ
2024 }
2025 }
b13d92d1 2026 }
4d2976ad 2027
678ebfcd
VZ
2028 // always add the extensions to this mimetype
2029 wxString& exts = m_aExtensions[nIndex];
2030
2031 // add all extensions we don't have yet
2032 size_t count = strExtensions.GetCount();
2033 for ( size_t i = 0; i < count; i++ )
2034 {
2035 wxString ext = strExtensions[i] + _T(' ');
2036
2037 if ( exts.Find(ext) == wxNOT_FOUND )
2038 {
2039 exts += ext;
2040 }
2041 }
2042
2b813b73
VZ
2043 // check data integrity
2044 wxASSERT( m_aTypes.Count() == m_aEntries.Count() &&
678ebfcd
VZ
2045 m_aTypes.Count() == m_aExtensions.Count() &&
2046 m_aTypes.Count() == m_aIcons.Count() &&
2047 m_aTypes.Count() == m_aDescriptions.Count() );
cf471cab 2048
2b813b73 2049 return nIndex;
cf471cab
VS
2050}
2051
2052
b13d92d1
VZ
2053wxFileType *
2054wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString& ext)
2055{
678ebfcd 2056 if (ext.empty() )
2b813b73
VZ
2057 return NULL;
2058
a6c65e88
VZ
2059 InitIfNeeded();
2060
1ee17e1c 2061 size_t count = m_aExtensions.GetCount();
2b813b73 2062 for ( size_t n = 0; n < count; n++ )
678ebfcd
VZ
2063 {
2064 wxStringTokenizer tk(m_aExtensions[n], _T(' '));
1ee17e1c 2065
678ebfcd
VZ
2066 while ( tk.HasMoreTokens() )
2067 {
1ee17e1c 2068 // consider extensions as not being case-sensitive
d0ee33f5 2069 if ( tk.GetNextToken().IsSameAs(ext, false /* no case */) )
678ebfcd 2070 {
1ee17e1c 2071 // found
678ebfcd 2072 wxFileType *fileType = new wxFileType;
1ee17e1c 2073 fileType->m_impl->Init(this, n);
678ebfcd
VZ
2074
2075 return fileType;
1ee17e1c
VZ
2076 }
2077 }
2078 }
b13d92d1 2079
678ebfcd 2080 return NULL;
b13d92d1
VZ
2081}
2082
2083wxFileType *
2084wxMimeTypesManagerImpl::GetFileTypeFromMimeType(const wxString& mimeType)
2085{
a6c65e88
VZ
2086 InitIfNeeded();
2087
2b813b73 2088 wxFileType * fileType = NULL;
b13d92d1
VZ
2089 // mime types are not case-sensitive
2090 wxString mimetype(mimeType);
2091 mimetype.MakeLower();
2092
2093 // first look for an exact match
2094 int index = m_aTypes.Index(mimetype);
2b813b73
VZ
2095 if ( index != wxNOT_FOUND )
2096 {
2097 fileType = new wxFileType;
2098 fileType->m_impl->Init(this, index);
2099 }
2100
2101 // then try to find "text/*" as match for "text/plain" (for example)
2102 // NB: if mimeType doesn't contain '/' at all, BeforeFirst() will return
2103 // the whole string - ok.
2104
2105 index = wxNOT_FOUND;
2106 wxString strCategory = mimetype.BeforeFirst(wxT('/'));
2107
2108 size_t nCount = m_aTypes.Count();
2109 for ( size_t n = 0; n < nCount; n++ ) {
2110 if ( (m_aTypes[n].BeforeFirst(wxT('/')) == strCategory ) &&
2111 m_aTypes[n].AfterFirst(wxT('/')) == wxT("*") ) {
2112 index = n;
2113 break;
b13d92d1 2114 }
2b813b73 2115
b13d92d1
VZ
2116 }
2117
2b813b73
VZ
2118 if ( index != wxNOT_FOUND )
2119 {
2120 fileType = new wxFileType;
b13d92d1 2121 fileType->m_impl->Init(this, index);
b13d92d1 2122 }
2b813b73
VZ
2123 return fileType;
2124}
2125
2126
2127wxString wxMimeTypesManagerImpl::GetCommand(const wxString & verb, size_t nIndex) const
2128{
2129 wxString command, testcmd, sV, sTmp;
2130 sV = verb + wxT("=");
2131 // list of verb = command pairs for this mimetype
678ebfcd 2132 wxMimeTypeCommands * sPairs = m_aEntries [nIndex];
2b813b73
VZ
2133
2134 size_t i;
678ebfcd 2135 for ( i = 0; i < sPairs->GetCount (); i++ )
2b813b73 2136 {
678ebfcd
VZ
2137 sTmp = sPairs->GetVerbCmd (i);
2138 if ( sTmp.Contains(sV) )
2139 command = sTmp.AfterFirst(wxT('='));
b13d92d1 2140 }
2b813b73 2141 return command;
b13d92d1
VZ
2142}
2143
8e124873
VZ
2144void wxMimeTypesManagerImpl::AddFallback(const wxFileTypeInfo& filetype)
2145{
a6c65e88
VZ
2146 InitIfNeeded();
2147
3f1aaa16 2148 wxString extensions;
8e124873
VZ
2149 const wxArrayString& exts = filetype.GetExtensions();
2150 size_t nExts = exts.GetCount();
2151 for ( size_t nExt = 0; nExt < nExts; nExt++ ) {
2152 if ( nExt > 0 ) {
223d09f6 2153 extensions += wxT(' ');
8e124873
VZ
2154 }
2155 extensions += exts[nExt];
2156 }
2157
2158 AddMimeTypeInfo(filetype.GetMimeType(),
2159 extensions,
2160 filetype.GetDescription());
2161
2162 AddMailcapInfo(filetype.GetMimeType(),
2163 filetype.GetOpenCommand(),
2164 filetype.GetPrintCommand(),
223d09f6 2165 wxT(""),
8e124873
VZ
2166 filetype.GetDescription());
2167}
2168
2169void wxMimeTypesManagerImpl::AddMimeTypeInfo(const wxString& strMimeType,
2170 const wxString& strExtensions,
2171 const wxString& strDesc)
2172{
2b813b73
VZ
2173 // reading mailcap may find image/* , while
2174 // reading mime.types finds image/gif and no match is made
2175 // this means all the get functions don't work fix this
2176 wxString strIcon;
2177 wxString sTmp = strExtensions;
a6c65e88 2178
2b813b73 2179 wxArrayString sExts;
d0ee33f5 2180 sTmp.Trim().Trim(false);
2b813b73 2181
678ebfcd 2182 while (!sTmp.empty())
2b813b73
VZ
2183 {
2184 sExts.Add (sTmp.AfterLast(wxT(' ')));
2185 sTmp = sTmp.BeforeLast(wxT(' '));
8e124873 2186 }
2b813b73 2187
d0ee33f5 2188 AddToMimeData (strMimeType, strIcon, NULL, sExts, strDesc, true);
8e124873
VZ
2189}
2190
2191void wxMimeTypesManagerImpl::AddMailcapInfo(const wxString& strType,
2192 const wxString& strOpenCmd,
2193 const wxString& strPrintCmd,
2194 const wxString& strTest,
2195 const wxString& strDesc)
2196{
a6c65e88
VZ
2197 InitIfNeeded();
2198
678ebfcd 2199 wxMimeTypeCommands *entry = new wxMimeTypeCommands;
2b813b73
VZ
2200 entry->Add(wxT("open=") + strOpenCmd);
2201 entry->Add(wxT("print=") + strPrintCmd);
2202 entry->Add(wxT("test=") + strTest);
8e124873 2203
2b813b73
VZ
2204 wxString strIcon;
2205 wxArrayString strExtensions;
2206
d0ee33f5 2207 AddToMimeData (strType, strIcon, entry, strExtensions, strDesc, true);
8e124873 2208
8e124873
VZ
2209}
2210
cc385968 2211bool wxMimeTypesManagerImpl::ReadMimeTypes(const wxString& strFileName)
b13d92d1 2212{
f6bcfd97
BP
2213 wxLogTrace(TRACE_MIME, wxT("--- Parsing mime.types file '%s' ---"),
2214 strFileName.c_str());
b13d92d1
VZ
2215
2216 wxTextFile file(strFileName);
2b5f62a0
VZ
2217#if defined(__WXGTK20__) && wxUSE_UNICODE
2218 if ( !file.Open( wxConvUTF8) )
2219#else
b13d92d1 2220 if ( !file.Open() )
2b5f62a0 2221#endif
d0ee33f5 2222 return false;
b13d92d1
VZ
2223
2224 // the information we extract
2225 wxString strMimeType, strDesc, strExtensions;
2226
2227 size_t nLineCount = file.GetLineCount();
50920146 2228 const wxChar *pc = NULL;
2b5f62a0
VZ
2229 for ( size_t nLine = 0; nLine < nLineCount; nLine++ )
2230 {
22b4634c
VZ
2231 if ( pc == NULL ) {
2232 // now we're at the start of the line
2233 pc = file[nLine].c_str();
2234 }
2235 else {
2236 // we didn't finish with the previous line yet
2237 nLine--;
2238 }
b13d92d1
VZ
2239
2240 // skip whitespace
50920146 2241 while ( wxIsspace(*pc) )
b13d92d1
VZ
2242 pc++;
2243
54acce90
VZ
2244 // comment or blank line?
2245 if ( *pc == wxT('#') || !*pc ) {
22b4634c
VZ
2246 // skip the whole line
2247 pc = NULL;
b13d92d1 2248 continue;
22b4634c 2249 }
b13d92d1
VZ
2250
2251 // detect file format
223d09f6 2252 const wxChar *pEqualSign = wxStrchr(pc, wxT('='));
b13d92d1
VZ
2253 if ( pEqualSign == NULL ) {
2254 // brief format
2255 // ------------
2256
2257 // first field is mime type
223d09f6 2258 for ( strMimeType.Empty(); !wxIsspace(*pc) && *pc != wxT('\0'); pc++ ) {
b13d92d1
VZ
2259 strMimeType += *pc;
2260 }
2261
2262 // skip whitespace
50920146 2263 while ( wxIsspace(*pc) )
b13d92d1
VZ
2264 pc++;
2265
2266 // take all the rest of the string
2267 strExtensions = pc;
2268
2269 // no description...
2270 strDesc.Empty();
2271 }
2272 else {
2273 // expanded format
2274 // ---------------
2275
2276 // the string on the left of '=' is the field name
2277 wxString strLHS(pc, pEqualSign - pc);
2278
2279 // eat whitespace
50920146 2280 for ( pc = pEqualSign + 1; wxIsspace(*pc); pc++ )
678ebfcd 2281 ;
b13d92d1 2282
50920146 2283 const wxChar *pEnd;
223d09f6 2284 if ( *pc == wxT('"') ) {
b13d92d1 2285 // the string is quoted and ends at the matching quote
223d09f6 2286 pEnd = wxStrchr(++pc, wxT('"'));
b13d92d1 2287 if ( pEnd == NULL ) {
76a6e803 2288 wxLogWarning(_("Mime.types file %s, line %d: unterminated quoted string."),
b13d92d1
VZ
2289 strFileName.c_str(), nLine + 1);
2290 }
2291 }
2292 else {
8862e11b
VZ
2293 // unquoted string ends at the first space or at the end of
2294 // line
2295 for ( pEnd = pc; *pEnd && !wxIsspace(*pEnd); pEnd++ )
678ebfcd 2296 ;
b13d92d1
VZ
2297 }
2298
2299 // now we have the RHS (field value)
2300 wxString strRHS(pc, pEnd - pc);
2301
22b4634c 2302 // check what follows this entry
223d09f6 2303 if ( *pEnd == wxT('"') ) {
b13d92d1
VZ
2304 // skip this quote
2305 pEnd++;
2306 }
2307
50920146 2308 for ( pc = pEnd; wxIsspace(*pc); pc++ )
678ebfcd 2309 ;
b13d92d1 2310
22b4634c
VZ
2311 // if there is something left, it may be either a '\\' to continue
2312 // the line or the next field of the same entry
223d09f6 2313 bool entryEnded = *pc == wxT('\0'),
d0ee33f5 2314 nextFieldOnSameLine = false;
22b4634c 2315 if ( !entryEnded ) {
223d09f6 2316 nextFieldOnSameLine = ((*pc != wxT('\\')) || (pc[1] != wxT('\0')));
b13d92d1 2317 }
b13d92d1
VZ
2318
2319 // now see what we got
223d09f6 2320 if ( strLHS == wxT("type") ) {
b13d92d1
VZ
2321 strMimeType = strRHS;
2322 }
678ebfcd 2323 else if ( strLHS.StartsWith(wxT("desc")) ) {
b13d92d1
VZ
2324 strDesc = strRHS;
2325 }
223d09f6 2326 else if ( strLHS == wxT("exts") ) {
b13d92d1
VZ
2327 strExtensions = strRHS;
2328 }
70247ce3 2329 else if ( strLHS == _T("icon") )
70687b63 2330 {
a2717c3d
VZ
2331 // this one is simply ignored: it usually refers to Netscape
2332 // built in icons which are useless for us anyhow
70687b63
VZ
2333 }
2334 else if ( !strLHS.StartsWith(_T("x-")) )
2335 {
2336 // we suppose that all fields starting with "X-" are
2337 // unregistered extensions according to the standard practice,
2338 // but it may be worth telling the user about other junk in
2339 // his mime.types file
2340 wxLogWarning(_("Unknown field in file %s, line %d: '%s'."),
2341 strFileName.c_str(), nLine + 1, strLHS.c_str());
b13d92d1
VZ
2342 }
2343
2344 if ( !entryEnded ) {
22b4634c
VZ
2345 if ( !nextFieldOnSameLine )
2346 pc = NULL;
2347 //else: don't reset it
2348
2349 // as we don't reset strMimeType, the next field in this entry
b13d92d1 2350 // will be interpreted correctly.
22b4634c 2351
b13d92d1
VZ
2352 continue;
2353 }
2354 }
2355
a6c65e88
VZ
2356 // depending on the format (Mosaic or Netscape) either space or comma
2357 // is used to separate the extensions
223d09f6 2358 strExtensions.Replace(wxT(","), wxT(" "));
a1d8eaf7
VZ
2359
2360 // also deal with the leading dot
678ebfcd 2361 if ( !strExtensions.empty() && strExtensions[0u] == wxT('.') )
1b986aef 2362 {
a1d8eaf7
VZ
2363 strExtensions.erase(0, 1);
2364 }
2365
678ebfcd
VZ
2366 wxLogTrace(TRACE_MIME, wxT("mime.types: '%s' => '%s' (%s)"),
2367 strExtensions.c_str(),
2368 strMimeType.c_str(),
2369 strDesc.c_str());
2b813b73 2370
8e124873 2371 AddMimeTypeInfo(strMimeType, strExtensions, strDesc);
22b4634c
VZ
2372
2373 // finished with this line
2374 pc = NULL;
b13d92d1
VZ
2375 }
2376
d0ee33f5 2377 return true;
b13d92d1
VZ
2378}
2379
678ebfcd
VZ
2380// ----------------------------------------------------------------------------
2381// UNIX mailcap files parsing
2382// ----------------------------------------------------------------------------
2383
2384// the data for a single MIME type
2385struct MailcapLineData
2386{
2387 // field values
2388 wxString type,
2389 cmdOpen,
2390 test,
2391 icon,
2392 desc;
2393
2394 wxArrayString verbs,
2395 commands;
2396
2397 // flags
2398 bool testfailed,
2399 needsterminal,
2400 copiousoutput;
2401
d0ee33f5 2402 MailcapLineData() { testfailed = needsterminal = copiousoutput = false; }
678ebfcd
VZ
2403};
2404
2405// process a non-standard (i.e. not the first or second one) mailcap field
2406bool
2407wxMimeTypesManagerImpl::ProcessOtherMailcapField(MailcapLineData& data,
2408 const wxString& curField)
2409{
2410 if ( curField.empty() )
2411 {
2412 // we don't care
d0ee33f5 2413 return true;
678ebfcd
VZ
2414 }
2415
2416 // is this something of the form foo=bar?
2417 const wxChar *pEq = wxStrchr(curField, wxT('='));
2418 if ( pEq != NULL )
2419 {
2420 // split "LHS = RHS" in 2
2421 wxString lhs = curField.BeforeFirst(wxT('=')),
2422 rhs = curField.AfterFirst(wxT('='));
2423
d0ee33f5
WS
2424 lhs.Trim(true); // from right
2425 rhs.Trim(false); // from left
678ebfcd
VZ
2426
2427 // it might be quoted
2428 if ( !rhs.empty() && rhs[0u] == wxT('"') && rhs.Last() == wxT('"') )
2429 {
2430 rhs = rhs.Mid(1, rhs.length() - 2);
2431 }
2432
2433 // is it a command verb or something else?
2434 if ( lhs == wxT("test") )
2435 {
2436 if ( wxSystem(rhs) == 0 )
2437 {
2438 // ok, test passed
2439 wxLogTrace(TRACE_MIME_TEST,
2440 wxT("Test '%s' for mime type '%s' succeeded."),
2441 rhs.c_str(), data.type.c_str());
2442
2443 }
2444 else
2445 {
2446 wxLogTrace(TRACE_MIME_TEST,
2447 wxT("Test '%s' for mime type '%s' failed, skipping."),
2448 rhs.c_str(), data.type.c_str());
2449
d0ee33f5 2450 data.testfailed = true;
678ebfcd
VZ
2451 }
2452 }
2453 else if ( lhs == wxT("desc") )
2454 {
2455 data.desc = rhs;
2456 }
2457 else if ( lhs == wxT("x11-bitmap") )
2458 {
2459 data.icon = rhs;
2460 }
2461 else if ( lhs == wxT("notes") )
2462 {
2463 // ignore
2464 }
2465 else // not a (recognized) special case, must be a verb (e.g. "print")
2466 {
2467 data.verbs.Add(lhs);
2468 data.commands.Add(rhs);
2469 }
2470 }
2471 else // '=' not found
2472 {
2473 // so it must be a simple flag
2474 if ( curField == wxT("needsterminal") )
2475 {
d0ee33f5 2476 data.needsterminal = true;
678ebfcd
VZ
2477 }
2478 else if ( curField == wxT("copiousoutput"))
2479 {
2480 // copiousoutput impies that the viewer is a console program
2481 data.needsterminal =
d0ee33f5 2482 data.copiousoutput = true;
678ebfcd
VZ
2483 }
2484 else if ( !IsKnownUnimportantField(curField) )
2485 {
d0ee33f5 2486 return false;
678ebfcd
VZ
2487 }
2488 }
2489
d0ee33f5 2490 return true;
678ebfcd
VZ
2491}
2492
cc385968
VZ
2493bool wxMimeTypesManagerImpl::ReadMailcap(const wxString& strFileName,
2494 bool fallback)
b13d92d1 2495{
f6bcfd97
BP
2496 wxLogTrace(TRACE_MIME, wxT("--- Parsing mailcap file '%s' ---"),
2497 strFileName.c_str());
b13d92d1
VZ
2498
2499 wxTextFile file(strFileName);
2b5f62a0
VZ
2500#if defined(__WXGTK20__) && wxUSE_UNICODE
2501 if ( !file.Open( wxConvUTF8) )
2502#else
b13d92d1 2503 if ( !file.Open() )
2b5f62a0 2504#endif
d0ee33f5 2505 return false;
b13d92d1 2506
678ebfcd
VZ
2507 // indices of MIME types (in m_aTypes) we already found in this file
2508 //
2509 // (see the comments near the end of function for the reason we need this)
2510 wxArrayInt aIndicesSeenHere;
2511
2512 // accumulator for the current field
2513 wxString curField;
2514 curField.reserve(1024);
b13d92d1
VZ
2515
2516 size_t nLineCount = file.GetLineCount();
678ebfcd
VZ
2517 for ( size_t nLine = 0; nLine < nLineCount; nLine++ )
2518 {
b13d92d1 2519 // now we're at the start of the line
50920146 2520 const wxChar *pc = file[nLine].c_str();
b13d92d1
VZ
2521
2522 // skip whitespace
50920146 2523 while ( wxIsspace(*pc) )
b13d92d1
VZ
2524 pc++;
2525
2526 // comment or empty string?
223d09f6 2527 if ( *pc == wxT('#') || *pc == wxT('\0') )
b13d92d1
VZ
2528 continue;
2529
2530 // no, do parse
678ebfcd 2531 // ------------
b13d92d1
VZ
2532
2533 // what field are we currently in? The first 2 are fixed and there may
678ebfcd
VZ
2534 // be an arbitrary number of other fields parsed by
2535 // ProcessOtherMailcapField()
2536 //
2537 // the first field is the MIME type
b13d92d1
VZ
2538 enum
2539 {
2540 Field_Type,
2541 Field_OpenCmd,
2542 Field_Other
2543 } currentToken = Field_Type;
2544
2545 // the flags and field values on the current line
678ebfcd
VZ
2546 MailcapLineData data;
2547
d0ee33f5 2548 bool cont = true;
678ebfcd
VZ
2549 while ( cont )
2550 {
2551 switch ( *pc )
2552 {
223d09f6 2553 case wxT('\\'):
b13d92d1
VZ
2554 // interpret the next character literally (notice that
2555 // backslash can be used for line continuation)
678ebfcd
VZ
2556 if ( *++pc == wxT('\0') )
2557 {
6e358ae7 2558 // fetch the next line if there is one
678ebfcd
VZ
2559 if ( nLine == nLineCount - 1 )
2560 {
6e358ae7 2561 // something is wrong, bail out
d0ee33f5 2562 cont = false;
6e358ae7 2563
76a6e803 2564 wxLogDebug(wxT("Mailcap file %s, line %lu: '\\' on the end of the last line ignored."),
6e358ae7 2565 strFileName.c_str(),
2b5f62a0 2566 (unsigned long)nLine + 1);
6e358ae7 2567 }
678ebfcd
VZ
2568 else
2569 {
6e358ae7
VZ
2570 // pass to the beginning of the next line
2571 pc = file[++nLine].c_str();
2572
2573 // skip pc++ at the end of the loop
2574 continue;
2575 }
b13d92d1 2576 }
678ebfcd
VZ
2577 else
2578 {
b13d92d1
VZ
2579 // just a normal character
2580 curField += *pc;
2581 }
2582 break;
2583
223d09f6 2584 case wxT('\0'):
d0ee33f5 2585 cont = false; // end of line reached, exit the loop
b13d92d1 2586
678ebfcd 2587 // fall through to still process this field
b13d92d1 2588
223d09f6 2589 case wxT(';'):
b13d92d1 2590 // trim whitespaces from both sides
d0ee33f5 2591 curField.Trim(true).Trim(false);
b13d92d1 2592
678ebfcd
VZ
2593 switch ( currentToken )
2594 {
b13d92d1 2595 case Field_Type:
678ebfcd
VZ
2596 data.type = curField.Lower();
2597 if ( data.type.empty() )
2598 {
6e358ae7
VZ
2599 // I don't think that this is a valid mailcap
2600 // entry, but try to interpret it somehow
678ebfcd 2601 data.type = _T('*');
6e358ae7
VZ
2602 }
2603
678ebfcd
VZ
2604 if ( data.type.Find(wxT('/')) == wxNOT_FOUND )
2605 {
b13d92d1 2606 // we interpret "type" as "type/*"
678ebfcd 2607 data.type += wxT("/*");
b13d92d1
VZ
2608 }
2609
2610 currentToken = Field_OpenCmd;
2611 break;
2612
2613 case Field_OpenCmd:
678ebfcd 2614 data.cmdOpen = curField;
b13d92d1
VZ
2615
2616 currentToken = Field_Other;
2617 break;
2618
2619 case Field_Other:
678ebfcd
VZ
2620 if ( !ProcessOtherMailcapField(data, curField) )
2621 {
2622 // don't flood the user with error messages if
2623 // we don't understand something in his
2624 // mailcap, but give them in debug mode because
2625 // this might be useful for the programmer
2626 wxLogDebug
2627 (
76a6e803 2628 wxT("Mailcap file %s, line %lu: unknown field '%s' for the MIME type '%s' ignored."),
678ebfcd 2629 strFileName.c_str(),
2b5f62a0 2630 (unsigned long)nLine + 1,
678ebfcd
VZ
2631 curField.c_str(),
2632 data.type.c_str()
2633 );
2634 }
2635 else if ( data.testfailed )
2636 {
2637 // skip this entry entirely
d0ee33f5 2638 cont = false;
b13d92d1
VZ
2639 }
2640
2641 // it already has this value
2642 //currentToken = Field_Other;
2643 break;
2644
2645 default:
223d09f6 2646 wxFAIL_MSG(wxT("unknown field type in mailcap"));
b13d92d1
VZ
2647 }
2648
2649 // next token starts immediately after ';'
2650 curField.Empty();
2651 break;
2652
2653 default:
2654 curField += *pc;
2655 }
6e358ae7
VZ
2656
2657 // continue in the same line
2658 pc++;
b13d92d1
VZ
2659 }
2660
678ebfcd
VZ
2661 // we read the entire entry, check what have we got
2662 // ------------------------------------------------
2663
b13d92d1 2664 // check that we really read something reasonable
678ebfcd
VZ
2665 if ( currentToken < Field_Other )
2666 {
76a6e803 2667 wxLogWarning(_("Mailcap file %s, line %d: incomplete entry ignored."),
b13d92d1 2668 strFileName.c_str(), nLine + 1);
678ebfcd
VZ
2669
2670 continue;
b13d92d1 2671 }
e1e9ea40 2672
678ebfcd
VZ
2673 // if the test command failed, it's as if the entry were not there at
2674 // all
2675 if ( data.testfailed )
2676 {
2677 continue;
2678 }
2b813b73 2679
678ebfcd
VZ
2680 // support for flags:
2681 // 1. create an xterm for 'needsterminal'
2682 // 2. append "| $PAGER" for 'copiousoutput'
2683 //
2684 // Note that the RFC says that having both needsterminal and
2685 // copiousoutput is probably a mistake, so it seems that running
2686 // programs with copiousoutput inside an xterm as it is done now
2687 // is a bad idea (FIXME)
2688 if ( data.copiousoutput )
2689 {
2690 const wxChar *p = wxGetenv(_T("PAGER"));
2691 data.cmdOpen << _T(" | ") << (p ? p : _T("more"));
2692 }
b13d92d1 2693
678ebfcd
VZ
2694 if ( data.needsterminal )
2695 {
2b5f62a0
VZ
2696 data.cmdOpen = wxString::Format(_T("xterm -e sh -c '%s'"),
2697 data.cmdOpen.c_str());
678ebfcd 2698 }
b13d92d1 2699
678ebfcd
VZ
2700 if ( !data.cmdOpen.empty() )
2701 {
2702 data.verbs.Insert(_T("open"), 0);
2703 data.commands.Insert(data.cmdOpen, 0);
2704 }
2b813b73 2705
678ebfcd
VZ
2706 // we have to decide whether the new entry should replace any entries
2707 // for the same MIME type we had previously found or not
2708 bool overwrite;
2709
2710 // the fall back entries have the lowest priority, by definition
2711 if ( fallback )
2712 {
d0ee33f5 2713 overwrite = false;
678ebfcd
VZ
2714 }
2715 else
2716 {
2717 // have we seen this one before?
2718 int nIndex = m_aTypes.Index(data.type);
2719
a9a76b2f
VZ
2720 // and if we have, was it in this file? if not, we should
2721 // overwrite the previously seen one
678ebfcd 2722 overwrite = nIndex == wxNOT_FOUND ||
a9a76b2f 2723 aIndicesSeenHere.Index(nIndex) == wxNOT_FOUND;
b13d92d1
VZ
2724 }
2725
678ebfcd
VZ
2726 wxLogTrace(TRACE_MIME, _T("mailcap %s: %s [%s]"),
2727 data.type.c_str(), data.cmdOpen.c_str(),
2728 overwrite ? _T("replace") : _T("add"));
2729
2730 int n = AddToMimeData
2731 (
2732 data.type,
2733 data.icon,
2734 new wxMimeTypeCommands(data.verbs, data.commands),
2735 wxArrayString() /* extensions */,
2736 data.desc,
2737 overwrite
2738 );
2739
2740 if ( overwrite )
2741 {
2742 aIndicesSeenHere.Add(n);
2743 }
b13d92d1 2744 }
cc385968 2745
d0ee33f5 2746 return true;
b13d92d1
VZ
2747}
2748
696e1ea0 2749size_t wxMimeTypesManagerImpl::EnumAllFileTypes(wxArrayString& mimetypes)
1b986aef 2750{
a6c65e88
VZ
2751 InitIfNeeded();
2752
54acce90
VZ
2753 mimetypes.Empty();
2754
2755 wxString type;
2756 size_t count = m_aTypes.GetCount();
2757 for ( size_t n = 0; n < count; n++ )
2758 {
2759 // don't return template types from here (i.e. anything containg '*')
2760 type = m_aTypes[n];
2761 if ( type.Find(_T('*')) == wxNOT_FOUND )
2762 {
2763 mimetypes.Add(type);
2764 }
2765 }
1b986aef 2766
54acce90 2767 return mimetypes.GetCount();
1b986aef
VZ
2768}
2769
a6c65e88
VZ
2770// ----------------------------------------------------------------------------
2771// writing to MIME type files
2772// ----------------------------------------------------------------------------
2773
2b813b73 2774bool wxMimeTypesManagerImpl::Unassociate(wxFileType *ft)
a6c65e88 2775{
2b813b73
VZ
2776 wxArrayString sMimeTypes;
2777 ft->GetMimeTypes (sMimeTypes);
a6c65e88 2778
2b813b73
VZ
2779 wxString sMime;
2780 size_t i;
2781 for (i = 0; i < sMimeTypes.GetCount(); i ++)
2782 {
2783 sMime = sMimeTypes.Item(i);
2784 int nIndex = m_aTypes.Index (sMime);
2785 if ( nIndex == wxNOT_FOUND)
2786 {
2787 // error if we get here ??
d0ee33f5 2788 return false;
2b813b73
VZ
2789 }
2790 else
2791 {
d0ee33f5 2792 WriteMimeInfo(nIndex, true );
e9d9f136
VZ
2793 m_aTypes.RemoveAt(nIndex);
2794 m_aEntries.RemoveAt(nIndex);
2795 m_aExtensions.RemoveAt(nIndex);
2796 m_aDescriptions.RemoveAt(nIndex);
2797 m_aIcons.RemoveAt(nIndex);
2b813b73
VZ
2798 }
2799 }
2800 // check data integrity
2801 wxASSERT( m_aTypes.Count() == m_aEntries.Count() &&
2802 m_aTypes.Count() == m_aExtensions.Count() &&
2803 m_aTypes.Count() == m_aIcons.Count() &&
2804 m_aTypes.Count() == m_aDescriptions.Count() );
2805
d0ee33f5 2806 return true;
a6c65e88
VZ
2807}
2808
f6bcfd97
BP
2809// ----------------------------------------------------------------------------
2810// private functions
2811// ----------------------------------------------------------------------------
2812
2813static bool IsKnownUnimportantField(const wxString& fieldAll)
2814{
2815 static const wxChar *knownFields[] =
2816 {
2817 _T("x-mozilla-flags"),
2818 _T("nametemplate"),
2819 _T("textualnewlines"),
2820 };
2821
2822 wxString field = fieldAll.BeforeFirst(_T('='));
2823 for ( size_t n = 0; n < WXSIZEOF(knownFields); n++ )
2824 {
2825 if ( field.CmpNoCase(knownFields[n]) == 0 )
d0ee33f5 2826 return true;
f6bcfd97
BP
2827 }
2828
d0ee33f5 2829 return false;
f6bcfd97
BP
2830}
2831
8e124873 2832#endif
b79e32cc 2833 // wxUSE_MIMETYPE && wxUSE_FILE && wxUSE_TEXTFILE
b13d92d1 2834