Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / dtrans / source / cnttype / mcnttype.hxx
blob9b5f7a6a43c3e3cfb168932b056a6ba262b7d2e7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
30 #ifndef _MCNTTYPE_HXX_
31 #define _MCNTTYPE_HXX_
33 //------------------------------------------------------------------------
34 // includes
35 //------------------------------------------------------------------------
37 #include <cppuhelper/compbase1.hxx>
38 #include <rtl/ustring.hxx>
39 #include <sal/types.h>
40 #include <com/sun/star/lang/IllegalArgumentException.hpp>
41 #include <com/sun/star/datatransfer/XMimeContentType.hpp>
43 #include <map>
45 //------------------------------------------------------------------------
46 // deklarations
47 //------------------------------------------------------------------------
49 class CMimeContentType : public
50 cppu::WeakImplHelper1< com::sun::star::datatransfer::XMimeContentType >
52 public:
53 CMimeContentType( const rtl::OUString& aCntType );
55 //-------------------------------------------
56 // XMimeContentType
57 //-------------------------------------------
59 virtual ::rtl::OUString SAL_CALL getMediaType( ) throw(::com::sun::star::uno::RuntimeException);
60 virtual ::rtl::OUString SAL_CALL getMediaSubtype( ) throw(::com::sun::star::uno::RuntimeException);
61 virtual ::rtl::OUString SAL_CALL getFullMediaType( ) throw(::com::sun::star::uno::RuntimeException);
63 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getParameters( )
64 throw(::com::sun::star::uno::RuntimeException);
66 virtual sal_Bool SAL_CALL hasParameter( const ::rtl::OUString& aName )
67 throw(::com::sun::star::uno::RuntimeException);
69 virtual ::rtl::OUString SAL_CALL getParameterValue( const ::rtl::OUString& aName )
70 throw(::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException);
72 private:
73 void SAL_CALL init( const rtl::OUString& aCntType ) throw( com::sun::star::lang::IllegalArgumentException );
74 void SAL_CALL getSym( void );
75 void SAL_CALL acceptSym( const rtl::OUString& pSymTlb );
76 void SAL_CALL skipSpaces( void );
77 void SAL_CALL type( void );
78 void SAL_CALL subtype( void );
79 void SAL_CALL trailer( void );
80 rtl::OUString SAL_CALL pName( );
81 rtl::OUString SAL_CALL pValue( );
82 rtl::OUString SAL_CALL quotedPValue( );
83 rtl::OUString SAL_CALL nonquotedPValue( );
84 void SAL_CALL comment( void );
85 sal_Bool SAL_CALL isInRange( const rtl::OUString& aChr, const rtl::OUString& aRange );
87 private:
88 ::osl::Mutex m_aMutex;
89 rtl::OUString m_MediaType;
90 rtl::OUString m_MediaSubtype;
91 rtl::OUString m_ContentType;
92 std::map< rtl::OUString, rtl::OUString > m_ParameterMap;
93 sal_Int32 m_nPos;
94 rtl::OUString m_nxtSym;
97 #endif
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */