1 /////////////////////////////////////////////////////////////////////////////
2 // Name: unix/mimetype.cpp
3 // Purpose: classes and functions to manage MIME types
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence (part of wxExtra library)
10 /////////////////////////////////////////////////////////////////////////////
12 // known bugs; there may be others!! chris elliott, biol75@york.ac.uk 27 Mar 01
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
28 // 9) KDE does not yet handle multiple actions; Netscape mode never will
31 TODO: this file is a mess, we need to split it and reformet/review
35 // ============================================================================
37 // ============================================================================
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 // for compilers that support precompilation, includes "wx.h".
44 #include "wx/wxprec.h"
54 #if wxUSE_MIMETYPE && wxUSE_FILE && wxUSE_TEXTFILE
57 #include "wx/string.h"
64 #include "wx/dynarray.h"
65 #include "wx/confbase.h"
68 #include "wx/textfile.h"
71 #include "wx/tokenzr.h"
72 #include "wx/iconloc.h"
73 #include "wx/filename.h"
75 #include "wx/unix/mimetype.h"
77 // other standard headers
81 /* silence warnings for comparing unsigned int's <0 */
82 # pragma message disable unscomzer
85 // wxMimeTypeCommands stores the verbs defined for the given MIME type with
87 class wxMimeTypeCommands
90 wxMimeTypeCommands() {}
92 wxMimeTypeCommands(const wxArrayString
& verbs
,
93 const wxArrayString
& commands
)
99 // add a new verb with the command or replace the old value
100 void AddOrReplaceVerb(const wxString
& verb
, const wxString
& cmd
)
102 int n
= m_verbs
.Index(verb
, false /* ignore case */);
103 if ( n
== wxNOT_FOUND
)
114 void Add(const wxString
& s
)
116 m_verbs
.Add(s
.BeforeFirst(wxT('=')));
117 m_commands
.Add(s
.AfterFirst(wxT('=')));
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
]; }
125 bool HasVerb(const wxString
& verb
) const
126 { return m_verbs
.Index(verb
) != wxNOT_FOUND
; }
128 wxString
GetCommandForVerb(const wxString
& verb
, size_t *idx
= NULL
) const
132 int n
= m_verbs
.Index(verb
);
133 if ( n
!= wxNOT_FOUND
)
135 s
= m_commands
[(size_t)n
];
143 // get a "verb=command" string
144 wxString
GetVerbCmd(size_t n
) const
146 return m_verbs
[n
] + wxT('=') + m_commands
[n
];
150 wxArrayString m_verbs
;
151 wxArrayString m_commands
;
154 // this class extends wxTextFile
157 class wxMimeTextFile
: public wxTextFile
161 wxMimeTextFile () : wxTextFile () {};
162 wxMimeTextFile(const wxString
& strFile
) : wxTextFile(strFile
) {};
164 int pIndexOf(const wxString
& sSearch
, bool bIncludeComments
= false, int iStart
= 0)
167 int nResult
= wxNOT_FOUND
;
168 if (i
>= GetLineCount())
171 wxString sTest
= sSearch
;
175 if (bIncludeComments
)
177 while ( i
< GetLineCount() )
181 if (sLine
.Contains(sTest
))
188 while ( (i
< GetLineCount()) )
192 if ( ! sLine
.StartsWith(wxT("#")))
194 if (sLine
.Contains(sTest
))
205 bool CommentLine(int nIndex
)
209 if (nIndex
>= (int)GetLineCount() )
211 GetLine(nIndex
) = GetLine(nIndex
).Prepend(wxT("#"));
215 bool CommentLine(const wxString
& sTest
)
217 int nIndex
= pIndexOf(sTest
);
220 if (nIndex
>= (int)GetLineCount() )
223 GetLine(nIndex
) = GetLine(nIndex
).Prepend(wxT("#"));
227 wxString
GetVerb(size_t i
)
229 if (i
> GetLineCount() )
230 return wxEmptyString
;
232 wxString sTmp
= GetLine(i
).BeforeFirst(wxT('='));
236 wxString
GetCmd(size_t i
)
238 if (i
> GetLineCount() )
239 return wxEmptyString
;
241 wxString sTmp
= GetLine(i
).AfterFirst(wxT('='));
246 // in case we're compiling in non-GUI mode
247 class WXDLLEXPORT wxIcon
;
249 // ----------------------------------------------------------------------------
251 // ----------------------------------------------------------------------------
253 // MIME code tracing mask
254 #define TRACE_MIME wxT("mime")
256 // give trace messages about the results of mailcap tests
257 #define TRACE_MIME_TEST wxT("mimetest")
259 // ----------------------------------------------------------------------------
261 // ----------------------------------------------------------------------------
263 // there are some fields which we don't understand but for which we don't give
264 // warnings as we know that they're not important - this function is used to
266 static bool IsKnownUnimportantField(const wxString
& field
);
268 // ----------------------------------------------------------------------------
270 // ----------------------------------------------------------------------------
273 // This class uses both mailcap and mime.types to gather information about file
276 // The information about mailcap file was extracted from metamail(1) sources
277 // and documentation and subsequently revised when I found the RFC 1524
280 // Format of mailcap file: spaces are ignored, each line is either a comment
281 // (starts with '#') or a line of the form <field1>;<field2>;...;<fieldN>.
282 // A backslash can be used to quote semicolons and newlines (and, in fact,
283 // anything else including itself).
285 // The first field is always the MIME type in the form of type/subtype (see RFC
286 // 822) where subtype may be '*' meaning "any". Following metamail, we accept
287 // "type" which means the same as "type/*", although I'm not sure whether this
290 // The second field is always the command to run. It is subject to
291 // parameter/filename expansion described below.
293 // All the following fields are optional and may not be present at all. If
294 // they're present they may appear in any order, although each of them should
295 // appear only once. The optional fields are the following:
296 // * notes=xxx is an uninterpreted string which is silently ignored
297 // * test=xxx is the command to be used to determine whether this mailcap line
298 // applies to our data or not. The RHS of this field goes through the
299 // parameter/filename expansion (as the 2nd field) and the resulting string
300 // is executed. The line applies only if the command succeeds, i.e. returns 0
302 // * print=xxx is the command to be used to print (and not view) the data of
303 // this type (parameter/filename expansion is done here too)
304 // * edit=xxx is the command to open/edit the data of this type
305 // * needsterminal means that a new interactive console must be created for
307 // * copiousoutput means that the viewer doesn't interact with the user but
308 // produces (possibly) a lof of lines of output on stdout (i.e. "cat" is a
309 // good example), thus it might be a good idea to use some kind of paging
311 // * textualnewlines means not to perform CR/LF translation (not honored)
312 // * compose and composetyped fields are used to determine the program to be
313 // called to create a new message pert in the specified format (unused).
315 // Parameter/filename expansion:
316 // * %s is replaced with the (full) file name
317 // * %t is replaced with MIME type/subtype of the entry
318 // * for multipart type only %n is replaced with the nnumber of parts and %F is
319 // replaced by an array of (content-type, temporary file name) pairs for all
320 // message parts (TODO)
321 // * %{parameter} is replaced with the value of parameter taken from
322 // Content-type header line of the message.
325 // There are 2 possible formats for mime.types file, one entry per line (used
326 // for global mime.types and called Mosaic format) and "expanded" format where
327 // an entry takes multiple lines (used for users mime.types and called
330 // For both formats spaces are ignored and lines starting with a '#' are
331 // comments. Each record has one of two following forms:
332 // a) for "brief" format:
333 // <mime type> <space separated list of extensions>
334 // b) for "expanded" format:
335 // type=<mime type> BACKSLASH
336 // desc="<description>" BACKSLASH
337 // exts="<comma separated list of extensions>"
339 // (where BACKSLASH is a literal '\\' which we can't put here because cpp
342 // We try to autodetect the format of mime.types: if a non-comment line starts
343 // with "type=" we assume the second format, otherwise the first one.
345 // there may be more than one entry for one and the same mime type, to
346 // choose the right one we have to run the command specified in the test
347 // field on our data.
349 // ----------------------------------------------------------------------------
351 // ----------------------------------------------------------------------------
353 // GNOME stores the info we're interested in in several locations:
354 // 1. xxx.keys files under /usr/share/mime-info
355 // 2. xxx.keys files under ~/.gnome/mime-info
357 // The format of xxx.keys file is the following:
362 // with blank lines separating the entries and indented lines starting with
363 // TABs. We're interested in the field icon-filename whose value is the path
364 // containing the icon.
366 // Update (Chris Elliott): apparently there may be an optional "[lang]" prefix
367 // just before the field name.
370 bool wxMimeTypesManagerImpl::CheckGnomeDirsExist ()
373 wxGetHomeDir( &gnomedir
);
374 wxString sTmp
= gnomedir
;
375 sTmp
= sTmp
+ wxT("/.gnome");
376 if (! wxDir::Exists ( sTmp
) )
378 if (!wxMkdir ( sTmp
))
380 wxLogError(wxT("Failed to create directory %s/.gnome."), sTmp
.c_str());
384 sTmp
= sTmp
+ wxT("/mime-info");
385 if (! wxDir::Exists ( sTmp
) )
387 if (!wxMkdir ( sTmp
))
389 wxLogError(wxT("Failed to create directory %s/mime-info."), sTmp
.c_str());
397 bool wxMimeTypesManagerImpl::WriteGnomeKeyFile(int index
, bool delete_index
)
400 wxGetHomeDir( &gnomedir
);
402 wxMimeTextFile
outfile( gnomedir
+ wxT("/.gnome/mime-info/user.keys"));
403 // if this fails probably Gnome is not installed ??
404 // create it anyway as a private mime store
406 #if defined(__WXGTK20__) && wxUSE_UNICODE
407 if (! outfile
.Open ( wxConvUTF8
) )
409 if (! outfile
.Open () )
414 if (!CheckGnomeDirsExist() )
420 wxString sTmp
, strType
= m_aTypes
[index
];
421 int nIndex
= outfile
.pIndexOf(strType
);
422 if ( nIndex
== wxNOT_FOUND
)
424 outfile
.AddLine ( strType
+ wxT(':') );
425 // see file:/usr/doc/gnome-libs-devel-1.0.40/devel-docs/mime-type-handling.txt
426 // as this does not deal with internationalisation
427 // wxT( "\t[en_US]") + verb + wxT ('=') + cmd + wxT(" %f");
428 wxMimeTypeCommands
* entries
= m_aEntries
[index
];
429 size_t count
= entries
->GetCount();
430 for ( size_t i
= 0; i
< count
; i
++ )
432 sTmp
= entries
->GetVerbCmd(i
);
433 sTmp
.Replace( wxT("%s"), wxT("%f") );
434 sTmp
= wxT( "\t") + sTmp
;
435 outfile
.AddLine( sTmp
);
437 //for international use do something like this
438 //outfile.AddLine ( wxString( "\t[en_US]icon-filename=") + cmd );
439 outfile
.AddLine( wxT( "\ticon-filename=") + m_aIcons
[index
] );
444 outfile
.CommentLine(nIndex
);
446 wxMimeTypeCommands sOld
;
447 size_t nOld
= nIndex
+ 1;
448 bool oldEntryEnd
= false;
449 while ( (nOld
< outfile
.GetLineCount() )&& (!oldEntryEnd
))
451 sTmp
= outfile
.GetLine(nOld
);
452 if ( (sTmp
[0u] == wxT('\t')) || (sTmp
[0u] == wxT('#')) )
454 // we have another line to deal with
455 outfile
.CommentLine(nOld
);
458 // add the line to our store
459 if ((!delete_index
) && (sTmp
[0u] == wxT('\t')))
462 // next mimetpye ?? or blank line
467 // list of entries in our data; these should all be in sOld,
468 // though sOld may also contain other entries , eg flags
471 wxMimeTypeCommands
* entries
= m_aEntries
[index
];
473 for (i
=0; i
< entries
->GetCount(); i
++)
475 // replace any entries in sold that match verbs we know
476 sOld
.AddOrReplaceVerb( entries
->GetVerb(i
), entries
->GetCmd(i
) );
479 //sOld should also contain the icon
480 if ( !m_aIcons
[index
].empty() )
481 sOld
.AddOrReplaceVerb( wxT("icon-filename"), m_aIcons
[index
] );
483 for (i
=0; i
< sOld
.GetCount(); i
++)
485 sTmp
= sOld
.GetVerbCmd(i
);
486 sTmp
.Replace( wxT("%s"), wxT("%f") );
487 sTmp
= wxT("\t") + sTmp
;
489 outfile
.InsertLine( sTmp
, nIndex
);
494 bool bTmp
= outfile
.Write();
499 bool wxMimeTypesManagerImpl::WriteGnomeMimeFile(int index
, bool delete_index
)
502 wxGetHomeDir( &gnomedir
);
504 wxMimeTextFile
outfile( gnomedir
+ wxT("/.gnome/mime-info/user.mime"));
505 // if this fails probably Gnome is not installed ??
506 // create it anyway as a private mime store
507 if (! outfile
.Open() )
511 if (!CheckGnomeDirsExist() )
517 wxString strType
= m_aTypes
[index
];
518 int nIndex
= outfile
.pIndexOf(strType
);
519 if ( nIndex
== wxNOT_FOUND
)
521 outfile
.AddLine( strType
);
522 outfile
.AddLine( wxT("\text:") + m_aExtensions
.Item(index
) );
528 outfile
.CommentLine(nIndex
);
529 outfile
.CommentLine(nIndex
+1);
533 // check for next line being the right one to replace ??
534 wxString sOld
= outfile
.GetLine(nIndex
+1);
535 if (sOld
.Contains( wxT("\text: ")))
537 outfile
.GetLine(nIndex
+1) = wxT("\text: ") + m_aExtensions
.Item(index
);
541 outfile
.InsertLine( wxT("\text: ") + m_aExtensions
.Item(index
), nIndex
+ 1 );
546 bool bTmp
= outfile
.Write();
550 void wxMimeTypesManagerImpl::LoadGnomeDataFromKeyFile(const wxString
& filename
,
551 const wxArrayString
& dirs
)
553 wxTextFile
textfile(filename
);
554 #if defined(__WXGTK20__) && wxUSE_UNICODE
555 if ( !textfile
.Open(wxConvUTF8
) )
557 if ( !textfile
.Open() )
561 wxLogTrace(TRACE_MIME
, wxT("--- Opened Gnome file %s ---"),
564 // values for the entry being parsed
565 wxString curMimeType
, curIconFile
;
566 wxMimeTypeCommands
* entry
= new wxMimeTypeCommands
;
568 // these are always empty in this file
569 wxArrayString strExtensions
;
573 size_t nLineCount
= textfile
.GetLineCount();
575 while ( nLine
< nLineCount
)
577 pc
= textfile
[nLine
].c_str();
578 if ( *pc
!= wxT('#') )
581 wxLogTrace(TRACE_MIME
, wxT("--- Reading from Gnome file %s '%s' ---"),
582 filename
.c_str(),pc
);
585 if (sTmp
.Contains(wxT("=")) )
587 if (sTmp
.Contains( wxT("icon-filename=") ) )
590 curIconFile
= sTmp
.AfterFirst(wxT('='));
592 else if (sTmp
.Contains( wxT("icon_filename=") ) )
595 curIconFile
= sTmp
.AfterFirst(wxT('='));
597 if (!wxFileExists(curIconFile
))
599 size_t nDirs
= dirs
.GetCount();
600 for (size_t nDir
= 0; nDir
< nDirs
; nDir
++)
602 wxFileName
newFile( curIconFile
);
603 newFile
.SetPath( dirs
[nDir
] );
604 newFile
.AppendDir( wxT("pixmaps") );
605 newFile
.AppendDir( wxT("document-icons") );
606 newFile
.SetExt( wxT("png") );
607 if (newFile
.FileExists())
608 curIconFile
= newFile
.GetFullPath();
612 else //: some other field,
614 //may contain lines like this (RH7)
615 // \t[lang]open.tex."TeX this file"=tex %f
616 // \tflags.tex.flags=needsterminal
617 // \topen.latex."LaTeX this file"=latex %f
618 // \tflags.latex.flags=needsterminal
622 // \topen.convert.Convert file to Postscript=dvips %f -o `basename %f .dvi`.ps
624 // for now ignore lines with flags in...FIX
625 sTmp
= sTmp
.AfterLast(wxT(']'));
626 sTmp
= sTmp
.AfterLast(wxT('\t'));
627 sTmp
.Trim(false).Trim();
628 if (0 == sTmp
.Replace( wxT("%f"), wxT("%s") ))
629 sTmp
= sTmp
+ wxT(" %s");
633 } // emd of has an equals sign
636 // not a comment and not an equals sign
637 if (sTmp
.Contains(wxT('/')))
639 // this is the start of the new mimetype
640 // overwrite any existing data
641 if (! curMimeType
.empty())
643 AddToMimeData( curMimeType
, curIconFile
, entry
, strExtensions
, strDesc
);
645 // now get ready for next bit
646 entry
= new wxMimeTypeCommands
;
649 curMimeType
= sTmp
.BeforeFirst(wxT(':'));
652 } // end of not a comment
654 // ignore blank lines
656 } // end of while, save any data
658 if (! curMimeType
.empty())
659 AddToMimeData( curMimeType
, curIconFile
, entry
, strExtensions
, strDesc
);
664 void wxMimeTypesManagerImpl::LoadGnomeMimeTypesFromMimeFile(const wxString
& filename
)
666 wxTextFile
textfile(filename
);
667 if ( !textfile
.Open() )
670 wxLogTrace(TRACE_MIME
,
671 wxT("--- Opened Gnome file %s ---"),
674 // values for the entry being parsed
675 wxString curMimeType
, curExtList
;
678 size_t nLineCount
= textfile
.GetLineCount();
679 for ( size_t nLine
= 0; /* nothing */; nLine
++ )
681 if ( nLine
< nLineCount
)
683 pc
= textfile
[nLine
].c_str();
684 if ( *pc
== wxT('#') )
692 // so that we will fall into the "if" below
699 if ( !curMimeType
.empty() && !curExtList
.empty() )
701 wxLogTrace(TRACE_MIME
,
702 wxT("--- At end of Gnome file finding mimetype %s ---"),
703 curMimeType
.c_str());
705 AddMimeTypeInfo(curMimeType
, curExtList
, wxEmptyString
);
710 // the end - this can only happen if nLine == nLineCount
719 // what do we have here?
720 if ( *pc
== wxT('\t') )
722 // this is a field=value ling
723 pc
++; // skip leading TAB
725 static const int lenField
= 5; // strlen("ext: ")
726 if ( wxStrncmp(pc
, wxT("ext: "), lenField
) == 0 )
728 // skip it and take everything left until the end of line
729 curExtList
= pc
+ lenField
;
731 //else: some other field, we don't care
735 // this is the start of the new section
736 wxLogTrace(TRACE_MIME
,
737 wxT("--- In Gnome file finding mimetype %s ---"),
738 curMimeType
.c_str());
740 if (! curMimeType
.empty())
741 AddMimeTypeInfo(curMimeType
, curExtList
, wxEmptyString
);
745 while ( *pc
!= wxT(':') && *pc
!= wxT('\0') )
747 curMimeType
+= *pc
++;
754 void wxMimeTypesManagerImpl::LoadGnomeMimeFilesFromDir(
755 const wxString
& dirbase
, const wxArrayString
& dirs
)
757 wxASSERT_MSG( !dirbase
.empty() && !wxEndsWithPathSeparator(dirbase
),
758 wxT("base directory shouldn't end with a slash") );
760 wxString dirname
= dirbase
;
761 dirname
<< wxT("/mime-info");
763 if ( !wxDir::Exists(dirname
) )
767 if ( !dir
.IsOpened() )
770 // we will concatenate it with filename to get the full path below
776 cont
= dir
.GetFirst(&filename
, wxT("*.mime"), wxDIR_FILES
);
779 LoadGnomeMimeTypesFromMimeFile(dirname
+ filename
);
781 cont
= dir
.GetNext(&filename
);
784 cont
= dir
.GetFirst(&filename
, wxT("*.keys"), wxDIR_FILES
);
787 LoadGnomeDataFromKeyFile(dirname
+ filename
, dirs
);
789 cont
= dir
.GetNext(&filename
);
792 // Hack alert: We scan all icons and deduce the
793 // mime-type from the file name.
795 dirname
<< wxT("/pixmaps/document-icons");
797 // these are always empty in this file
798 wxArrayString strExtensions
;
801 if ( !wxDir::Exists(dirname
) )
803 // Jst test for default GPE dir also
804 dirname
= wxT("/usr/share/gpe/pixmaps/default/filemanager/document-icons");
806 if ( !wxDir::Exists(dirname
) )
810 wxDir
dir2( dirname
);
812 cont
= dir2
.GetFirst(&filename
, wxT("gnome-*.png"), wxDIR_FILES
);
815 wxString mimeType
= filename
;
816 mimeType
.Remove( 0, 6 ); // remove "gnome-"
817 mimeType
.Remove( mimeType
.Len()-4, 4 ); // remove ".png"
818 int pos
= mimeType
.Find( wxT("-") );
819 if (pos
!= wxNOT_FOUND
)
821 mimeType
.SetChar( pos
, wxT('/') );
822 wxString iconFile
= dirname
;
823 iconFile
<< wxT("/");
824 iconFile
<< filename
;
825 AddToMimeData( mimeType
, iconFile
, NULL
, strExtensions
, strDesc
, true );
828 cont
= dir2
.GetNext(&filename
);
832 void wxMimeTypesManagerImpl::GetGnomeMimeInfo(const wxString
& sExtraDir
)
836 wxString gnomedir
= wxGetenv( wxT("GNOMEDIR") );
837 if (!gnomedir
.empty())
839 gnomedir
<< wxT("/share");
840 dirs
.Add( gnomedir
);
843 dirs
.Add(wxT("/usr/share"));
844 dirs
.Add(wxT("/usr/local/share"));
846 gnomedir
= wxGetHomeDir();
847 gnomedir
<< wxT("/.gnome");
848 dirs
.Add( gnomedir
);
850 if (!sExtraDir
.empty())
851 dirs
.Add( sExtraDir
);
853 size_t nDirs
= dirs
.GetCount();
854 for ( size_t nDir
= 0; nDir
< nDirs
; nDir
++ )
856 LoadGnomeMimeFilesFromDir(dirs
[nDir
], dirs
);
860 // ----------------------------------------------------------------------------
862 // ----------------------------------------------------------------------------
865 // KDE stores the icon info in its .kdelnk files. The file for mimetype/subtype
866 // may be found in either of the following locations
868 // 1. $KDEDIR/share/mimelnk/mimetype/subtype.kdelnk
869 // 2. ~/.kde/share/mimelnk/mimetype/subtype.kdelnk
871 // The format of a .kdelnk file is almost the same as the one used by
872 // wxFileConfig, i.e. there are groups, comments and entries. The icon is the
873 // value for the entry "Type"
875 // kde writing; see http://webcvs.kde.org/cgi-bin/cvsweb.cgi/~checkout~/kdelibs/kio/DESKTOP_ENTRY_STANDARD
876 // for now write to .kdelnk but should eventually do .desktop instead (in preference??)
878 bool wxMimeTypesManagerImpl::CheckKDEDirsExist( const wxString
&sOK
, const wxString
&sTest
)
882 return wxDir::Exists(sOK
);
886 wxString sStart
= sOK
+ wxT("/") + sTest
.BeforeFirst(wxT('/'));
887 if (!wxDir::Exists(sStart
))
889 wxString sEnd
= sTest
.AfterFirst(wxT('/'));
890 return CheckKDEDirsExist(sStart
, sEnd
);
894 bool wxMimeTypesManagerImpl::WriteKDEMimeFile(int index
, bool delete_index
)
896 wxMimeTextFile appoutfile
, mimeoutfile
;
897 wxString sHome
= wxGetHomeDir();
898 wxString sTmp
= wxT(".kde/share/mimelnk/");
899 wxString sMime
= m_aTypes
[index
];
900 CheckKDEDirsExist(sHome
, sTmp
+ sMime
.BeforeFirst(wxT('/')) );
901 sTmp
= sHome
+ wxT('/') + sTmp
+ sMime
+ wxT(".kdelnk");
904 bool bMimeExists
= mimeoutfile
.Open(sTmp
);
907 bTemp
= mimeoutfile
.Create(sTmp
);
908 // some unknown error eg out of disk space
913 sTmp
= wxT(".kde/share/applnk/");
914 CheckKDEDirsExist(sHome
, sTmp
+ sMime
.AfterFirst(wxT('/')) );
915 sTmp
= sHome
+ wxT('/') + sTmp
+ sMime
.AfterFirst(wxT('/')) + wxT(".kdelnk");
918 bAppExists
= appoutfile
.Open(sTmp
);
921 bTemp
= appoutfile
.Create(sTmp
);
922 // some unknown error eg out of disk space
927 // fixed data; write if new file
930 mimeoutfile
.AddLine(wxT("#KDE Config File"));
931 mimeoutfile
.AddLine(wxT("[KDE Desktop Entry]"));
932 mimeoutfile
.AddLine(wxT("Version=1.0"));
933 mimeoutfile
.AddLine(wxT("Type=MimeType"));
934 mimeoutfile
.AddLine(wxT("MimeType=") + sMime
);
939 mimeoutfile
.AddLine(wxT("#KDE Config File"));
940 mimeoutfile
.AddLine(wxT("[KDE Desktop Entry]"));
941 appoutfile
.AddLine(wxT("Version=1.0"));
942 appoutfile
.AddLine(wxT("Type=Application"));
943 appoutfile
.AddLine(wxT("MimeType=") + sMime
+ wxT(';'));
948 mimeoutfile
.CommentLine(wxT("Comment="));
950 mimeoutfile
.AddLine(wxT("Comment=") + m_aDescriptions
[index
]);
951 appoutfile
.CommentLine(wxT("Name="));
953 appoutfile
.AddLine(wxT("Comment=") + m_aDescriptions
[index
]);
955 sTmp
= m_aIcons
[index
];
956 // we can either give the full path, or the shortfilename if its in
957 // one of the directories we search
958 mimeoutfile
.CommentLine(wxT("Icon=") );
960 mimeoutfile
.AddLine(wxT("Icon=") + sTmp
);
961 appoutfile
.CommentLine(wxT("Icon=") );
963 appoutfile
.AddLine(wxT("Icon=") + sTmp
);
965 sTmp
= wxT(" ") + m_aExtensions
[index
];
967 wxStringTokenizer
tokenizer(sTmp
, wxT(" "));
968 sTmp
= wxT("Patterns=");
969 mimeoutfile
.CommentLine(sTmp
);
970 while ( tokenizer
.HasMoreTokens() )
972 // holds an extension; need to change it to *.ext;
973 wxString e
= wxT("*.") + tokenizer
.GetNextToken() + wxT(";");
978 mimeoutfile
.AddLine(sTmp
);
980 wxMimeTypeCommands
* entries
= m_aEntries
[index
];
981 // if we don't find open just have an empty string ... FIX this
982 sTmp
= entries
->GetCommandForVerb(wxT("open"));
983 sTmp
.Replace( wxT("%s"), wxT("%f") );
985 mimeoutfile
.CommentLine(wxT("DefaultApp=") );
987 mimeoutfile
.AddLine(wxT("DefaultApp=") + sTmp
);
989 sTmp
.Replace( wxT("%f"), wxT("") );
990 appoutfile
.CommentLine(wxT("Exec="));
992 appoutfile
.AddLine(wxT("Exec=") + sTmp
);
994 if (entries
->GetCount() > 1)
996 //other actions as well as open
1000 if (mimeoutfile
.Write())
1002 mimeoutfile
.Close();
1003 if (appoutfile
.Write())
1010 void wxMimeTypesManagerImpl::LoadKDELinksForMimeSubtype(const wxString
& dirbase
,
1011 const wxString
& subdir
,
1012 const wxString
& filename
,
1013 const wxArrayString
& icondirs
)
1015 wxMimeTextFile file
;
1016 if ( !file
.Open(dirbase
+ filename
) )
1019 wxLogTrace(TRACE_MIME
, wxT("loading KDE file %s"),
1020 (dirbase
+filename
).c_str());
1022 wxMimeTypeCommands
* entry
= new wxMimeTypeCommands
;
1023 wxArrayString sExts
;
1024 wxString mimetype
, mime_desc
, strIcon
;
1026 int nIndex
= file
.pIndexOf( wxT("MimeType=") );
1027 if (nIndex
== wxNOT_FOUND
)
1029 // construct mimetype from the directory name and the basename of the
1030 // file (it always has .kdelnk extension)
1031 mimetype
<< subdir
<< wxT('/') << filename
.BeforeLast( wxT('.') );
1034 mimetype
= file
.GetCmd(nIndex
);
1036 // first find the description string: it is the value in either "Comment="
1037 // line or "Comment[<locale_name>]=" one
1038 nIndex
= wxNOT_FOUND
;
1042 wxLocale
*locale
= wxGetLocale();
1045 // try "Comment[locale name]" first
1046 comment
<< wxT("Comment[") + locale
->GetName() + wxT("]=");
1047 nIndex
= file
.pIndexOf(comment
);
1049 #endif // wxUSE_INTL
1051 if ( nIndex
== wxNOT_FOUND
)
1053 comment
= wxT("Comment=");
1054 nIndex
= file
.pIndexOf(comment
);
1057 if ( nIndex
!= wxNOT_FOUND
)
1058 mime_desc
= file
.GetCmd(nIndex
);
1059 //else: no description
1061 // next find the extensions
1062 wxString mime_extension
;
1064 nIndex
= file
.pIndexOf(wxT("Patterns="));
1065 if ( nIndex
!= wxNOT_FOUND
)
1067 wxString exts
= file
.GetCmd(nIndex
);
1069 wxStringTokenizer
tokenizer(exts
, wxT(";"));
1070 while ( tokenizer
.HasMoreTokens() )
1072 wxString e
= tokenizer
.GetNextToken();
1073 if ( e
.Left(2) != wxT("*.") )
1074 continue; // don't support too difficult patterns
1076 if ( !mime_extension
.empty() )
1078 // separate from the previous ext
1079 mime_extension
<< wxT(' ');
1082 mime_extension
<< e
.Mid(2);
1086 sExts
.Add(mime_extension
);
1088 // ok, now we can take care of icon:
1090 nIndex
= file
.pIndexOf(wxT("Icon="));
1091 if ( nIndex
!= wxNOT_FOUND
)
1093 strIcon
= file
.GetCmd(nIndex
);
1094 wxLogTrace(TRACE_MIME
, wxT(" icon %s"), strIcon
.c_str());
1095 //it could be the real path, but more often a short name
1097 if (!wxFileExists(strIcon
))
1099 // icon is just the short name
1100 if ( !strIcon
.empty() )
1102 // we must check if the file exists because it may be stored
1103 // in many locations, at least ~/.kde and $KDEDIR
1104 size_t nDir
, nDirs
= icondirs
.GetCount();
1105 for ( nDir
= 0; nDir
< nDirs
; nDir
++ )
1107 wxFileName
fnameIcon( strIcon
);
1108 wxFileName
fname( icondirs
[nDir
], fnameIcon
.GetName() );
1109 fname
.SetExt( wxT("png") );
1110 if (fname
.FileExists())
1112 strIcon
= fname
.GetFullPath();
1113 wxLogTrace(TRACE_MIME
, wxT(" iconfile %s"), strIcon
.c_str());
1121 // now look for lines which know about the application
1122 // exec= or DefaultApp=
1124 nIndex
= file
.pIndexOf(wxT("DefaultApp"));
1126 if ( nIndex
== wxNOT_FOUND
)
1128 // no entry try exec
1129 nIndex
= file
.pIndexOf(wxT("Exec"));
1132 if ( nIndex
!= wxNOT_FOUND
)
1134 wxString sTmp
= file
.GetCmd(nIndex
);
1135 // we expect %f; others including %F and %U and %u are possible
1136 if (0 == sTmp
.Replace( wxT("%f"), wxT("%s") ))
1137 sTmp
= sTmp
+ wxT(" %s");
1138 entry
->AddOrReplaceVerb(wxString(wxT("open")), sTmp
);
1141 AddToMimeData(mimetype
, strIcon
, entry
, sExts
, mime_desc
);
1144 void wxMimeTypesManagerImpl::LoadKDELinksForMimeType(const wxString
& dirbase
,
1145 const wxString
& subdir
,
1146 const wxArrayString
& icondirs
)
1148 wxString dirname
= dirbase
;
1151 if ( !dir
.IsOpened() )
1154 wxLogTrace(TRACE_MIME
, wxT("--- Loading from KDE directory %s ---"),
1157 dirname
+= wxT('/');
1160 bool cont
= dir
.GetFirst(&filename
, wxT("*.kdelnk"), wxDIR_FILES
);
1163 LoadKDELinksForMimeSubtype(dirname
, subdir
, filename
, icondirs
);
1165 cont
= dir
.GetNext(&filename
);
1168 // new standard for Gnome and KDE
1169 cont
= dir
.GetFirst(&filename
, wxT("*.desktop"), wxDIR_FILES
);
1172 LoadKDELinksForMimeSubtype(dirname
, subdir
, filename
, icondirs
);
1174 cont
= dir
.GetNext(&filename
);
1178 void wxMimeTypesManagerImpl::LoadKDELinkFilesFromDir(const wxString
& dirbase
,
1179 const wxArrayString
& icondirs
)
1181 wxASSERT_MSG( !dirbase
.empty() && !wxEndsWithPathSeparator(dirbase
),
1182 wxT("base directory shouldn't end with a slash") );
1184 wxString dirname
= dirbase
;
1185 dirname
<< wxT("/mimelnk");
1187 if ( !wxDir::Exists(dirname
) )
1191 if ( !dir
.IsOpened() )
1194 // we will concatenate it with dir name to get the full path below
1195 dirname
+= wxT('/');
1198 bool cont
= dir
.GetFirst(&subdir
, wxEmptyString
, wxDIR_DIRS
);
1201 LoadKDELinksForMimeType(dirname
, subdir
, icondirs
);
1203 cont
= dir
.GetNext(&subdir
);
1207 void wxMimeTypesManagerImpl::GetKDEMimeInfo(const wxString
& sExtraDir
)
1210 wxArrayString icondirs
;
1212 // FIXME: This code is heavily broken. There are three bugs in it:
1213 // 1) it uses only KDEDIR, which is deprecated, instead of using
1214 // list of paths from KDEDIRS and using KDEDIR only if KDEDIRS
1216 // 2) it doesn't look into ~/.kde/share/config/kdeglobals where
1217 // user's settings are stored and thus *ignores* user's settings
1218 // instead of respecting them
1219 // 3) it "tries to guess KDEDIR" and "tries a few likely theme
1220 // names", both of which is completely arbitrary; instead, the
1221 // code should give up if KDEDIR(S) is not set and/or the icon
1222 // theme cannot be determined, because it means that the user is
1223 // not using KDE (and thus is not interested in KDE icons anyway)
1225 // the variable $KDEDIR is set when KDE is running
1226 wxString kdedir
= wxGetenv( wxT("KDEDIR") );
1228 if (!kdedir
.empty())
1230 // $(KDEDIR)/share/config/kdeglobals holds info
1231 // the current icons theme
1232 wxFileName
configFile( kdedir
, wxEmptyString
);
1233 configFile
.AppendDir( wxT("share") );
1234 configFile
.AppendDir( wxT("config") );
1235 configFile
.SetName( wxT("kdeglobals") );
1238 if (configFile
.FileExists() && config
.Open(configFile
.GetFullPath()))
1240 // $(KDEDIR)/share/config -> $(KDEDIR)/share
1241 configFile
.RemoveDir( configFile
.GetDirCount()-1 );
1242 // $(KDEDIR)/share/ -> $(KDEDIR)/share/icons
1243 configFile
.AppendDir( wxT("icons") );
1246 wxString
theme(wxT("default.kde"));
1247 size_t cnt
= config
.GetLineCount();
1248 for (size_t i
= 0; i
< cnt
; i
++)
1250 if (config
[i
].StartsWith(wxT("Theme="), &theme
/*rest*/))
1254 configFile
.AppendDir(theme
);
1258 // $(KDEDIR)/share/config -> $(KDEDIR)/share
1259 configFile
.RemoveDir( configFile
.GetDirCount() - 1 );
1261 // $(KDEDIR)/share/ -> $(KDEDIR)/share/icons
1262 configFile
.AppendDir( wxT("icons") );
1264 // $(KDEDIR)/share/icons -> $(KDEDIR)/share/icons/default.kde
1265 configFile
.AppendDir( wxT("default.kde") );
1268 configFile
.SetName( wxEmptyString
);
1269 configFile
.AppendDir( wxT("32x32") );
1270 configFile
.AppendDir( wxT("mimetypes") );
1272 // Just try a few likely icons theme names
1274 int pos
= configFile
.GetDirCount()-3;
1276 if (!wxDir::Exists(configFile
.GetPath()))
1278 configFile
.RemoveDir( pos
);
1279 configFile
.InsertDir( pos
, wxT("default.kde") );
1282 if (!wxDir::Exists(configFile
.GetPath()))
1284 configFile
.RemoveDir( pos
);
1285 configFile
.InsertDir( pos
, wxT("default") );
1288 if (!wxDir::Exists(configFile
.GetPath()))
1290 configFile
.RemoveDir( pos
);
1291 configFile
.InsertDir( pos
, wxT("crystalsvg") );
1294 if (!wxDir::Exists(configFile
.GetPath()))
1296 configFile
.RemoveDir( pos
);
1297 configFile
.InsertDir( pos
, wxT("crystal") );
1300 if (wxDir::Exists(configFile
.GetPath()))
1301 icondirs
.Add( configFile
.GetFullPath() );
1304 // settings in ~/.kde have maximal priority
1305 dirs
.Add(wxGetHomeDir() + wxT("/.kde/share"));
1306 icondirs
.Add(wxGetHomeDir() + wxT("/.kde/share/icons/"));
1310 dirs
.Add( wxString(kdedir
) + wxT("/share") );
1311 icondirs
.Add( wxString(kdedir
) + wxT("/share/icons/") );
1315 // try to guess KDEDIR
1316 dirs
.Add(wxT("/usr/share"));
1317 dirs
.Add(wxT("/opt/kde/share"));
1318 icondirs
.Add(wxT("/usr/share/icons/"));
1319 icondirs
.Add(wxT("/usr/X11R6/share/icons/")); // Debian/Corel linux
1320 icondirs
.Add(wxT("/opt/kde/share/icons/"));
1323 if (!sExtraDir
.empty())
1324 dirs
.Add(sExtraDir
);
1325 icondirs
.Add(sExtraDir
+ wxT("/icons"));
1327 size_t nDirs
= dirs
.GetCount();
1328 for ( size_t nDir
= 0; nDir
< nDirs
; nDir
++ )
1330 LoadKDELinkFilesFromDir(dirs
[nDir
], icondirs
);
1334 // ----------------------------------------------------------------------------
1335 // wxFileTypeImpl (Unix)
1336 // ----------------------------------------------------------------------------
1338 wxString
wxFileTypeImpl::GetExpandedCommand(const wxString
& verb
, const wxFileType::MessageParameters
& params
) const
1342 while ( (i
< m_index
.GetCount() ) && sTmp
.empty() )
1344 sTmp
= m_manager
->GetCommand( verb
, m_index
[i
] );
1348 return wxFileType::ExpandCommand(sTmp
, params
);
1351 bool wxFileTypeImpl::GetIcon(wxIconLocation
*iconLoc
) const
1355 while ( (i
< m_index
.GetCount() ) && sTmp
.empty() )
1357 sTmp
= m_manager
->m_aIcons
[m_index
[i
]];
1366 iconLoc
->SetFileName(sTmp
);
1372 bool wxFileTypeImpl::GetMimeTypes(wxArrayString
& mimeTypes
) const
1375 for (size_t i
= 0; i
< m_index
.GetCount(); i
++)
1376 mimeTypes
.Add(m_manager
->m_aTypes
[m_index
[i
]]);
1381 size_t wxFileTypeImpl::GetAllCommands(wxArrayString
*verbs
,
1382 wxArrayString
*commands
,
1383 const wxFileType::MessageParameters
& params
) const
1385 wxString vrb
, cmd
, sTmp
;
1387 wxMimeTypeCommands
* sPairs
;
1389 // verbs and commands have been cleared already in mimecmn.cpp...
1390 // if we find no entries in the exact match, try the inexact match
1391 for (size_t n
= 0; ((count
==0) && (n
< m_index
.GetCount())); n
++)
1393 // list of verb = command pairs for this mimetype
1394 sPairs
= m_manager
->m_aEntries
[m_index
[n
]];
1396 for ( i
= 0; i
< sPairs
->GetCount(); i
++ )
1398 vrb
= sPairs
->GetVerb(i
);
1399 // some gnome entries have . inside
1400 vrb
= vrb
.AfterLast(wxT('.'));
1401 cmd
= sPairs
->GetCmd(i
);
1404 cmd
= wxFileType::ExpandCommand(cmd
, params
);
1406 if ( vrb
.IsSameAs(wxT("open")))
1408 verbs
->Insert(vrb
, 0u);
1409 commands
->Insert(cmd
, 0u);
1423 bool wxFileTypeImpl::GetExtensions(wxArrayString
& extensions
)
1425 wxString strExtensions
= m_manager
->GetExtension(m_index
[0]);
1428 // one extension in the space or comma-delimited list
1430 for ( const wxChar
*p
= strExtensions
; /* nothing */; p
++ )
1432 if ( *p
== wxT(' ') || *p
== wxT(',') || *p
== wxT('\0') )
1434 if ( !strExt
.empty() )
1436 extensions
.Add(strExt
);
1439 //else: repeated spaces (shouldn't happen, but it's not that
1440 // important if it does happen)
1442 if ( *p
== wxT('\0') )
1445 else if ( *p
== wxT('.') )
1447 // remove the dot from extension (but only if it's the first char)
1448 if ( !strExt
.empty() )
1452 //else: no, don't append it
1463 // set an arbitrary command,
1464 // could adjust the code to ask confirmation if it already exists and
1465 // overwriteprompt is true, but this is currently ignored as *Associate* has
1466 // no overwrite prompt
1468 wxFileTypeImpl::SetCommand(const wxString
& cmd
,
1469 const wxString
& verb
,
1470 bool WXUNUSED(overwriteprompt
))
1472 wxArrayString strExtensions
;
1473 wxString strDesc
, strIcon
;
1475 wxMimeTypeCommands
*entry
= new wxMimeTypeCommands();
1476 entry
->Add(verb
+ wxT("=") + cmd
+ wxT(" %s "));
1478 wxArrayString strTypes
;
1479 GetMimeTypes(strTypes
);
1480 if (strTypes
.GetCount() < 1)
1485 for (i
= 0; i
< strTypes
.GetCount(); i
++)
1487 if (!m_manager
->DoAssociation(strTypes
[i
], strIcon
, entry
, strExtensions
, strDesc
))
1494 // ignore index on the grouds that we only have one icon in a Unix file
1495 bool wxFileTypeImpl::SetDefaultIcon(const wxString
& strIcon
, int WXUNUSED(index
))
1497 if (strIcon
.empty())
1500 wxArrayString strExtensions
;
1503 wxMimeTypeCommands
*entry
= new wxMimeTypeCommands();
1505 wxArrayString strTypes
;
1506 GetMimeTypes(strTypes
);
1507 if (strTypes
.GetCount() < 1)
1512 for (i
= 0; i
< strTypes
.GetCount(); i
++)
1514 if (!m_manager
->DoAssociation(strTypes
[i
], strIcon
, entry
, strExtensions
, strDesc
))
1521 // ----------------------------------------------------------------------------
1522 // wxMimeTypesManagerImpl (Unix)
1523 // ----------------------------------------------------------------------------
1526 wxMimeTypesManagerImpl::wxMimeTypesManagerImpl()
1528 m_initialized
= false;
1529 m_mailcapStylesInited
= 0;
1532 void wxMimeTypesManagerImpl::InitIfNeeded()
1534 if ( !m_initialized
)
1536 // set the flag first to prevent recursion
1537 m_initialized
= true;
1542 wxString wm
= wxGetenv( wxT("WINDOWMANAGER") );
1544 if (wm
.Find( wxT("kde") ) != wxNOT_FOUND
)
1545 Initialize( wxMAILCAP_KDE
| wxMAILCAP_STANDARD
);
1546 else if (wm
.Find( wxT("gnome") ) != wxNOT_FOUND
)
1547 Initialize( wxMAILCAP_GNOME
| wxMAILCAP_STANDARD
);
1554 // read system and user mailcaps and other files
1555 void wxMimeTypesManagerImpl::Initialize(int mailcapStyles
,
1556 const wxString
& sExtraDir
)
1558 // read mimecap amd mime.types
1559 if ( (mailcapStyles
& wxMAILCAP_NETSCAPE
) ||
1560 (mailcapStyles
& wxMAILCAP_STANDARD
) )
1561 GetMimeInfo(sExtraDir
);
1563 // read GNOME tables
1564 if (mailcapStyles
& wxMAILCAP_GNOME
)
1565 GetGnomeMimeInfo(sExtraDir
);
1568 if (mailcapStyles
& wxMAILCAP_KDE
)
1569 GetKDEMimeInfo(sExtraDir
);
1571 m_mailcapStylesInited
|= mailcapStyles
;
1574 // clear data so you can read another group of WM files
1575 void wxMimeTypesManagerImpl::ClearData()
1579 m_aExtensions
.Clear();
1580 m_aDescriptions
.Clear();
1582 WX_CLEAR_ARRAY(m_aEntries
);
1585 m_mailcapStylesInited
= 0;
1588 wxMimeTypesManagerImpl::~wxMimeTypesManagerImpl()
1593 void wxMimeTypesManagerImpl::GetMimeInfo(const wxString
& sExtraDir
)
1595 // read this for netscape or Metamail formats
1597 // directories where we look for mailcap and mime.types by default
1598 // used by netscape and pine and other mailers, using 2 different formats!
1600 // (taken from metamail(1) sources)
1602 // although RFC 1524 specifies the search path of
1603 // /etc/:/usr/etc:/usr/local/etc only, it doesn't hurt to search in more
1604 // places - OTOH, the RFC also says that this path can be changed with
1605 // MAILCAPS environment variable (containing the colon separated full
1606 // filenames to try) which is not done yet (TODO?)
1608 wxString strHome
= wxGetenv(wxT("HOME"));
1611 dirs
.Add( strHome
+ wxT("/.") );
1612 dirs
.Add( wxT("/etc/") );
1613 dirs
.Add( wxT("/usr/etc/") );
1614 dirs
.Add( wxT("/usr/local/etc/") );
1615 dirs
.Add( wxT("/etc/mail/") );
1616 dirs
.Add( wxT("/usr/public/lib/") );
1617 if (!sExtraDir
.empty())
1618 dirs
.Add( sExtraDir
+ wxT("/") );
1620 size_t nDirs
= dirs
.GetCount();
1621 for ( size_t nDir
= 0; nDir
< nDirs
; nDir
++ )
1623 wxString file
= dirs
[nDir
] + wxT("mailcap");
1624 if ( wxFile::Exists(file
) )
1629 file
= dirs
[nDir
] + wxT("mime.types");
1630 if ( wxFile::Exists(file
) )
1632 ReadMimeTypes(file
);
1637 bool wxMimeTypesManagerImpl::WriteToMimeTypes(int index
, bool delete_index
)
1639 // check we have the right manager
1640 if (! ( m_mailcapStylesInited
& wxMAILCAP_STANDARD
) )
1644 wxString strHome
= wxGetenv(wxT("HOME"));
1646 // and now the users mailcap
1647 wxString strUserMailcap
= strHome
+ wxT("/.mime.types");
1649 wxMimeTextFile file
;
1650 if ( wxFile::Exists(strUserMailcap
) )
1652 bTemp
= file
.Open(strUserMailcap
);
1659 bTemp
= file
.Create(strUserMailcap
);
1665 // test for netscape's header and return false if its found
1666 nIndex
= file
.pIndexOf(wxT("#--Netscape"));
1667 if (nIndex
!= wxNOT_FOUND
)
1669 wxASSERT_MSG(false,wxT("Error in .mime.types \nTrying to mix Netscape and Metamail formats\nFile not modiifed"));
1673 // write it in alternative format
1674 // get rid of unwanted entries
1675 wxString strType
= m_aTypes
[index
];
1676 nIndex
= file
.pIndexOf(strType
);
1678 // get rid of all the unwanted entries...
1679 if (nIndex
!= wxNOT_FOUND
)
1680 file
.CommentLine(nIndex
);
1684 // add the new entries in
1685 wxString sTmp
= strType
.Append(wxT(' '), 40-strType
.Len() );
1686 sTmp
= sTmp
+ m_aExtensions
[index
];
1690 bTemp
= file
.Write();
1697 bool wxMimeTypesManagerImpl::WriteToNSMimeTypes(int index
, bool delete_index
)
1699 //check we have the right managers
1700 if (! ( m_mailcapStylesInited
& wxMAILCAP_NETSCAPE
) )
1704 wxString strHome
= wxGetenv(wxT("HOME"));
1706 // and now the users mailcap
1707 wxString strUserMailcap
= strHome
+ wxT("/.mime.types");
1709 wxMimeTextFile file
;
1710 if ( wxFile::Exists(strUserMailcap
) )
1712 bTemp
= file
.Open(strUserMailcap
);
1719 bTemp
= file
.Create(strUserMailcap
);
1724 // write it in the format that Netscape uses
1726 // test for netscape's header and insert if required...
1727 // this is a comment so use true
1728 nIndex
= file
.pIndexOf(wxT("#--Netscape"), true);
1729 if (nIndex
== wxNOT_FOUND
)
1731 // either empty file or metamail format
1732 // at present we can't cope with mixed formats, so exit to preseve
1733 // metamail entreies
1734 if (file
.GetLineCount() > 0)
1736 wxASSERT_MSG(false, wxT(".mime.types File not in Netscape format\nNo entries written to\n.mime.types or to .mailcap"));
1740 file
.InsertLine(wxT( "#--Netscape Communications Corporation MIME Information" ), 0);
1744 wxString strType
= wxT("type=") + m_aTypes
[index
];
1745 nIndex
= file
.pIndexOf(strType
);
1747 // get rid of all the unwanted entries...
1748 if (nIndex
!= wxNOT_FOUND
)
1750 wxString sOld
= file
[nIndex
];
1751 while ( (sOld
.Contains(wxT("\\"))) && (nIndex
< (int) file
.GetLineCount()) )
1753 file
.CommentLine(nIndex
);
1754 sOld
= file
[nIndex
];
1756 wxLogTrace(TRACE_MIME
, wxT("--- Deleting from mime.types line '%d %s' ---"), nIndex
, sOld
.c_str());
1761 if (nIndex
< (int) file
.GetLineCount())
1762 file
.CommentLine(nIndex
);
1765 nIndex
= (int) file
.GetLineCount();
1767 wxString sTmp
= strType
+ wxT(" \\");
1769 file
.InsertLine(sTmp
, nIndex
);
1771 if ( ! m_aDescriptions
.Item(index
).empty() )
1773 sTmp
= wxT("desc=\"") + m_aDescriptions
[index
]+ wxT("\" \\"); //.trim ??
1777 file
.InsertLine(sTmp
, nIndex
);
1781 wxString sExts
= m_aExtensions
.Item(index
);
1782 sTmp
= wxT("exts=\"") + sExts
.Trim(false).Trim() + wxT("\"");
1786 file
.InsertLine(sTmp
, nIndex
);
1789 bTemp
= file
.Write();
1796 bool wxMimeTypesManagerImpl::WriteToMailCap(int index
, bool delete_index
)
1798 //check we have the right managers
1799 if ( !( ( m_mailcapStylesInited
& wxMAILCAP_NETSCAPE
) ||
1800 ( m_mailcapStylesInited
& wxMAILCAP_STANDARD
) ) )
1804 wxString strHome
= wxGetenv(wxT("HOME"));
1806 // and now the users mailcap
1807 wxString strUserMailcap
= strHome
+ wxT("/.mailcap");
1809 wxMimeTextFile file
;
1810 if ( wxFile::Exists(strUserMailcap
) )
1812 bTemp
= file
.Open(strUserMailcap
);
1819 bTemp
= file
.Create(strUserMailcap
);
1824 // now got a file we can write to ....
1825 wxMimeTypeCommands
* entries
= m_aEntries
[index
];
1827 wxString sCmd
= entries
->GetCommandForVerb(wxT("open"), &iOpen
);
1830 sTmp
= m_aTypes
[index
];
1832 int nIndex
= file
.pIndexOf(sTmp
);
1833 // get rid of all the unwanted entries...
1834 if (nIndex
== wxNOT_FOUND
)
1836 nIndex
= (int) file
.GetLineCount();
1840 sOld
= file
[nIndex
];
1841 wxLogTrace(TRACE_MIME
, wxT("--- Deleting from mailcap line '%d' ---"), nIndex
);
1843 while ( (sOld
.Contains(wxT("\\"))) && (nIndex
< (int) file
.GetLineCount()) )
1845 file
.CommentLine(nIndex
);
1846 if (nIndex
< (int) file
.GetLineCount())
1847 sOld
= sOld
+ file
[nIndex
];
1850 file
.GetLineCount()) file
.CommentLine(nIndex
);
1853 sTmp
= sTmp
+ wxT(";") + sCmd
; //includes wxT(" %s ");
1855 // write it in the format that Netscape uses (default)
1856 if (! ( m_mailcapStylesInited
& wxMAILCAP_STANDARD
) )
1859 file
.InsertLine(sTmp
, nIndex
);
1864 // write extended format
1866 // TODO - FIX this code:
1868 // sOld holds all the entries, but our data store only has some
1869 // eg test= is not stored
1871 // so far we have written the mimetype and command out
1872 wxStringTokenizer
sT(sOld
, wxT(";\\"));
1873 if (sT
.CountTokens() > 2)
1875 // first one mimetype; second one command, rest unknown...
1877 s
= sT
.GetNextToken();
1878 s
= sT
.GetNextToken();
1881 s
= sT
.GetNextToken();
1882 while ( ! s
.empty() )
1884 bool bKnownToken
= false;
1885 if (s
.Contains(wxT("description=")))
1887 if (s
.Contains(wxT("x11-bitmap=")))
1891 for (i
=0; i
< entries
->GetCount(); i
++)
1893 if (s
.Contains(entries
->GetVerb(i
)))
1899 sTmp
= sTmp
+ wxT("; \\");
1900 file
.InsertLine(sTmp
, nIndex
);
1904 s
= sT
.GetNextToken();
1908 if (! m_aDescriptions
[index
].empty() )
1910 sTmp
= sTmp
+ wxT("; \\");
1911 file
.InsertLine(sTmp
, nIndex
);
1913 sTmp
= wxT(" description=\"") + m_aDescriptions
[index
] + wxT("\"");
1916 if (! m_aIcons
[index
].empty() )
1918 sTmp
= sTmp
+ wxT("; \\");
1919 file
.InsertLine(sTmp
, nIndex
);
1921 sTmp
= wxT(" x11-bitmap=\"") + m_aIcons
[index
] + wxT("\"");
1924 if ( entries
->GetCount() > 1 )
1927 for (i
=0; i
< entries
->GetCount(); i
++)
1930 sTmp
= sTmp
+ wxT("; \\");
1931 file
.InsertLine(sTmp
, nIndex
);
1933 sTmp
= wxT(" ") + entries
->GetVerbCmd(i
);
1937 file
.InsertLine(sTmp
, nIndex
);
1941 bTemp
= file
.Write();
1948 wxFileType
* wxMimeTypesManagerImpl::Associate(const wxFileTypeInfo
& ftInfo
)
1952 wxString strType
= ftInfo
.GetMimeType();
1953 wxString strDesc
= ftInfo
.GetDescription();
1954 wxString strIcon
= ftInfo
.GetIconFile();
1956 wxMimeTypeCommands
*entry
= new wxMimeTypeCommands();
1958 if ( ! ftInfo
.GetOpenCommand().empty())
1959 entry
->Add(wxT("open=") + ftInfo
.GetOpenCommand() + wxT(" %s "));
1960 if ( ! ftInfo
.GetPrintCommand().empty())
1961 entry
->Add(wxT("print=") + ftInfo
.GetPrintCommand() + wxT(" %s "));
1963 // now find where these extensions are in the data store and remove them
1964 wxArrayString sA_Exts
= ftInfo
.GetExtensions();
1965 wxString sExt
, sExtStore
;
1967 for (i
=0; i
< sA_Exts
.GetCount(); i
++)
1969 sExt
= sA_Exts
.Item(i
);
1971 // clean up to just a space before and after
1972 sExt
.Trim().Trim(false);
1973 sExt
= wxT(' ') + sExt
+ wxT(' ');
1974 for (nIndex
= 0; nIndex
< m_aExtensions
.GetCount(); nIndex
++)
1976 sExtStore
= m_aExtensions
.Item(nIndex
);
1977 if (sExtStore
.Replace(sExt
, wxT(" ") ) > 0)
1978 m_aExtensions
.Item(nIndex
) = sExtStore
;
1982 if ( !DoAssociation(strType
, strIcon
, entry
, sA_Exts
, strDesc
) )
1985 return GetFileTypeFromMimeType(strType
);
1988 bool wxMimeTypesManagerImpl::DoAssociation(const wxString
& strType
,
1989 const wxString
& strIcon
,
1990 wxMimeTypeCommands
*entry
,
1991 const wxArrayString
& strExtensions
,
1992 const wxString
& strDesc
)
1994 int nIndex
= AddToMimeData(strType
, strIcon
, entry
, strExtensions
, strDesc
, true);
1996 if ( nIndex
== wxNOT_FOUND
)
1999 return WriteMimeInfo(nIndex
, false);
2002 bool wxMimeTypesManagerImpl::WriteMimeInfo(int nIndex
, bool delete_mime
)
2006 if ( m_mailcapStylesInited
& wxMAILCAP_STANDARD
)
2008 // write in metamail format;
2009 if (WriteToMimeTypes(nIndex
, delete_mime
) )
2010 if ( WriteToMailCap(nIndex
, delete_mime
) )
2014 if ( m_mailcapStylesInited
& wxMAILCAP_NETSCAPE
)
2016 // write in netsacpe format;
2017 if (WriteToNSMimeTypes(nIndex
, delete_mime
) )
2018 if ( WriteToMailCap(nIndex
, delete_mime
) )
2022 if (m_mailcapStylesInited
& wxMAILCAP_GNOME
)
2024 // write in Gnome format;
2025 if (WriteGnomeMimeFile(nIndex
, delete_mime
) )
2026 if (WriteGnomeKeyFile(nIndex
, delete_mime
) )
2030 if (m_mailcapStylesInited
& wxMAILCAP_KDE
)
2032 // write in KDE format;
2033 if (WriteKDEMimeFile(nIndex
, delete_mime
) )
2040 int wxMimeTypesManagerImpl::AddToMimeData(const wxString
& strType
,
2041 const wxString
& strIcon
,
2042 wxMimeTypeCommands
*entry
,
2043 const wxArrayString
& strExtensions
,
2044 const wxString
& strDesc
,
2045 bool replaceExisting
)
2049 // ensure mimetype is always lower case
2050 wxString mimeType
= strType
.Lower();
2052 // is this a known MIME type?
2053 int nIndex
= m_aTypes
.Index(mimeType
);
2054 if ( nIndex
== wxNOT_FOUND
)
2057 m_aTypes
.Add(mimeType
);
2058 m_aIcons
.Add(strIcon
);
2059 m_aEntries
.Add(entry
? entry
: new wxMimeTypeCommands
);
2061 // change nIndex so we can use it below to add the extensions
2062 m_aExtensions
.Add(wxEmptyString
);
2063 nIndex
= m_aExtensions
.size() - 1;
2065 m_aDescriptions
.Add(strDesc
);
2067 else // yes, we already have it
2069 if ( replaceExisting
)
2071 // if new description change it
2072 if ( !strDesc
.empty())
2073 m_aDescriptions
[nIndex
] = strDesc
;
2075 // if new icon change it
2076 if ( !strIcon
.empty())
2077 m_aIcons
[nIndex
] = strIcon
;
2081 delete m_aEntries
[nIndex
];
2082 m_aEntries
[nIndex
] = entry
;
2085 else // add data we don't already have ...
2087 // if new description add only if none
2088 if ( m_aDescriptions
[nIndex
].empty() )
2089 m_aDescriptions
[nIndex
] = strDesc
;
2091 // if new icon and no existing icon
2092 if ( m_aIcons
[nIndex
].empty() )
2093 m_aIcons
[nIndex
] = strIcon
;
2095 // add any new entries...
2098 wxMimeTypeCommands
*entryOld
= m_aEntries
[nIndex
];
2100 size_t count
= entry
->GetCount();
2101 for ( size_t i
= 0; i
< count
; i
++ )
2103 const wxString
& verb
= entry
->GetVerb(i
);
2104 if ( !entryOld
->HasVerb(verb
) )
2106 entryOld
->AddOrReplaceVerb(verb
, entry
->GetCmd(i
));
2110 // as we don't store it anywhere, it won't be deleted later as
2111 // usual -- do it immediately instead
2117 // always add the extensions to this mimetype
2118 wxString
& exts
= m_aExtensions
[nIndex
];
2120 // add all extensions we don't have yet
2121 size_t count
= strExtensions
.GetCount();
2122 for ( size_t i
= 0; i
< count
; i
++ )
2124 wxString ext
= strExtensions
[i
] + wxT(' ');
2126 if ( exts
.Find(ext
) == wxNOT_FOUND
)
2132 // check data integrity
2133 wxASSERT( m_aTypes
.Count() == m_aEntries
.Count() &&
2134 m_aTypes
.Count() == m_aExtensions
.Count() &&
2135 m_aTypes
.Count() == m_aIcons
.Count() &&
2136 m_aTypes
.Count() == m_aDescriptions
.Count() );
2141 wxFileType
* wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString
& ext
)
2148 size_t count
= m_aExtensions
.GetCount();
2149 for ( size_t n
= 0; n
< count
; n
++ )
2151 wxStringTokenizer
tk(m_aExtensions
[n
], wxT(' '));
2153 while ( tk
.HasMoreTokens() )
2155 // consider extensions as not being case-sensitive
2156 if ( tk
.GetNextToken().IsSameAs(ext
, false /* no case */) )
2159 wxFileType
*fileType
= new wxFileType
;
2160 fileType
->m_impl
->Init(this, n
);
2171 wxMimeTypesManagerImpl::GetFileTypeFromMimeType(const wxString
& mimeType
)
2175 wxFileType
* fileType
= NULL
;
2176 // mime types are not case-sensitive
2177 wxString
mimetype(mimeType
);
2178 mimetype
.MakeLower();
2180 // first look for an exact match
2181 int index
= m_aTypes
.Index(mimetype
);
2182 if ( index
!= wxNOT_FOUND
)
2184 fileType
= new wxFileType
;
2185 fileType
->m_impl
->Init(this, index
);
2188 // then try to find "text/*" as match for "text/plain" (for example)
2189 // NB: if mimeType doesn't contain '/' at all, BeforeFirst() will return
2190 // the whole string - ok.
2192 index
= wxNOT_FOUND
;
2193 wxString strCategory
= mimetype
.BeforeFirst(wxT('/'));
2195 size_t nCount
= m_aTypes
.Count();
2196 for ( size_t n
= 0; n
< nCount
; n
++ )
2198 if ( (m_aTypes
[n
].BeforeFirst(wxT('/')) == strCategory
) &&
2199 m_aTypes
[n
].AfterFirst(wxT('/')) == wxT("*") )
2206 if ( index
!= wxNOT_FOUND
)
2208 // don't throw away fileType that was already found
2210 fileType
= new wxFileType
;
2211 fileType
->m_impl
->Init(this, index
);
2218 wxString
wxMimeTypesManagerImpl::GetCommand(const wxString
& verb
, size_t nIndex
) const
2220 wxString command
, testcmd
, sV
, sTmp
;
2221 sV
= verb
+ wxT("=");
2223 // list of verb = command pairs for this mimetype
2224 wxMimeTypeCommands
* sPairs
= m_aEntries
[nIndex
];
2227 for ( i
= 0; i
< sPairs
->GetCount (); i
++ )
2229 sTmp
= sPairs
->GetVerbCmd (i
);
2230 if ( sTmp
.Contains(sV
) )
2231 command
= sTmp
.AfterFirst(wxT('='));
2237 void wxMimeTypesManagerImpl::AddFallback(const wxFileTypeInfo
& filetype
)
2241 wxString extensions
;
2242 const wxArrayString
& exts
= filetype
.GetExtensions();
2243 size_t nExts
= exts
.GetCount();
2244 for ( size_t nExt
= 0; nExt
< nExts
; nExt
++ )
2247 extensions
+= wxT(' ');
2249 extensions
+= exts
[nExt
];
2252 AddMimeTypeInfo(filetype
.GetMimeType(),
2254 filetype
.GetDescription());
2256 AddMailcapInfo(filetype
.GetMimeType(),
2257 filetype
.GetOpenCommand(),
2258 filetype
.GetPrintCommand(),
2260 filetype
.GetDescription());
2263 void wxMimeTypesManagerImpl::AddMimeTypeInfo(const wxString
& strMimeType
,
2264 const wxString
& strExtensions
,
2265 const wxString
& strDesc
)
2267 // reading mailcap may find image/* , while
2268 // reading mime.types finds image/gif and no match is made
2269 // this means all the get functions don't work fix this
2271 wxString sTmp
= strExtensions
;
2273 wxArrayString sExts
;
2274 sTmp
.Trim().Trim(false);
2276 while (!sTmp
.empty())
2278 sExts
.Add(sTmp
.AfterLast(wxT(' ')));
2279 sTmp
= sTmp
.BeforeLast(wxT(' '));
2282 AddToMimeData(strMimeType
, strIcon
, NULL
, sExts
, strDesc
, true);
2285 void wxMimeTypesManagerImpl::AddMailcapInfo(const wxString
& strType
,
2286 const wxString
& strOpenCmd
,
2287 const wxString
& strPrintCmd
,
2288 const wxString
& strTest
,
2289 const wxString
& strDesc
)
2293 wxMimeTypeCommands
*entry
= new wxMimeTypeCommands
;
2294 entry
->Add(wxT("open=") + strOpenCmd
);
2295 entry
->Add(wxT("print=") + strPrintCmd
);
2296 entry
->Add(wxT("test=") + strTest
);
2299 wxArrayString strExtensions
;
2301 AddToMimeData(strType
, strIcon
, entry
, strExtensions
, strDesc
, true);
2304 bool wxMimeTypesManagerImpl::ReadMimeTypes(const wxString
& strFileName
)
2306 wxLogTrace(TRACE_MIME
, wxT("--- Parsing mime.types file '%s' ---"),
2307 strFileName
.c_str());
2309 wxTextFile
file(strFileName
);
2310 #if defined(__WXGTK20__) && wxUSE_UNICODE
2311 if ( !file
.Open( wxConvUTF8
) )
2317 // the information we extract
2318 wxString strMimeType
, strDesc
, strExtensions
;
2320 size_t nLineCount
= file
.GetLineCount();
2321 const wxChar
*pc
= NULL
;
2322 for ( size_t nLine
= 0; nLine
< nLineCount
; nLine
++ )
2326 // now we're at the start of the line
2327 pc
= file
[nLine
].c_str();
2331 // we didn't finish with the previous line yet
2336 while ( wxIsspace(*pc
) )
2339 // comment or blank line?
2340 if ( *pc
== wxT('#') || !*pc
)
2342 // skip the whole line
2347 // detect file format
2348 const wxChar
*pEqualSign
= wxStrchr(pc
, wxT('='));
2349 if ( pEqualSign
== NULL
)
2354 // first field is mime type
2355 for ( strMimeType
.Empty(); !wxIsspace(*pc
) && *pc
!= wxT('\0'); pc
++ )
2361 while ( wxIsspace(*pc
) )
2364 // take all the rest of the string
2367 // no description...
2375 // the string on the left of '=' is the field name
2376 wxString
strLHS(pc
, pEqualSign
- pc
);
2379 for ( pc
= pEqualSign
+ 1; wxIsspace(*pc
); pc
++ )
2383 if ( *pc
== wxT('"') )
2385 // the string is quoted and ends at the matching quote
2386 pEnd
= wxStrchr(++pc
, wxT('"'));
2389 wxLogWarning(wxT("Mime.types file %s, line %d: unterminated quoted string."),
2390 strFileName
.c_str(), nLine
+ 1);
2395 // unquoted string ends at the first space or at the end of
2397 for ( pEnd
= pc
; *pEnd
&& !wxIsspace(*pEnd
); pEnd
++ )
2401 // now we have the RHS (field value)
2402 wxString
strRHS(pc
, pEnd
- pc
);
2404 // check what follows this entry
2405 if ( *pEnd
== wxT('"') )
2411 for ( pc
= pEnd
; wxIsspace(*pc
); pc
++ )
2414 // if there is something left, it may be either a '\\' to continue
2415 // the line or the next field of the same entry
2416 bool entryEnded
= *pc
== wxT('\0');
2417 bool nextFieldOnSameLine
= false;
2420 nextFieldOnSameLine
= ((*pc
!= wxT('\\')) || (pc
[1] != wxT('\0')));
2423 // now see what we got
2424 if ( strLHS
== wxT("type") )
2426 strMimeType
= strRHS
;
2428 else if ( strLHS
.StartsWith(wxT("desc")) )
2432 else if ( strLHS
== wxT("exts") )
2434 strExtensions
= strRHS
;
2436 else if ( strLHS
== wxT("icon") )
2438 // this one is simply ignored: it usually refers to Netscape
2439 // built in icons which are useless for us anyhow
2441 else if ( !strLHS
.StartsWith(wxT("x-")) )
2443 // we suppose that all fields starting with "X-" are
2444 // unregistered extensions according to the standard practice,
2445 // but it may be worth telling the user about other junk in
2446 // his mime.types file
2447 wxLogWarning(wxT("Unknown field in file %s, line %d: '%s'."),
2448 strFileName
.c_str(), nLine
+ 1, strLHS
.c_str());
2453 if ( !nextFieldOnSameLine
)
2455 //else: don't reset it
2457 // as we don't reset strMimeType, the next field in this entry
2458 // will be interpreted correctly.
2464 // depending on the format (Mosaic or Netscape) either space or comma
2465 // is used to separate the extensions
2466 strExtensions
.Replace(wxT(","), wxT(" "));
2468 // also deal with the leading dot
2469 if ( !strExtensions
.empty() && strExtensions
[0u] == wxT('.') )
2471 strExtensions
.erase(0, 1);
2474 wxLogTrace(TRACE_MIME
, wxT("mime.types: '%s' => '%s' (%s)"),
2475 strExtensions
.c_str(),
2476 strMimeType
.c_str(),
2479 AddMimeTypeInfo(strMimeType
, strExtensions
, strDesc
);
2481 // finished with this line
2488 // ----------------------------------------------------------------------------
2489 // UNIX mailcap files parsing
2490 // ----------------------------------------------------------------------------
2492 // the data for a single MIME type
2493 struct MailcapLineData
2502 wxArrayString verbs
,
2510 MailcapLineData() { testfailed
= needsterminal
= copiousoutput
= false; }
2513 // process a non-standard (i.e. not the first or second one) mailcap field
2515 wxMimeTypesManagerImpl::ProcessOtherMailcapField(MailcapLineData
& data
,
2516 const wxString
& curField
)
2518 if ( curField
.empty() )
2524 // is this something of the form foo=bar?
2525 const wxChar
*pEq
= wxStrchr(curField
, wxT('='));
2528 // split "LHS = RHS" in 2
2529 wxString lhs
= curField
.BeforeFirst(wxT('=')),
2530 rhs
= curField
.AfterFirst(wxT('='));
2532 lhs
.Trim(true); // from right
2533 rhs
.Trim(false); // from left
2535 // it might be quoted
2536 if ( !rhs
.empty() && rhs
[0u] == wxT('"') && rhs
.Last() == wxT('"') )
2538 rhs
= rhs
.Mid(1, rhs
.length() - 2);
2541 // is it a command verb or something else?
2542 if ( lhs
== wxT("test") )
2544 if ( wxSystem(rhs
) == 0 )
2547 wxLogTrace(TRACE_MIME_TEST
,
2548 wxT("Test '%s' for mime type '%s' succeeded."),
2549 rhs
.c_str(), data
.type
.c_str());
2553 wxLogTrace(TRACE_MIME_TEST
,
2554 wxT("Test '%s' for mime type '%s' failed, skipping."),
2555 rhs
.c_str(), data
.type
.c_str());
2557 data
.testfailed
= true;
2560 else if ( lhs
== wxT("desc") )
2564 else if ( lhs
== wxT("x11-bitmap") )
2568 else if ( lhs
== wxT("notes") )
2572 else // not a (recognized) special case, must be a verb (e.g. "print")
2574 data
.verbs
.Add(lhs
);
2575 data
.commands
.Add(rhs
);
2578 else // '=' not found
2580 // so it must be a simple flag
2581 if ( curField
== wxT("needsterminal") )
2583 data
.needsterminal
= true;
2585 else if ( curField
== wxT("copiousoutput"))
2587 // copiousoutput impies that the viewer is a console program
2588 data
.needsterminal
=
2589 data
.copiousoutput
= true;
2591 else if ( !IsKnownUnimportantField(curField
) )
2600 bool wxMimeTypesManagerImpl::ReadMailcap(const wxString
& strFileName
,
2603 wxLogTrace(TRACE_MIME
, wxT("--- Parsing mailcap file '%s' ---"),
2604 strFileName
.c_str());
2606 wxTextFile
file(strFileName
);
2607 #if defined(__WXGTK20__) && wxUSE_UNICODE
2608 if ( !file
.Open( wxConvUTF8
) )
2614 // indices of MIME types (in m_aTypes) we already found in this file
2616 // (see the comments near the end of function for the reason we need this)
2617 wxArrayInt aIndicesSeenHere
;
2619 // accumulator for the current field
2621 curField
.reserve(1024);
2623 size_t nLineCount
= file
.GetLineCount();
2624 for ( size_t nLine
= 0; nLine
< nLineCount
; nLine
++ )
2626 // now we're at the start of the line
2627 const wxChar
*pc
= file
[nLine
].c_str();
2630 while ( wxIsspace(*pc
) )
2633 // comment or empty string?
2634 if ( *pc
== wxT('#') || *pc
== wxT('\0') )
2640 // what field are we currently in? The first 2 are fixed and there may
2641 // be an arbitrary number of other fields parsed by
2642 // ProcessOtherMailcapField()
2644 // the first field is the MIME type
2651 currentToken
= Field_Type
;
2653 // the flags and field values on the current line
2654 MailcapLineData data
;
2662 // interpret the next character literally (notice that
2663 // backslash can be used for line continuation)
2664 if ( *++pc
== wxT('\0') )
2666 // fetch the next line if there is one
2667 if ( nLine
== nLineCount
- 1 )
2669 // something is wrong, bail out
2672 wxLogDebug(wxT("Mailcap file %s, line %lu: '\\' on the end of the last line ignored."),
2673 strFileName
.c_str(),
2674 (unsigned long)nLine
+ 1);
2678 // pass to the beginning of the next line
2679 pc
= file
[++nLine
].c_str();
2681 // skip pc++ at the end of the loop
2687 // just a normal character
2693 cont
= false; // end of line reached, exit the loop
2695 // fall through to still process this field
2698 // trim whitespaces from both sides
2699 curField
.Trim(true).Trim(false);
2701 switch ( currentToken
)
2704 data
.type
= curField
.Lower();
2705 if ( data
.type
.empty() )
2707 // I don't think that this is a valid mailcap
2708 // entry, but try to interpret it somehow
2709 data
.type
= wxT('*');
2712 if ( data
.type
.Find(wxT('/')) == wxNOT_FOUND
)
2714 // we interpret "type" as "type/*"
2715 data
.type
+= wxT("/*");
2718 currentToken
= Field_OpenCmd
;
2722 data
.cmdOpen
= curField
;
2724 currentToken
= Field_Other
;
2728 if ( !ProcessOtherMailcapField(data
, curField
) )
2730 // don't flood the user with error messages if
2731 // we don't understand something in his
2732 // mailcap, but give them in debug mode because
2733 // this might be useful for the programmer
2736 wxT("Mailcap file %s, line %lu: unknown field '%s' for the MIME type '%s' ignored."),
2737 strFileName
.c_str(),
2738 (unsigned long)nLine
+ 1,
2743 else if ( data
.testfailed
)
2745 // skip this entry entirely
2749 // it already has this value
2750 //currentToken = Field_Other;
2754 wxFAIL_MSG(wxT("unknown field type in mailcap"));
2757 // next token starts immediately after ';'
2765 // continue in the same line
2769 // we read the entire entry, check what have we got
2770 // ------------------------------------------------
2772 // check that we really read something reasonable
2773 if ( currentToken
< Field_Other
)
2775 wxLogWarning(wxT("Mailcap file %s, line %d: incomplete entry ignored."),
2776 strFileName
.c_str(), nLine
+ 1);
2781 // if the test command failed, it's as if the entry were not there at
2783 if ( data
.testfailed
)
2788 // support for flags:
2789 // 1. create an xterm for 'needsterminal'
2790 // 2. append "| $PAGER" for 'copiousoutput'
2792 // Note that the RFC says that having both needsterminal and
2793 // copiousoutput is probably a mistake, so it seems that running
2794 // programs with copiousoutput inside an xterm as it is done now
2795 // is a bad idea (FIXME)
2796 if ( data
.copiousoutput
)
2798 const wxChar
*p
= wxGetenv(wxT("PAGER"));
2799 data
.cmdOpen
<< wxT(" | ") << (p
? p
: wxT("more"));
2802 if ( data
.needsterminal
)
2804 data
.cmdOpen
= wxString::Format(wxT("xterm -e sh -c '%s'"),
2805 data
.cmdOpen
.c_str());
2808 if ( !data
.cmdOpen
.empty() )
2810 data
.verbs
.Insert(wxT("open"), 0);
2811 data
.commands
.Insert(data
.cmdOpen
, 0);
2814 // we have to decide whether the new entry should replace any entries
2815 // for the same MIME type we had previously found or not
2818 // the fall back entries have the lowest priority, by definition
2825 // have we seen this one before?
2826 int nIndex
= m_aTypes
.Index(data
.type
);
2828 // and if we have, was it in this file? if not, we should
2829 // overwrite the previously seen one
2830 overwrite
= nIndex
== wxNOT_FOUND
||
2831 aIndicesSeenHere
.Index(nIndex
) == wxNOT_FOUND
;
2834 wxLogTrace(TRACE_MIME
, wxT("mailcap %s: %s [%s]"),
2835 data
.type
.c_str(), data
.cmdOpen
.c_str(),
2836 overwrite
? wxT("replace") : wxT("add"));
2838 int n
= AddToMimeData
2842 new wxMimeTypeCommands(data
.verbs
, data
.commands
),
2843 wxArrayString() /* extensions */,
2850 aIndicesSeenHere
.Add(n
);
2857 size_t wxMimeTypesManagerImpl::EnumAllFileTypes(wxArrayString
& mimetypes
)
2864 size_t count
= m_aTypes
.GetCount();
2865 for ( size_t n
= 0; n
< count
; n
++ )
2867 // don't return template types from here (i.e. anything containg '*')
2869 if ( type
.Find(wxT('*')) == wxNOT_FOUND
)
2871 mimetypes
.Add(type
);
2875 return mimetypes
.GetCount();
2878 // ----------------------------------------------------------------------------
2879 // writing to MIME type files
2880 // ----------------------------------------------------------------------------
2882 bool wxMimeTypesManagerImpl::Unassociate(wxFileType
*ft
)
2884 wxArrayString sMimeTypes
;
2885 ft
->GetMimeTypes(sMimeTypes
);
2889 for (i
= 0; i
< sMimeTypes
.GetCount(); i
++)
2891 sMime
= sMimeTypes
.Item(i
);
2892 int nIndex
= m_aTypes
.Index(sMime
);
2893 if ( nIndex
== wxNOT_FOUND
)
2895 // error if we get here ??
2900 WriteMimeInfo(nIndex
, true);
2901 m_aTypes
.RemoveAt(nIndex
);
2902 m_aEntries
.RemoveAt(nIndex
);
2903 m_aExtensions
.RemoveAt(nIndex
);
2904 m_aDescriptions
.RemoveAt(nIndex
);
2905 m_aIcons
.RemoveAt(nIndex
);
2908 // check data integrity
2909 wxASSERT( m_aTypes
.Count() == m_aEntries
.Count() &&
2910 m_aTypes
.Count() == m_aExtensions
.Count() &&
2911 m_aTypes
.Count() == m_aIcons
.Count() &&
2912 m_aTypes
.Count() == m_aDescriptions
.Count() );
2917 // ----------------------------------------------------------------------------
2918 // private functions
2919 // ----------------------------------------------------------------------------
2921 static bool IsKnownUnimportantField(const wxString
& fieldAll
)
2923 static const wxChar
*knownFields
[] =
2925 wxT("x-mozilla-flags"),
2926 wxT("nametemplate"),
2927 wxT("textualnewlines"),
2930 wxString field
= fieldAll
.BeforeFirst(wxT('='));
2931 for ( size_t n
= 0; n
< WXSIZEOF(knownFields
); n
++ )
2933 if ( field
.CmpNoCase(knownFields
[n
]) == 0 )
2941 // wxUSE_MIMETYPE && wxUSE_FILE && wxUSE_TEXTFILE