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 license (part of wxExtra library)
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "mimetype.h"
16 // for compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #if (wxUSE_FILE && wxUSE_TEXTFILE) || defined(__WXMSW__)
30 #include "wx/string.h"
40 #include "wx/dynarray.h"
41 #include "wx/confbase.h"
44 #include "wx/textfile.h"
47 #include "wx/tokenzr.h"
49 #include "wx/unix/mimetype.h"
51 // other standard headers
54 // in case we're compiling in non-GUI mode
55 class WXDLLEXPORT wxIcon
;
57 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
62 // this class uses both mailcap and mime.types to gather information about file
65 // The information about mailcap file was extracted from metamail(1) sources and
68 // Format of mailcap file: spaces are ignored, each line is either a comment
69 // (starts with '#') or a line of the form <field1>;<field2>;...;<fieldN>.
70 // A backslash can be used to quote semicolons and newlines (and, in fact,
71 // anything else including itself).
73 // The first field is always the MIME type in the form of type/subtype (see RFC
74 // 822) where subtype may be '*' meaning "any". Following metamail, we accept
75 // "type" which means the same as "type/*", although I'm not sure whether this
78 // The second field is always the command to run. It is subject to
79 // parameter/filename expansion described below.
81 // All the following fields are optional and may not be present at all. If
82 // they're present they may appear in any order, although each of them should
83 // appear only once. The optional fields are the following:
84 // * notes=xxx is an uninterpreted string which is silently ignored
85 // * test=xxx is the command to be used to determine whether this mailcap line
86 // applies to our data or not. The RHS of this field goes through the
87 // parameter/filename expansion (as the 2nd field) and the resulting string
88 // is executed. The line applies only if the command succeeds, i.e. returns 0
90 // * print=xxx is the command to be used to print (and not view) the data of
91 // this type (parameter/filename expansion is done here too)
92 // * edit=xxx is the command to open/edit the data of this type
93 // * needsterminal means that a new console must be created for the viewer
94 // * copiousoutput means that the viewer doesn't interact with the user but
95 // produces (possibly) a lof of lines of output on stdout (i.e. "cat" is a
96 // good example), thus it might be a good idea to use some kind of paging
98 // * textualnewlines means not to perform CR/LF translation (not honored)
99 // * compose and composetyped fields are used to determine the program to be
100 // called to create a new message pert in the specified format (unused).
102 // Parameter/filename xpansion:
103 // * %s is replaced with the (full) file name
104 // * %t is replaced with MIME type/subtype of the entry
105 // * for multipart type only %n is replaced with the nnumber of parts and %F is
106 // replaced by an array of (content-type, temporary file name) pairs for all
107 // message parts (TODO)
108 // * %{parameter} is replaced with the value of parameter taken from
109 // Content-type header line of the message.
111 // FIXME any docs with real descriptions of these files??
113 // There are 2 possible formats for mime.types file, one entry per line (used
114 // for global mime.types) and "expanded" format where an entry takes multiple
115 // lines (used for users mime.types).
117 // For both formats spaces are ignored and lines starting with a '#' are
118 // comments. Each record has one of two following forms:
119 // a) for "brief" format:
120 // <mime type> <space separated list of extensions>
121 // b) for "expanded" format:
122 // type=<mime type> \ desc="<description>" \ exts="ext"
124 // We try to autodetect the format of mime.types: if a non-comment line starts
125 // with "type=" we assume the second format, otherwise the first one.
127 // there may be more than one entry for one and the same mime type, to
128 // choose the right one we have to run the command specified in the test
129 // field on our data.
134 MailCapEntry(const wxString
& openCmd
,
135 const wxString
& printCmd
,
136 const wxString
& testCmd
)
137 : m_openCmd(openCmd
), m_printCmd(printCmd
), m_testCmd(testCmd
)
143 const wxString
& GetOpenCmd() const { return m_openCmd
; }
144 const wxString
& GetPrintCmd() const { return m_printCmd
; }
145 const wxString
& GetTestCmd() const { return m_testCmd
; }
147 MailCapEntry
*GetNext() const { return m_next
; }
150 // prepend this element to the list
151 void Prepend(MailCapEntry
*next
) { m_next
= next
; }
152 // insert into the list at given position
153 void Insert(MailCapEntry
*next
, size_t pos
)
158 for ( cur
= next
; cur
!= NULL
; cur
= cur
->m_next
, n
++ ) {
163 wxASSERT_MSG( n
== pos
, wxT("invalid position in MailCapEntry::Insert") );
165 m_next
= cur
->m_next
;
168 // append this element to the list
169 void Append(MailCapEntry
*next
)
171 wxCHECK_RET( next
!= NULL
, wxT("Append()ing to what?") );
175 for ( cur
= next
; cur
->m_next
!= NULL
; cur
= cur
->m_next
)
180 wxASSERT_MSG( !m_next
, wxT("Append()ing element already in the list?") );
184 wxString m_openCmd
, // command to use to open/view the file
186 m_testCmd
; // only apply this entry if test yields
187 // true (i.e. the command returns 0)
189 MailCapEntry
*m_next
; // in the linked list
193 // the base class which may be used to find an icon for the MIME type
194 class wxMimeTypeIconHandler
197 virtual bool GetIcon(const wxString
& mimetype
, wxIcon
*icon
) = 0;
199 // this function fills manager with MIME types information gathered
200 // (as side effect) when searching for icons. This may be particularly
201 // useful if mime.types is incomplete (e.g. RedHat distributions).
202 virtual void GetMimeInfoRecords(wxMimeTypesManagerImpl
*manager
) = 0;
206 // the icon handler which uses GNOME MIME database
207 class wxGNOMEIconHandler
: public wxMimeTypeIconHandler
210 virtual bool GetIcon(const wxString
& mimetype
, wxIcon
*icon
);
211 virtual void GetMimeInfoRecords(wxMimeTypesManagerImpl
*manager
);
215 void LoadIconsFromKeyFile(const wxString
& filename
);
216 void LoadKeyFilesFromDir(const wxString
& dirbase
);
218 void LoadMimeTypesFromMimeFile(const wxString
& filename
, wxMimeTypesManagerImpl
*manager
);
219 void LoadMimeFilesFromDir(const wxString
& dirbase
, wxMimeTypesManagerImpl
*manager
);
221 static bool m_inited
;
223 static wxSortedArrayString ms_mimetypes
;
224 static wxArrayString ms_icons
;
227 // the icon handler which uses KDE MIME database
228 class wxKDEIconHandler
: public wxMimeTypeIconHandler
231 virtual bool GetIcon(const wxString
& mimetype
, wxIcon
*icon
);
232 virtual void GetMimeInfoRecords(wxMimeTypesManagerImpl
*manager
);
235 void LoadLinksForMimeSubtype(const wxString
& dirbase
,
236 const wxString
& subdir
,
237 const wxString
& filename
,
238 const wxArrayString
& icondirs
);
239 void LoadLinksForMimeType(const wxString
& dirbase
,
240 const wxString
& subdir
,
241 const wxArrayString
& icondirs
);
242 void LoadLinkFilesFromDir(const wxString
& dirbase
,
243 const wxArrayString
& icondirs
);
246 static bool m_inited
;
248 static wxSortedArrayString ms_mimetypes
;
249 static wxArrayString ms_icons
;
251 static wxArrayString ms_infoTypes
;
252 static wxArrayString ms_infoDescriptions
;
253 static wxArrayString ms_infoExtensions
;
258 // ----------------------------------------------------------------------------
260 // ----------------------------------------------------------------------------
262 static wxGNOMEIconHandler gs_iconHandlerGNOME
;
263 static wxKDEIconHandler gs_iconHandlerKDE
;
265 bool wxGNOMEIconHandler::m_inited
= FALSE
;
266 wxSortedArrayString
wxGNOMEIconHandler::ms_mimetypes
;
267 wxArrayString
wxGNOMEIconHandler::ms_icons
;
269 bool wxKDEIconHandler::m_inited
= FALSE
;
270 wxSortedArrayString
wxKDEIconHandler::ms_mimetypes
;
271 wxArrayString
wxKDEIconHandler::ms_icons
;
273 wxArrayString
wxKDEIconHandler::ms_infoTypes
;
274 wxArrayString
wxKDEIconHandler::ms_infoDescriptions
;
275 wxArrayString
wxKDEIconHandler::ms_infoExtensions
;
278 ArrayIconHandlers
wxMimeTypesManagerImpl::ms_iconHandlers
;
280 // ----------------------------------------------------------------------------
281 // wxGNOMEIconHandler
282 // ----------------------------------------------------------------------------
284 // GNOME stores the info we're interested in in several locations:
285 // 1. xxx.keys files under /usr/share/mime-info
286 // 2. xxx.keys files under ~/.gnome/mime-info
288 // The format of xxx.keys file is the following:
293 // with blank lines separating the entries and indented lines starting with
294 // TABs. We're interested in the field icon-filename whose value is the path
295 // containing the icon.
297 void wxGNOMEIconHandler::LoadIconsFromKeyFile(const wxString
& filename
)
299 wxTextFile
textfile(filename
);
300 if ( !textfile
.Open() )
303 // values for the entry being parsed
304 wxString curMimeType
, curIconFile
;
307 size_t nLineCount
= textfile
.GetLineCount();
308 for ( size_t nLine
= 0; ; nLine
++ )
310 if ( nLine
< nLineCount
)
312 pc
= textfile
[nLine
].c_str();
313 if ( *pc
== _T('#') )
321 // so that we will fall into the "if" below
328 if ( !!curMimeType
&& !!curIconFile
)
330 // do we already know this mimetype?
331 int i
= ms_mimetypes
.Index(curMimeType
);
332 if ( i
== wxNOT_FOUND
)
335 size_t n
= ms_mimetypes
.Add(curMimeType
);
336 ms_icons
.Insert(curIconFile
, n
);
340 // replace the existing one (this means that the directories
341 // should be searched in order of increased priority!)
342 ms_icons
[(size_t)i
] = curIconFile
;
348 // the end - this can only happen if nLine == nLineCount
357 // what do we have here?
358 if ( *pc
== _T('\t') )
360 // this is a field=value ling
361 pc
++; // skip leading TAB
363 static const int lenField
= 13; // strlen("icon-filename")
364 if ( wxStrncmp(pc
, _T("icon-filename"), lenField
) == 0 )
366 // skip '=' which follows and take everything left until the end
368 curIconFile
= pc
+ lenField
+ 1;
370 //else: some other field, we don't care
374 // this is the start of the new section
377 while ( *pc
!= _T(':') && *pc
!= _T('\0') )
379 curMimeType
+= *pc
++;
385 void wxGNOMEIconHandler::LoadKeyFilesFromDir(const wxString
& dirbase
)
387 wxASSERT_MSG( !!dirbase
&& !wxEndsWithPathSeparator(dirbase
),
388 _T("base directory shouldn't end with a slash") );
390 wxString dirname
= dirbase
;
391 dirname
<< _T("/mime-info");
393 if ( !wxDir::Exists(dirname
) )
397 if ( !dir
.IsOpened() )
400 // we will concatenate it with filename to get the full path below
404 bool cont
= dir
.GetFirst(&filename
, _T("*.keys"), wxDIR_FILES
);
407 LoadIconsFromKeyFile(dirname
+ filename
);
409 cont
= dir
.GetNext(&filename
);
414 void wxGNOMEIconHandler::LoadMimeTypesFromMimeFile(const wxString
& filename
, wxMimeTypesManagerImpl
*manager
)
416 wxTextFile
textfile(filename
);
417 if ( !textfile
.Open() )
420 // values for the entry being parsed
421 wxString curMimeType
, curExtList
;
424 size_t nLineCount
= textfile
.GetLineCount();
425 for ( size_t nLine
= 0; ; nLine
++ )
427 if ( nLine
< nLineCount
)
429 pc
= textfile
[nLine
].c_str();
430 if ( *pc
== _T('#') )
438 // so that we will fall into the "if" below
445 if ( !!curMimeType
&& !!curExtList
)
447 manager
-> AddMimeTypeInfo(curMimeType
, curExtList
, wxEmptyString
);
452 // the end - this can only happen if nLine == nLineCount
461 // what do we have here?
462 if ( *pc
== _T('\t') )
464 // this is a field=value ling
465 pc
++; // skip leading TAB
467 static const int lenField
= 4; // strlen("ext:")
468 if ( wxStrncmp(pc
, _T("ext:"), lenField
) == 0 )
470 // skip ' ' which follows and take everything left until the end
472 curExtList
= pc
+ lenField
+ 1;
474 //else: some other field, we don't care
478 // this is the start of the new section
481 while ( *pc
!= _T(':') && *pc
!= _T('\0') )
483 curMimeType
+= *pc
++;
490 void wxGNOMEIconHandler::LoadMimeFilesFromDir(const wxString
& dirbase
, wxMimeTypesManagerImpl
*manager
)
492 wxASSERT_MSG( !!dirbase
&& !wxEndsWithPathSeparator(dirbase
),
493 _T("base directory shouldn't end with a slash") );
495 wxString dirname
= dirbase
;
496 dirname
<< _T("/mime-info");
498 if ( !wxDir::Exists(dirname
) )
502 if ( !dir
.IsOpened() )
505 // we will concatenate it with filename to get the full path below
509 bool cont
= dir
.GetFirst(&filename
, _T("*.mime"), wxDIR_FILES
);
512 LoadMimeTypesFromMimeFile(dirname
+ filename
, manager
);
514 cont
= dir
.GetNext(&filename
);
519 void wxGNOMEIconHandler::Init()
522 dirs
.Add(_T("/usr/share"));
523 dirs
.Add(_T("/usr/local/share"));
526 wxGetHomeDir( &gnomedir
);
527 gnomedir
+= _T("/.gnome");
528 dirs
.Add( gnomedir
);
530 size_t nDirs
= dirs
.GetCount();
531 for ( size_t nDir
= 0; nDir
< nDirs
; nDir
++ )
533 LoadKeyFilesFromDir(dirs
[nDir
]);
540 void wxGNOMEIconHandler::GetMimeInfoRecords(wxMimeTypesManagerImpl
*manager
)
548 dirs
.Add(_T("/usr/share"));
549 dirs
.Add(_T("/usr/local/share"));
552 wxGetHomeDir( &gnomedir
);
553 gnomedir
+= _T("/.gnome");
554 dirs
.Add( gnomedir
);
556 size_t nDirs
= dirs
.GetCount();
557 for ( size_t nDir
= 0; nDir
< nDirs
; nDir
++ )
559 LoadMimeFilesFromDir(dirs
[nDir
], manager
);
564 #define WXUNUSED_UNLESS_GUI(p) p
566 #define WXUNUSED_UNLESS_GUI(p)
569 bool wxGNOMEIconHandler::GetIcon(const wxString
& mimetype
,
570 wxIcon
* WXUNUSED_UNLESS_GUI(icon
))
577 int index
= ms_mimetypes
.Index(mimetype
);
578 if ( index
== wxNOT_FOUND
)
581 wxString iconname
= ms_icons
[(size_t)index
];
586 if (iconname
.Right(4).MakeUpper() == _T(".XPM"))
587 icn
= wxIcon(iconname
);
589 icn
= wxIcon(iconname
, wxBITMAP_TYPE_ANY
);
596 // helpful for testing in console mode
597 wxLogDebug(_T("Found GNOME icon for '%s': '%s'\n"),
598 mimetype
.c_str(), iconname
.c_str());
604 // ----------------------------------------------------------------------------
606 // ----------------------------------------------------------------------------
608 // KDE stores the icon info in its .kdelnk files. The file for mimetype/subtype
609 // may be found in either of the following locations
611 // 1. $KDEDIR/share/mimelnk/mimetype/subtype.kdelnk
612 // 2. ~/.kde/share/mimelnk/mimetype/subtype.kdelnk
614 // The format of a .kdelnk file is almost the same as the one used by
615 // wxFileConfig, i.e. there are groups, comments and entries. The icon is the
616 // value for the entry "Type"
618 void wxKDEIconHandler::LoadLinksForMimeSubtype(const wxString
& dirbase
,
619 const wxString
& subdir
,
620 const wxString
& filename
,
621 const wxArrayString
& icondirs
)
623 wxFFile
file(dirbase
+ filename
);
624 if ( !file
.IsOpened() )
627 // construct mimetype from the directory name and the basename of the
628 // file (it always has .kdelnk extension)
630 mimetype
<< subdir
<< _T('/') << filename
.BeforeLast(_T('.'));
632 // these files are small, slurp the entire file at once
634 if ( !file
.ReadAll(&text
) )
640 // before trying to find an icon, grab mimetype information
641 // (because BFU's machine would hardly have well-edited mime.types but (s)he might
642 // have edited it in control panel...)
644 wxString mime_extension
, mime_desc
;
647 if (wxGetLocale() != NULL
)
648 mime_desc
= _T("Comment[") + wxGetLocale()->GetName() + _T("]=");
649 if (pos
== wxNOT_FOUND
) mime_desc
= _T("Comment=");
650 pos
= text
.Find(mime_desc
);
651 if (pos
== wxNOT_FOUND
) mime_desc
= wxEmptyString
;
654 pc
= text
.c_str() + pos
+ mime_desc
.Length();
655 mime_desc
= wxEmptyString
;
656 while ( *pc
&& *pc
!= _T('\n') ) mime_desc
+= *pc
++;
659 pos
= text
.Find(_T("Patterns="));
660 if (pos
!= wxNOT_FOUND
)
663 pc
= text
.c_str() + pos
+ 9;
664 while ( *pc
&& *pc
!= _T('\n') ) exts
+= *pc
++;
665 wxStringTokenizer
tokenizer(exts
, _T(";"));
668 while (tokenizer
.HasMoreTokens())
670 e
= tokenizer
.GetNextToken();
671 if (e
.Left(2) != _T("*.")) continue; // don't support too difficult patterns
672 mime_extension
<< e
.Mid(2);
673 mime_extension
<< _T(' ');
675 mime_extension
.RemoveLast();
678 ms_infoTypes
.Add(mimetype
);
679 ms_infoDescriptions
.Add(mime_desc
);
680 ms_infoExtensions
.Add(mime_extension
);
682 // ok, now we can take care of icon:
684 pos
= text
.Find(_T("Icon="));
685 if ( pos
== wxNOT_FOUND
)
693 pc
= text
.c_str() + pos
+ 5; // 5 == strlen("Icon=")
694 while ( *pc
&& *pc
!= _T('\n') )
701 // we must check if the file exists because it may be stored
702 // in many locations, at least ~/.kde and $KDEDIR
703 size_t nDir
, nDirs
= icondirs
.GetCount();
704 for ( nDir
= 0; nDir
< nDirs
; nDir
++ )
705 if (wxFileExists(icondirs
[nDir
] + icon
))
707 icon
.Prepend(icondirs
[nDir
]);
710 if (nDir
== nDirs
) return; //does not exist
712 // do we already have this MIME type?
713 int i
= ms_mimetypes
.Index(mimetype
);
714 if ( i
== wxNOT_FOUND
)
717 size_t n
= ms_mimetypes
.Add(mimetype
);
718 ms_icons
.Insert(icon
, n
);
722 // replace the old value
723 ms_icons
[(size_t)i
] = icon
;
728 void wxKDEIconHandler::LoadLinksForMimeType(const wxString
& dirbase
,
729 const wxString
& subdir
,
730 const wxArrayString
& icondirs
)
732 wxString dirname
= dirbase
;
735 if ( !dir
.IsOpened() )
741 bool cont
= dir
.GetFirst(&filename
, _T("*.kdelnk"), wxDIR_FILES
);
744 LoadLinksForMimeSubtype(dirname
, subdir
, filename
, icondirs
);
746 cont
= dir
.GetNext(&filename
);
750 void wxKDEIconHandler::LoadLinkFilesFromDir(const wxString
& dirbase
,
751 const wxArrayString
& icondirs
)
753 wxASSERT_MSG( !!dirbase
&& !wxEndsWithPathSeparator(dirbase
),
754 _T("base directory shouldn't end with a slash") );
756 wxString dirname
= dirbase
;
757 dirname
<< _T("/mimelnk");
759 if ( !wxDir::Exists(dirname
) )
763 if ( !dir
.IsOpened() )
766 // we will concatenate it with dir name to get the full path below
770 bool cont
= dir
.GetFirst(&subdir
, wxEmptyString
, wxDIR_DIRS
);
773 LoadLinksForMimeType(dirname
, subdir
, icondirs
);
775 cont
= dir
.GetNext(&subdir
);
779 void wxKDEIconHandler::Init()
782 wxArrayString icondirs
;
784 // settings in ~/.kde have maximal priority
785 dirs
.Add(wxGetHomeDir() + _T("/.kde/share"));
786 icondirs
.Add(wxGetHomeDir() + _T("/.kde/share/icons/"));
788 // the variable KDEDIR is set when KDE is running
789 const char *kdedir
= getenv("KDEDIR");
792 dirs
.Add(wxString(kdedir
) + _T("/share"));
793 icondirs
.Add(wxString(kdedir
) + _T("/share/icons/"));
797 // try to guess KDEDIR
798 dirs
.Add(_T("/usr/share"));
799 dirs
.Add(_T("/opt/kde/share"));
800 icondirs
.Add(_T("/usr/share/icons/"));
801 icondirs
.Add(_T("/opt/kde/share/icons/"));
804 size_t nDirs
= dirs
.GetCount();
805 for ( size_t nDir
= 0; nDir
< nDirs
; nDir
++ )
807 LoadLinkFilesFromDir(dirs
[nDir
], icondirs
);
813 bool wxKDEIconHandler::GetIcon(const wxString
& mimetype
,
814 wxIcon
* WXUNUSED_UNLESS_GUI(icon
))
821 int index
= ms_mimetypes
.Index(mimetype
);
822 if ( index
== wxNOT_FOUND
)
825 wxString iconname
= ms_icons
[(size_t)index
];
830 if (iconname
.Right(4).MakeUpper() == _T(".XPM"))
831 icn
= wxIcon(iconname
);
833 icn
= wxIcon(iconname
, wxBITMAP_TYPE_ANY
);
841 // helpful for testing in console mode
842 wxLogDebug(_T("Found KDE icon for '%s': '%s'\n"),
843 mimetype
.c_str(), iconname
.c_str());
850 void wxKDEIconHandler::GetMimeInfoRecords(wxMimeTypesManagerImpl
*manager
)
852 if ( !m_inited
) Init();
854 size_t cnt
= ms_infoTypes
.GetCount();
855 for (unsigned i
= 0; i
< cnt
; i
++)
856 manager
-> AddMimeTypeInfo(ms_infoTypes
[i
], ms_infoExtensions
[i
], ms_infoDescriptions
[i
]);
860 // ----------------------------------------------------------------------------
861 // wxFileTypeImpl (Unix)
862 // ----------------------------------------------------------------------------
865 wxFileTypeImpl::GetEntry(const wxFileType::MessageParameters
& params
) const
868 MailCapEntry
*entry
= m_manager
->m_aEntries
[m_index
[0]];
869 while ( entry
!= NULL
) {
870 // notice that an empty command would always succeed (it's ok)
871 command
= wxFileType::ExpandCommand(entry
->GetTestCmd(), params
);
873 if ( command
.IsEmpty() || (wxSystem(command
) == 0) ) {
875 wxLogTrace(wxT("Test '%s' for mime type '%s' succeeded."),
876 command
.c_str(), params
.GetMimeType().c_str());
880 wxLogTrace(wxT("Test '%s' for mime type '%s' failed."),
881 command
.c_str(), params
.GetMimeType().c_str());
884 entry
= entry
->GetNext();
890 bool wxFileTypeImpl::GetIcon(wxIcon
*icon
) const
892 wxArrayString mimetypes
;
893 GetMimeTypes(mimetypes
);
895 ArrayIconHandlers
& handlers
= m_manager
->GetIconHandlers();
896 size_t count
= handlers
.GetCount();
897 size_t counttypes
= mimetypes
.GetCount();
898 for ( size_t n
= 0; n
< count
; n
++ )
900 for ( size_t n2
= 0; n2
< counttypes
; n2
++ )
902 if ( handlers
[n
]->GetIcon(mimetypes
[n2
], icon
) )
912 wxFileTypeImpl::GetMimeTypes(wxArrayString
& mimeTypes
) const
915 for (size_t i
= 0; i
< m_index
.GetCount(); i
++)
916 mimeTypes
.Add(m_manager
->m_aTypes
[m_index
[i
]]);
922 wxFileTypeImpl::GetExpandedCommand(wxString
*expandedCmd
,
923 const wxFileType::MessageParameters
& params
,
926 MailCapEntry
*entry
= GetEntry(params
);
927 if ( entry
== NULL
) {
928 // all tests failed...
932 wxString cmd
= open
? entry
->GetOpenCmd() : entry
->GetPrintCmd();
933 if ( cmd
.IsEmpty() ) {
934 // may happen, especially for "print"
938 *expandedCmd
= wxFileType::ExpandCommand(cmd
, params
);
942 bool wxFileTypeImpl::GetExtensions(wxArrayString
& extensions
)
944 wxString strExtensions
= m_manager
->GetExtension(m_index
[0]);
947 // one extension in the space or comma delimitid list
949 for ( const wxChar
*p
= strExtensions
; ; p
++ ) {
950 if ( *p
== wxT(' ') || *p
== wxT(',') || *p
== wxT('\0') ) {
951 if ( !strExt
.IsEmpty() ) {
952 extensions
.Add(strExt
);
955 //else: repeated spaces (shouldn't happen, but it's not that
956 // important if it does happen)
958 if ( *p
== wxT('\0') )
961 else if ( *p
== wxT('.') ) {
962 // remove the dot from extension (but only if it's the first char)
963 if ( !strExt
.IsEmpty() ) {
966 //else: no, don't append it
976 // ----------------------------------------------------------------------------
977 // wxMimeTypesManagerImpl (Unix)
978 // ----------------------------------------------------------------------------
981 ArrayIconHandlers
& wxMimeTypesManagerImpl::GetIconHandlers()
983 if ( ms_iconHandlers
.GetCount() == 0 )
985 ms_iconHandlers
.Add(&gs_iconHandlerGNOME
);
986 ms_iconHandlers
.Add(&gs_iconHandlerKDE
);
989 return ms_iconHandlers
;
992 // read system and user mailcaps (TODO implement mime.types support)
993 wxMimeTypesManagerImpl::wxMimeTypesManagerImpl()
995 // directories where we look for mailcap and mime.types by default
996 // (taken from metamail(1) sources)
997 static const wxChar
*aStandardLocations
[] =
1001 wxT("/usr/local/etc"),
1003 wxT("/usr/public/lib")
1006 // first read the system wide file(s)
1008 for ( n
= 0; n
< WXSIZEOF(aStandardLocations
); n
++ ) {
1009 wxString dir
= aStandardLocations
[n
];
1011 wxString file
= dir
+ wxT("/mailcap");
1012 if ( wxFile::Exists(file
) ) {
1016 file
= dir
+ wxT("/mime.types");
1017 if ( wxFile::Exists(file
) ) {
1018 ReadMimeTypes(file
);
1022 wxString strHome
= wxGetenv(wxT("HOME"));
1024 // and now the users mailcap
1025 wxString strUserMailcap
= strHome
+ wxT("/.mailcap");
1026 if ( wxFile::Exists(strUserMailcap
) ) {
1027 ReadMailcap(strUserMailcap
);
1030 // read the users mime.types
1031 wxString strUserMimeTypes
= strHome
+ wxT("/.mime.types");
1032 if ( wxFile::Exists(strUserMimeTypes
) ) {
1033 ReadMimeTypes(strUserMimeTypes
);
1036 // read KDE/GNOME tables
1037 ArrayIconHandlers
& handlers
= GetIconHandlers();
1038 size_t count
= handlers
.GetCount();
1039 for ( size_t hn
= 0; hn
< count
; hn
++ )
1040 handlers
[hn
]->GetMimeInfoRecords(this);
1044 wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString
& ext
)
1046 wxFileType
*fileType
= NULL
;
1047 size_t count
= m_aExtensions
.GetCount();
1048 for ( size_t n
= 0; n
< count
; n
++ ) {
1049 wxString extensions
= m_aExtensions
[n
];
1050 while ( !extensions
.IsEmpty() ) {
1051 wxString field
= extensions
.BeforeFirst(wxT(' '));
1052 extensions
= extensions
.AfterFirst(wxT(' '));
1054 // consider extensions as not being case-sensitive
1055 if ( field
.IsSameAs(ext
, FALSE
/* no case */) ) {
1057 if (fileType
== NULL
) fileType
= new wxFileType
;
1058 fileType
->m_impl
->Init(this, n
);
1059 // adds this mime type to _list_ of mime types with this extension
1068 wxMimeTypesManagerImpl::GetFileTypeFromMimeType(const wxString
& mimeType
)
1070 // mime types are not case-sensitive
1071 wxString
mimetype(mimeType
);
1072 mimetype
.MakeLower();
1074 // first look for an exact match
1075 int index
= m_aTypes
.Index(mimetype
);
1076 if ( index
== wxNOT_FOUND
) {
1077 // then try to find "text/*" as match for "text/plain" (for example)
1078 // NB: if mimeType doesn't contain '/' at all, BeforeFirst() will return
1079 // the whole string - ok.
1080 wxString strCategory
= mimetype
.BeforeFirst(wxT('/'));
1082 size_t nCount
= m_aTypes
.Count();
1083 for ( size_t n
= 0; n
< nCount
; n
++ ) {
1084 if ( (m_aTypes
[n
].BeforeFirst(wxT('/')) == strCategory
) &&
1085 m_aTypes
[n
].AfterFirst(wxT('/')) == wxT("*") ) {
1092 if ( index
!= wxNOT_FOUND
) {
1093 wxFileType
*fileType
= new wxFileType
;
1094 fileType
->m_impl
->Init(this, index
);
1104 void wxMimeTypesManagerImpl::AddFallback(const wxFileTypeInfo
& filetype
)
1106 wxString extensions
;
1107 const wxArrayString
& exts
= filetype
.GetExtensions();
1108 size_t nExts
= exts
.GetCount();
1109 for ( size_t nExt
= 0; nExt
< nExts
; nExt
++ ) {
1111 extensions
+= wxT(' ');
1113 extensions
+= exts
[nExt
];
1116 AddMimeTypeInfo(filetype
.GetMimeType(),
1118 filetype
.GetDescription());
1120 AddMailcapInfo(filetype
.GetMimeType(),
1121 filetype
.GetOpenCommand(),
1122 filetype
.GetPrintCommand(),
1124 filetype
.GetDescription());
1127 void wxMimeTypesManagerImpl::AddMimeTypeInfo(const wxString
& strMimeType
,
1128 const wxString
& strExtensions
,
1129 const wxString
& strDesc
)
1131 int index
= m_aTypes
.Index(strMimeType
);
1132 if ( index
== wxNOT_FOUND
) {
1134 m_aTypes
.Add(strMimeType
);
1135 m_aEntries
.Add(NULL
);
1136 m_aExtensions
.Add(strExtensions
);
1137 m_aDescriptions
.Add(strDesc
);
1140 // modify an existing one
1141 if ( !strDesc
.IsEmpty() ) {
1142 m_aDescriptions
[index
] = strDesc
; // replace old value
1144 m_aExtensions
[index
] += ' ' + strExtensions
;
1148 void wxMimeTypesManagerImpl::AddMailcapInfo(const wxString
& strType
,
1149 const wxString
& strOpenCmd
,
1150 const wxString
& strPrintCmd
,
1151 const wxString
& strTest
,
1152 const wxString
& strDesc
)
1154 MailCapEntry
*entry
= new MailCapEntry(strOpenCmd
, strPrintCmd
, strTest
);
1156 int nIndex
= m_aTypes
.Index(strType
);
1157 if ( nIndex
== wxNOT_FOUND
) {
1159 m_aTypes
.Add(strType
);
1161 m_aEntries
.Add(entry
);
1162 m_aExtensions
.Add(wxT(""));
1163 m_aDescriptions
.Add(strDesc
);
1166 // always append the entry in the tail of the list - info added with
1167 // this function can only come from AddFallbacks()
1168 MailCapEntry
*entryOld
= m_aEntries
[nIndex
];
1170 entry
->Append(entryOld
);
1172 m_aEntries
[nIndex
] = entry
;
1176 bool wxMimeTypesManagerImpl::ReadMimeTypes(const wxString
& strFileName
)
1178 wxLogTrace(wxT("--- Parsing mime.types file '%s' ---"), strFileName
.c_str());
1180 wxTextFile
file(strFileName
);
1184 // the information we extract
1185 wxString strMimeType
, strDesc
, strExtensions
;
1187 size_t nLineCount
= file
.GetLineCount();
1188 const wxChar
*pc
= NULL
;
1189 for ( size_t nLine
= 0; nLine
< nLineCount
; nLine
++ ) {
1191 // now we're at the start of the line
1192 pc
= file
[nLine
].c_str();
1195 // we didn't finish with the previous line yet
1200 while ( wxIsspace(*pc
) )
1203 // comment or blank line?
1204 if ( *pc
== wxT('#') || !*pc
) {
1205 // skip the whole line
1210 // detect file format
1211 const wxChar
*pEqualSign
= wxStrchr(pc
, wxT('='));
1212 if ( pEqualSign
== NULL
) {
1216 // first field is mime type
1217 for ( strMimeType
.Empty(); !wxIsspace(*pc
) && *pc
!= wxT('\0'); pc
++ ) {
1222 while ( wxIsspace(*pc
) )
1225 // take all the rest of the string
1228 // no description...
1235 // the string on the left of '=' is the field name
1236 wxString
strLHS(pc
, pEqualSign
- pc
);
1239 for ( pc
= pEqualSign
+ 1; wxIsspace(*pc
); pc
++ )
1243 if ( *pc
== wxT('"') ) {
1244 // the string is quoted and ends at the matching quote
1245 pEnd
= wxStrchr(++pc
, wxT('"'));
1246 if ( pEnd
== NULL
) {
1247 wxLogWarning(_("Mime.types file %s, line %d: unterminated "
1249 strFileName
.c_str(), nLine
+ 1);
1253 // unquoted string ends at the first space
1254 for ( pEnd
= pc
; !wxIsspace(*pEnd
); pEnd
++ )
1258 // now we have the RHS (field value)
1259 wxString
strRHS(pc
, pEnd
- pc
);
1261 // check what follows this entry
1262 if ( *pEnd
== wxT('"') ) {
1267 for ( pc
= pEnd
; wxIsspace(*pc
); pc
++ )
1270 // if there is something left, it may be either a '\\' to continue
1271 // the line or the next field of the same entry
1272 bool entryEnded
= *pc
== wxT('\0'),
1273 nextFieldOnSameLine
= FALSE
;
1274 if ( !entryEnded
) {
1275 nextFieldOnSameLine
= ((*pc
!= wxT('\\')) || (pc
[1] != wxT('\0')));
1278 // now see what we got
1279 if ( strLHS
== wxT("type") ) {
1280 strMimeType
= strRHS
;
1282 else if ( strLHS
== wxT("desc") ) {
1285 else if ( strLHS
== wxT("exts") ) {
1286 strExtensions
= strRHS
;
1289 wxLogWarning(_("Unknown field in file %s, line %d: '%s'."),
1290 strFileName
.c_str(), nLine
+ 1, strLHS
.c_str());
1293 if ( !entryEnded
) {
1294 if ( !nextFieldOnSameLine
)
1296 //else: don't reset it
1298 // as we don't reset strMimeType, the next field in this entry
1299 // will be interpreted correctly.
1305 // although it doesn't seem to be covered by RFCs, some programs
1306 // (notably Netscape) create their entries with several comma
1307 // separated extensions (RFC mention the spaces only)
1308 strExtensions
.Replace(wxT(","), wxT(" "));
1310 // also deal with the leading dot
1311 if ( !strExtensions
.IsEmpty() && strExtensions
[0u] == wxT('.') )
1313 strExtensions
.erase(0, 1);
1316 AddMimeTypeInfo(strMimeType
, strExtensions
, strDesc
);
1318 // finished with this line
1322 // check our data integriry
1323 wxASSERT( m_aTypes
.Count() == m_aEntries
.Count() &&
1324 m_aTypes
.Count() == m_aExtensions
.Count() &&
1325 m_aTypes
.Count() == m_aDescriptions
.Count() );
1330 bool wxMimeTypesManagerImpl::ReadMailcap(const wxString
& strFileName
,
1333 wxLogTrace(wxT("--- Parsing mailcap file '%s' ---"), strFileName
.c_str());
1335 wxTextFile
file(strFileName
);
1339 // see the comments near the end of function for the reason we need these
1340 // variables (search for the next occurence of them)
1341 // indices of MIME types (in m_aTypes) we already found in this file
1342 wxArrayInt aEntryIndices
;
1343 // aLastIndices[n] is the index of last element in
1344 // m_aEntries[aEntryIndices[n]] from this file
1345 wxArrayInt aLastIndices
;
1347 size_t nLineCount
= file
.GetLineCount();
1348 for ( size_t nLine
= 0; nLine
< nLineCount
; nLine
++ ) {
1349 // now we're at the start of the line
1350 const wxChar
*pc
= file
[nLine
].c_str();
1353 while ( wxIsspace(*pc
) )
1356 // comment or empty string?
1357 if ( *pc
== wxT('#') || *pc
== wxT('\0') )
1362 // what field are we currently in? The first 2 are fixed and there may
1363 // be an arbitrary number of other fields -- currently, we are not
1364 // interested in any of them, but we should parse them as well...
1370 } currentToken
= Field_Type
;
1372 // the flags and field values on the current line
1373 bool needsterminal
= FALSE
,
1374 copiousoutput
= FALSE
;
1380 curField
; // accumulator
1381 for ( bool cont
= TRUE
; cont
; pc
++ ) {
1384 // interpret the next character literally (notice that
1385 // backslash can be used for line continuation)
1386 if ( *++pc
== wxT('\0') ) {
1387 // fetch the next line.
1389 // pc currently points to nowhere, but after the next
1390 // pc++ in the for line it will point to the beginning
1391 // of the next line in the file
1392 pc
= file
[++nLine
].c_str() - 1;
1395 // just a normal character
1401 cont
= FALSE
; // end of line reached, exit the loop
1406 // store this field and start looking for the next one
1408 // trim whitespaces from both sides
1409 curField
.Trim(TRUE
).Trim(FALSE
);
1411 switch ( currentToken
) {
1414 if ( strType
.Find(wxT('/')) == wxNOT_FOUND
) {
1415 // we interpret "type" as "type/*"
1416 strType
+= wxT("/*");
1419 currentToken
= Field_OpenCmd
;
1423 strOpenCmd
= curField
;
1425 currentToken
= Field_Other
;
1430 // "good" mailcap entry?
1433 // is this something of the form foo=bar?
1434 const wxChar
*pEq
= wxStrchr(curField
, wxT('='));
1435 if ( pEq
!= NULL
) {
1436 wxString lhs
= curField
.BeforeFirst(wxT('=')),
1437 rhs
= curField
.AfterFirst(wxT('='));
1439 lhs
.Trim(TRUE
); // from right
1440 rhs
.Trim(FALSE
); // from left
1442 if ( lhs
== wxT("print") )
1444 else if ( lhs
== wxT("test") )
1446 else if ( lhs
== wxT("description") ) {
1447 // it might be quoted
1448 if ( rhs
[0u] == wxT('"') &&
1449 rhs
.Last() == wxT('"') ) {
1450 strDesc
= wxString(rhs
.c_str() + 1,
1457 else if ( lhs
== wxT("compose") ||
1458 lhs
== wxT("composetyped") ||
1459 lhs
== wxT("notes") ||
1460 lhs
== wxT("edit") )
1467 // no, it's a simple flag
1468 // TODO support the flags:
1469 // 1. create an xterm for 'needsterminal'
1470 // 2. append "| $PAGER" for 'copiousoutput'
1471 if ( curField
== wxT("needsterminal") )
1472 needsterminal
= TRUE
;
1473 else if ( curField
== wxT("copiousoutput") )
1474 copiousoutput
= TRUE
;
1475 else if ( curField
== wxT("textualnewlines") )
1483 // we don't understand this field, but
1484 // Netscape stores info in it, so don't warn
1486 if ( curField
.Left(16u) != "x-mozilla-flags=" )
1488 // don't flood the user with error
1489 // messages if we don't understand
1490 // something in his mailcap, but give
1491 // them in debug mode because this might
1492 // be useful for the programmer
1495 wxT("Mailcap file %s, line %d: "
1496 "unknown field '%s' for the "
1497 "MIME type '%s' ignored."),
1498 strFileName
.c_str(),
1507 // it already has this value
1508 //currentToken = Field_Other;
1512 wxFAIL_MSG(wxT("unknown field type in mailcap"));
1515 // next token starts immediately after ';'
1524 // check that we really read something reasonable
1525 if ( currentToken
== Field_Type
|| currentToken
== Field_OpenCmd
) {
1526 wxLogWarning(_("Mailcap file %s, line %d: incomplete entry "
1528 strFileName
.c_str(), nLine
+ 1);
1531 MailCapEntry
*entry
= new MailCapEntry(strOpenCmd
,
1535 // NB: because of complications below (we must get entries priority
1536 // right), we can't use AddMailcapInfo() here, unfortunately.
1537 strType
.MakeLower();
1538 int nIndex
= m_aTypes
.Index(strType
);
1539 if ( nIndex
== wxNOT_FOUND
) {
1541 m_aTypes
.Add(strType
);
1543 m_aEntries
.Add(entry
);
1544 m_aExtensions
.Add(wxT(""));
1545 m_aDescriptions
.Add(strDesc
);
1548 // modify the existing entry: the entries in one and the same
1549 // file are read in top-to-bottom order, i.e. the entries read
1550 // first should be tried before the entries below. However,
1551 // the files read later should override the settings in the
1552 // files read before (except if fallback is TRUE), thus we
1553 // Insert() the new entry to the list if it has already
1554 // occured in _this_ file, but Prepend() it if it occured in
1555 // some of the previous ones and Append() to it in the
1559 // 'fallback' parameter prevents the entries from this
1560 // file from overriding the other ones - always append
1561 MailCapEntry
*entryOld
= m_aEntries
[nIndex
];
1563 entry
->Append(entryOld
);
1565 m_aEntries
[nIndex
] = entry
;
1568 int entryIndex
= aEntryIndices
.Index(nIndex
);
1569 if ( entryIndex
== wxNOT_FOUND
) {
1570 // first time in this file
1571 aEntryIndices
.Add(nIndex
);
1572 aLastIndices
.Add(0);
1574 entry
->Prepend(m_aEntries
[nIndex
]);
1575 m_aEntries
[nIndex
] = entry
;
1578 // not the first time in _this_ file
1579 size_t nEntryIndex
= (size_t)entryIndex
;
1580 MailCapEntry
*entryOld
= m_aEntries
[nIndex
];
1582 entry
->Insert(entryOld
, aLastIndices
[nEntryIndex
]);
1584 m_aEntries
[nIndex
] = entry
;
1586 // the indices were shifted by 1
1587 aLastIndices
[nEntryIndex
]++;
1591 if ( !strDesc
.IsEmpty() ) {
1592 // replace the old one - what else can we do??
1593 m_aDescriptions
[nIndex
] = strDesc
;
1598 // check our data integriry
1599 wxASSERT( m_aTypes
.Count() == m_aEntries
.Count() &&
1600 m_aTypes
.Count() == m_aExtensions
.Count() &&
1601 m_aTypes
.Count() == m_aDescriptions
.Count() );
1607 size_t wxMimeTypesManagerImpl::EnumAllFileTypes(wxArrayString
& mimetypes
)
1612 size_t count
= m_aTypes
.GetCount();
1613 for ( size_t n
= 0; n
< count
; n
++ )
1615 // don't return template types from here (i.e. anything containg '*')
1617 if ( type
.Find(_T('*')) == wxNOT_FOUND
)
1619 mimetypes
.Add(type
);
1623 return mimetypes
.GetCount();
1627 // wxUSE_FILE && wxUSE_TEXTFILE