]> git.saurik.com Git - wxWidgets.git/blame - src/common/mimecmn.cpp
compilation fix
[wxWidgets.git] / src / common / mimecmn.cpp
CommitLineData
7dc3cc31
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: common/mimecmn.cpp
3// Purpose: classes and functions to manage MIME types
4// Author: Vadim Zeitlin
5// Modified by:
c7ce8392 6// Chris Elliott (biol75@york.ac.uk) 5 Dec 00: write support for Win32
7dc3cc31
VS
7// Created: 23.09.98
8// RCS-ID: $Id$
9// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
55d99c7a 10// Licence: wxWindows licence (part of wxExtra library)
7dc3cc31
VS
11/////////////////////////////////////////////////////////////////////////////
12
a6c65e88
VZ
13// ============================================================================
14// declarations
15// ============================================================================
16
17// ----------------------------------------------------------------------------
18// headers
19// ----------------------------------------------------------------------------
20
7dc3cc31 21#ifdef __GNUG__
a6c65e88 22 #pragma implementation "mimetypebase.h"
7dc3cc31
VS
23#endif
24
25// for compilers that support precompilation, includes "wx.h".
26#include "wx/wxprec.h"
27
28#ifdef __BORLANDC__
1e6feb95 29 #pragma hdrstop
7dc3cc31
VS
30#endif
31
1e6feb95
VZ
32#if wxUSE_MIMETYPE
33
7dc3cc31 34#ifndef WX_PRECOMP
1e6feb95 35 #include "wx/module.h"
7dc3cc31 36#endif
5438a566
VZ
37// this one is needed for MSVC5
38#include "wx/module.h"
7dc3cc31 39
7dc3cc31
VS
40#ifndef WX_PRECOMP
41 #include "wx/string.h"
7dc3cc31
VS
42#endif //WX_PRECOMP
43
7dc3cc31
VS
44#include "wx/log.h"
45#include "wx/file.h"
da0766ab 46#include "wx/iconloc.h"
7dc3cc31
VS
47#include "wx/intl.h"
48#include "wx/dynarray.h"
49#include "wx/confbase.h"
50
7dc3cc31
VS
51#include "wx/mimetype.h"
52
53// other standard headers
54#include <ctype.h>
55
7dc3cc31 56// implementation classes:
7dc3cc31 57#if defined(__WXMSW__)
c7ce8392 58 #include "wx/msw/mimetype.h"
5fde6fcc 59#elif defined(__WXMAC__)
c7ce8392 60 #include "wx/mac/mimetype.h"
5fde6fcc 61#elif defined(__WXPM__)
c7ce8392
VZ
62 #include "wx/os2/mimetype.h"
63#else // Unix
64 #include "wx/unix/mimetype.h"
7dc3cc31
VS
65#endif
66
67// ============================================================================
68// common classes
69// ============================================================================
70
71// ----------------------------------------------------------------------------
72// wxFileTypeInfo
73// ----------------------------------------------------------------------------
74
57e67135
VZ
75wxFileTypeInfo::wxFileTypeInfo(const wxChar *mimeType,
76 const wxChar *openCmd,
77 const wxChar *printCmd,
78 const wxChar *desc,
7dc3cc31
VS
79 ...)
80 : m_mimeType(mimeType),
81 m_openCmd(openCmd),
82 m_printCmd(printCmd),
83 m_desc(desc)
84{
85 va_list argptr;
86 va_start(argptr, desc);
87
88 for ( ;; )
89 {
57e67135 90 const wxChar *ext = va_arg(argptr, const wxChar *);
7dc3cc31
VS
91 if ( !ext )
92 {
93 // NULL terminates the list
94 break;
95 }
96
97 m_exts.Add(ext);
98 }
99
100 va_end(argptr);
101}
102
2b813b73
VZ
103
104wxFileTypeInfo::wxFileTypeInfo(const wxArrayString& sArray)
105{
106 m_mimeType = sArray [0u];
107 m_openCmd = sArray [1u];
108 m_printCmd = sArray [2u];
109 m_desc = sArray [3u];
110
111 size_t count = sArray.GetCount();
112 for ( size_t i = 4; i < count; i++ )
113 {
114 m_exts.Add(sArray[i]);
115 }
116}
117
7dc3cc31
VS
118#include "wx/arrimpl.cpp"
119WX_DEFINE_OBJARRAY(wxArrayFileTypeInfo);
120
7dc3cc31
VS
121// ============================================================================
122// implementation of the wrapper classes
123// ============================================================================
124
125// ----------------------------------------------------------------------------
126// wxFileType
127// ----------------------------------------------------------------------------
128
a6c65e88 129/* static */
7dc3cc31
VS
130wxString wxFileType::ExpandCommand(const wxString& command,
131 const wxFileType::MessageParameters& params)
132{
133 bool hasFilename = FALSE;
134
135 wxString str;
136 for ( const wxChar *pc = command.c_str(); *pc != wxT('\0'); pc++ ) {
137 if ( *pc == wxT('%') ) {
138 switch ( *++pc ) {
139 case wxT('s'):
140 // '%s' expands into file name (quoted because it might
141 // contain spaces) - except if there are already quotes
142 // there because otherwise some programs may get confused
143 // by double double quotes
144#if 0
145 if ( *(pc - 2) == wxT('"') )
146 str << params.GetFileName();
147 else
148 str << wxT('"') << params.GetFileName() << wxT('"');
149#endif
150 str << params.GetFileName();
151 hasFilename = TRUE;
152 break;
153
154 case wxT('t'):
155 // '%t' expands into MIME type (quote it too just to be
156 // consistent)
157 str << wxT('\'') << params.GetMimeType() << wxT('\'');
158 break;
159
160 case wxT('{'):
161 {
162 const wxChar *pEnd = wxStrchr(pc, wxT('}'));
163 if ( pEnd == NULL ) {
164 wxString mimetype;
f6bcfd97 165 wxLogWarning(_("Unmatched '{' in an entry for mime type %s."),
7dc3cc31
VS
166 params.GetMimeType().c_str());
167 str << wxT("%{");
168 }
169 else {
170 wxString param(pc + 1, pEnd - pc - 1);
171 str << wxT('\'') << params.GetParamValue(param) << wxT('\'');
172 pc = pEnd;
173 }
174 }
175 break;
176
177 case wxT('n'):
178 case wxT('F'):
179 // TODO %n is the number of parts, %F is an array containing
180 // the names of temp files these parts were written to
181 // and their mime types.
182 break;
183
184 default:
185 wxLogDebug(wxT("Unknown field %%%c in command '%s'."),
186 *pc, command.c_str());
187 str << *pc;
188 }
189 }
190 else {
191 str << *pc;
192 }
193 }
194
195 // metamail(1) man page states that if the mailcap entry doesn't have '%s'
f6bcfd97
BP
196 // the program will accept the data on stdin so normally we should append
197 // "< %s" to the end of the command in such case, but not all commands
198 // behave like this, in particular a common test is 'test -n "$DISPLAY"'
199 // and appending "< %s" to this command makes the test fail... I don't
200 // know of the correct solution, try to guess what we have to do.
2b813b73
VZ
201
202 // test now carried out on reading file so test should never get here
f6bcfd97
BP
203 if ( !hasFilename && !str.IsEmpty()
204#ifdef __UNIX__
205 && !str.StartsWith(_T("test "))
206#endif // Unix
207 ) {
7dc3cc31
VS
208 str << wxT(" < '") << params.GetFileName() << wxT('\'');
209 }
210
211 return str;
212}
213
a6c65e88
VZ
214wxFileType::wxFileType(const wxFileTypeInfo& info)
215{
216 m_info = &info;
217 m_impl = NULL;
218}
219
7dc3cc31
VS
220wxFileType::wxFileType()
221{
a6c65e88 222 m_info = NULL;
7dc3cc31
VS
223 m_impl = new wxFileTypeImpl;
224}
225
226wxFileType::~wxFileType()
227{
dca2d56f
GT
228 if ( m_impl )
229 delete m_impl;
7dc3cc31
VS
230}
231
232bool wxFileType::GetExtensions(wxArrayString& extensions)
233{
a6c65e88
VZ
234 if ( m_info )
235 {
236 extensions = m_info->GetExtensions();
237 return TRUE;
238 }
239
7dc3cc31
VS
240 return m_impl->GetExtensions(extensions);
241}
242
243bool wxFileType::GetMimeType(wxString *mimeType) const
244{
a6c65e88
VZ
245 wxCHECK_MSG( mimeType, FALSE, _T("invalid parameter in GetMimeType") );
246
247 if ( m_info )
248 {
249 *mimeType = m_info->GetMimeType();
250
251 return TRUE;
252 }
253
7dc3cc31
VS
254 return m_impl->GetMimeType(mimeType);
255}
256
4d2976ad
VS
257bool wxFileType::GetMimeTypes(wxArrayString& mimeTypes) const
258{
a6c65e88
VZ
259 if ( m_info )
260 {
261 mimeTypes.Clear();
262 mimeTypes.Add(m_info->GetMimeType());
263
264 return TRUE;
265 }
266
4d2976ad
VS
267 return m_impl->GetMimeTypes(mimeTypes);
268}
269
da0766ab 270bool wxFileType::GetIcon(wxIconLocation *iconLoc) const
7dc3cc31 271{
a6c65e88
VZ
272 if ( m_info )
273 {
da0766ab 274 if ( iconLoc )
a6c65e88 275 {
da0766ab
VZ
276 iconLoc->SetFileName(m_info->GetIconFile());
277#ifdef __WXMSW__
278 iconLoc->SetIndex(m_info->GetIconIndex());
279#endif // __WXMSW__
a6c65e88 280 }
a6c65e88
VZ
281
282 return TRUE;
283 }
284
da0766ab 285 return m_impl->GetIcon(iconLoc);
7dc3cc31
VS
286}
287
288bool wxFileType::GetDescription(wxString *desc) const
289{
a6c65e88
VZ
290 wxCHECK_MSG( desc, FALSE, _T("invalid parameter in GetDescription") );
291
292 if ( m_info )
293 {
294 *desc = m_info->GetDescription();
295
296 return TRUE;
297 }
298
7dc3cc31
VS
299 return m_impl->GetDescription(desc);
300}
301
302bool
303wxFileType::GetOpenCommand(wxString *openCmd,
304 const wxFileType::MessageParameters& params) const
305{
a6c65e88
VZ
306 wxCHECK_MSG( openCmd, FALSE, _T("invalid parameter in GetOpenCommand") );
307
308 if ( m_info )
309 {
310 *openCmd = ExpandCommand(m_info->GetOpenCommand(), params);
311
312 return TRUE;
313 }
314
7dc3cc31
VS
315 return m_impl->GetOpenCommand(openCmd, params);
316}
317
0532a258
VZ
318wxString wxFileType::GetOpenCommand(const wxString& filename) const
319{
320 wxString cmd;
321 if ( !GetOpenCommand(&cmd, filename) )
322 {
323 // return empty string to indicate an error
324 cmd.clear();
325 }
326
327 return cmd;
328}
329
7dc3cc31
VS
330bool
331wxFileType::GetPrintCommand(wxString *printCmd,
332 const wxFileType::MessageParameters& params) const
333{
a6c65e88
VZ
334 wxCHECK_MSG( printCmd, FALSE, _T("invalid parameter in GetPrintCommand") );
335
336 if ( m_info )
337 {
338 *printCmd = ExpandCommand(m_info->GetPrintCommand(), params);
339
340 return TRUE;
341 }
342
7dc3cc31
VS
343 return m_impl->GetPrintCommand(printCmd, params);
344}
345
c7ce8392
VZ
346
347size_t wxFileType::GetAllCommands(wxArrayString *verbs,
348 wxArrayString *commands,
349 const wxFileType::MessageParameters& params) const
350{
351 if ( verbs )
352 verbs->Clear();
353 if ( commands )
354 commands->Clear();
355
2900bd1c 356#if defined (__WXMSW__) || defined(__UNIX__)
c7ce8392 357 return m_impl->GetAllCommands(verbs, commands, params);
2b813b73 358#else // !__WXMSW__ || Unix
c7ce8392
VZ
359 // we don't know how to retrieve all commands, so just try the 2 we know
360 // about
361 size_t count = 0;
362 wxString cmd;
a6c65e88 363 if ( GetOpenCommand(&cmd, params) )
c7ce8392
VZ
364 {
365 if ( verbs )
366 verbs->Add(_T("Open"));
367 if ( commands )
368 commands->Add(cmd);
369 count++;
370 }
371
372 if ( GetPrintCommand(&cmd, params) )
373 {
374 if ( verbs )
375 verbs->Add(_T("Print"));
376 if ( commands )
377 commands->Add(cmd);
378
379 count++;
380 }
381
382 return count;
2b813b73 383#endif // __WXMSW__/| __UNIX__
c7ce8392
VZ
384}
385
a6c65e88 386bool wxFileType::Unassociate()
c7ce8392 387{
2b813b73 388#if defined(__WXMSW__)
a6c65e88 389 return m_impl->Unassociate();
e4ad24c9 390#elif defined(__UNIX__) && !defined(__WXPM__)
2b813b73 391 return m_impl->Unassociate(this);
2900bd1c 392#else
a6c65e88 393 wxFAIL_MSG( _T("not implemented") ); // TODO
c7ce8392 394 return FALSE;
2900bd1c 395#endif
2b813b73
VZ
396}
397
398bool wxFileType::SetCommand(const wxString& cmd, const wxString& verb,
399bool overwriteprompt)
400{
2900bd1c 401#if defined (__WXMSW__) || defined(__UNIX__)
2b813b73
VZ
402 return m_impl->SetCommand(cmd, verb, overwriteprompt);
403#else
404 wxFAIL_MSG(_T("not implemented"));
2b813b73 405 return FALSE;
c7ce8392
VZ
406#endif
407}
408
2b813b73
VZ
409bool wxFileType::SetDefaultIcon(const wxString& cmd, int index)
410{
411 wxString sTmp = cmd;
412#ifdef __WXMSW__
413 // VZ: should we do this?
414 // chris elliott : only makes sense in MS windows
415 if ( sTmp.empty() )
2b5f62a0 416 GetOpenCommand(&sTmp, wxFileType::MessageParameters(wxT(""), wxT("")));
2b813b73
VZ
417#endif
418 wxCHECK_MSG( !sTmp.empty(), FALSE, _T("need the icon file") );
419
2900bd1c 420#if defined (__WXMSW__) || defined(__UNIX__)
2b813b73
VZ
421 return m_impl->SetDefaultIcon (cmd, index);
422#else
423 wxFAIL_MSG(_T("not implemented"));
424
425 return FALSE;
426#endif
427}
428
429
7dc3cc31
VS
430// ----------------------------------------------------------------------------
431// wxMimeTypesManager
432// ----------------------------------------------------------------------------
433
434void wxMimeTypesManager::EnsureImpl()
435{
c7ce8392 436 if ( !m_impl )
7dc3cc31
VS
437 m_impl = new wxMimeTypesManagerImpl;
438}
439
440bool wxMimeTypesManager::IsOfType(const wxString& mimeType,
441 const wxString& wildcard)
442{
443 wxASSERT_MSG( mimeType.Find(wxT('*')) == wxNOT_FOUND,
444 wxT("first MIME type can't contain wildcards") );
445
446 // all comparaisons are case insensitive (2nd arg of IsSameAs() is FALSE)
a6c65e88
VZ
447 if ( wildcard.BeforeFirst(wxT('/')).
448 IsSameAs(mimeType.BeforeFirst(wxT('/')), FALSE) )
7dc3cc31
VS
449 {
450 wxString strSubtype = wildcard.AfterFirst(wxT('/'));
451
452 if ( strSubtype == wxT("*") ||
453 strSubtype.IsSameAs(mimeType.AfterFirst(wxT('/')), FALSE) )
454 {
455 // matches (either exactly or it's a wildcard)
456 return TRUE;
457 }
458 }
459
460 return FALSE;
461}
462
463wxMimeTypesManager::wxMimeTypesManager()
464{
465 m_impl = NULL;
466}
467
468wxMimeTypesManager::~wxMimeTypesManager()
469{
8a16a98e
GT
470 if ( m_impl )
471 delete m_impl;
7dc3cc31
VS
472}
473
2b813b73
VZ
474bool wxMimeTypesManager::Unassociate(wxFileType *ft)
475{
b4da152e 476#if defined(__UNIX__) && !defined(__WXPM__) && !defined(__CYGWIN__) && !defined(__WINE__)
2b813b73
VZ
477 return m_impl->Unassociate(ft);
478#else
479 return ft->Unassociate();
480#endif
481}
482
483
7dc3cc31 484wxFileType *
a6c65e88 485wxMimeTypesManager::Associate(const wxFileTypeInfo& ftInfo)
7dc3cc31
VS
486{
487 EnsureImpl();
a6c65e88 488
e4ad24c9 489#if defined(__WXMSW__) || (defined(__UNIX__) && !defined(__WXPM__))
a6c65e88
VZ
490 return m_impl->Associate(ftInfo);
491#else // other platforms
492 wxFAIL_MSG( _T("not implemented") ); // TODO
493 return NULL;
494#endif // platforms
7dc3cc31
VS
495}
496
c7ce8392 497wxFileType *
a6c65e88 498wxMimeTypesManager::GetFileTypeFromExtension(const wxString& ext)
c7ce8392
VZ
499{
500 EnsureImpl();
a6c65e88
VZ
501 wxFileType *ft = m_impl->GetFileTypeFromExtension(ext);
502
503 if ( !ft ) {
504 // check the fallbacks
505 //
506 // TODO linear search is potentially slow, perhaps we should use a
507 // sorted array?
508 size_t count = m_fallbacks.GetCount();
509 for ( size_t n = 0; n < count; n++ ) {
510 if ( m_fallbacks[n].GetExtensions().Index(ext) != wxNOT_FOUND ) {
511 ft = new wxFileType(m_fallbacks[n]);
512
513 break;
514 }
515 }
516 }
c7ce8392 517
a6c65e88 518 return ft;
c7ce8392
VZ
519}
520
7dc3cc31
VS
521wxFileType *
522wxMimeTypesManager::GetFileTypeFromMimeType(const wxString& mimeType)
523{
524 EnsureImpl();
a6c65e88
VZ
525 wxFileType *ft = m_impl->GetFileTypeFromMimeType(mimeType);
526
527 if ( ft ) {
528 // check the fallbacks
529 //
530 // TODO linear search is potentially slow, perhaps we should use a sorted
531 // array?
532 size_t count = m_fallbacks.GetCount();
533 for ( size_t n = 0; n < count; n++ ) {
534 if ( wxMimeTypesManager::IsOfType(mimeType,
535 m_fallbacks[n].GetMimeType()) ) {
536 ft = new wxFileType(m_fallbacks[n]);
537
538 break;
539 }
540 }
541 }
542
543 return ft;
7dc3cc31
VS
544}
545
546bool wxMimeTypesManager::ReadMailcap(const wxString& filename, bool fallback)
547{
548 EnsureImpl();
549 return m_impl->ReadMailcap(filename, fallback);
550}
551
552bool wxMimeTypesManager::ReadMimeTypes(const wxString& filename)
553{
554 EnsureImpl();
555 return m_impl->ReadMimeTypes(filename);
556}
557
558void wxMimeTypesManager::AddFallbacks(const wxFileTypeInfo *filetypes)
559{
560 EnsureImpl();
a6c65e88
VZ
561 for ( const wxFileTypeInfo *ft = filetypes; ft && ft->IsValid(); ft++ ) {
562 AddFallback(*ft);
7dc3cc31
VS
563 }
564}
565
566size_t wxMimeTypesManager::EnumAllFileTypes(wxArrayString& mimetypes)
567{
568 EnsureImpl();
a6c65e88
VZ
569 size_t countAll = m_impl->EnumAllFileTypes(mimetypes);
570
571 // add the fallback filetypes
572 size_t count = m_fallbacks.GetCount();
573 for ( size_t n = 0; n < count; n++ ) {
574 if ( mimetypes.Index(m_fallbacks[n].GetMimeType()) == wxNOT_FOUND ) {
575 mimetypes.Add(m_fallbacks[n].GetMimeType());
576 countAll++;
577 }
578 }
7dc3cc31 579
a6c65e88
VZ
580 return countAll;
581}
7dc3cc31 582
2b813b73
VZ
583void wxMimeTypesManager::Initialize(int mcapStyle,
584 const wxString& sExtraDir)
585{
b4da152e 586#if defined(__UNIX__) && !defined(__WXPM__) && !defined(__CYGWIN__) && !defined(__WINE__)
2b813b73
VZ
587 EnsureImpl();
588
589 m_impl->Initialize(mcapStyle, sExtraDir);
33ac7e6f
KB
590#else
591 (void)mcapStyle;
592 (void)sExtraDir;
2b813b73
VZ
593#endif // Unix
594}
595
596// and this function clears all the data from the manager
597void wxMimeTypesManager::ClearData()
598{
b4da152e 599#if defined(__UNIX__) && !defined(__WXPM__) && !defined(__CYGWIN__) && !defined(__WINE__)
2b813b73
VZ
600 EnsureImpl();
601
602 m_impl->ClearData();
603#endif // Unix
604}
605
7dc3cc31 606// ----------------------------------------------------------------------------
a6c65e88 607// global data and wxMimeTypeCmnModule
7dc3cc31
VS
608// ----------------------------------------------------------------------------
609
610// private object
611static wxMimeTypesManager gs_mimeTypesManager;
612
613// and public pointer
a6c65e88 614wxMimeTypesManager *wxTheMimeTypesManager = &gs_mimeTypesManager;
7dc3cc31 615
66806a0b
VS
616class wxMimeTypeCmnModule: public wxModule
617{
66806a0b 618public:
c7ce8392
VZ
619 wxMimeTypeCmnModule() : wxModule() { }
620 virtual bool OnInit() { return TRUE; }
621 virtual void OnExit()
622 {
623 // this avoids false memory leak allerts:
624 if ( gs_mimeTypesManager.m_impl != NULL )
625 {
626 delete gs_mimeTypesManager.m_impl;
627 gs_mimeTypesManager.m_impl = NULL;
65e50848 628 gs_mimeTypesManager.m_fallbacks.Clear();
c7ce8392 629 }
66806a0b 630 }
c7ce8392
VZ
631
632 DECLARE_DYNAMIC_CLASS(wxMimeTypeCmnModule)
66806a0b
VS
633};
634
635IMPLEMENT_DYNAMIC_CLASS(wxMimeTypeCmnModule, wxModule)
1e6feb95
VZ
636
637#endif // wxUSE_MIMETYPE