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