summaryrefslogtreecommitdiff
path: root/dtrans/source/cnttype/mcnttype.cxx
diff options
context:
space:
mode:
authorMartin Hollmichel <mh@openoffice.org>2001-01-31 14:37:29 +0000
committerMartin Hollmichel <mh@openoffice.org>2001-01-31 14:37:29 +0000
commit41c5c7c8e279818daa2fe0f12bef3a97f95dba6b (patch)
tree072c3934fcec93322699997782554f9b42f25bf4 /dtrans/source/cnttype/mcnttype.cxx
parent3cf7e64c91cf3dbe9a6ac292a00d62f9797f6b1e (diff)
SRC619 import
Diffstat (limited to 'dtrans/source/cnttype/mcnttype.cxx')
-rw-r--r--dtrans/source/cnttype/mcnttype.cxx451
1 files changed, 451 insertions, 0 deletions
diff --git a/dtrans/source/cnttype/mcnttype.cxx b/dtrans/source/cnttype/mcnttype.cxx
new file mode 100644
index 000000000000..3601a5260cd2
--- /dev/null
+++ b/dtrans/source/cnttype/mcnttype.cxx
@@ -0,0 +1,451 @@
+/*************************************************************************
+ *
+ * $RCSfile: mcnttype.cxx,v $
+ *
+ * $Revision: 1.1.1.1 $
+ *
+ * last change: $Author: mh $ $Date: 2001-01-31 15:36:57 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+//------------------------------------------------------------------------
+// includes
+//------------------------------------------------------------------------
+
+#ifndef _MCNTTYPE_HXX_
+#include "mcnttype.hxx"
+#endif
+
+//------------------------------------------------------------------------
+// namespace directives
+//------------------------------------------------------------------------
+
+using namespace com::sun::star::uno;
+using namespace com::sun::star::lang;
+using namespace com::sun::star::container;
+using namespace rtl;
+using namespace std;
+using namespace osl;
+
+//------------------------------------------------------------------------
+// constants
+//------------------------------------------------------------------------
+
+const OUString TSPECIALS = OUString::createFromAscii( "()<>@,;:\\\"/[]?=" );
+const OUString TOKEN = OUString::createFromAscii( "!#$%&'*+-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz{|}~." );
+const OUString SPACE = OUString::createFromAscii( " " );
+
+//------------------------------------------------------------------------
+// ctor
+//------------------------------------------------------------------------
+
+CMimeContentType::CMimeContentType( const OUString& aCntType )
+{
+ init( aCntType );
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+OUString SAL_CALL CMimeContentType::getMediaType( ) throw(RuntimeException)
+{
+ return m_MediaType;
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+OUString SAL_CALL CMimeContentType::getMediaSubtype( ) throw(RuntimeException)
+{
+ return m_MediaSubtype;
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+OUString SAL_CALL CMimeContentType::getFullMediaType( ) throw(RuntimeException)
+{
+ return m_MediaType + OUString::createFromAscii( "/" ) + m_MediaSubtype;
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+Sequence< OUString > SAL_CALL CMimeContentType::getParameters( ) throw(RuntimeException)
+{
+ MutexGuard aGuard( m_aMutex );
+
+ Sequence< OUString > seqParams;
+
+ map< OUString, OUString >::iterator iter;
+ map< OUString, OUString >::iterator iter_end = m_ParameterMap.end( );
+
+ for ( iter = m_ParameterMap.begin( ); iter != iter_end; ++iter )
+ {
+ seqParams.realloc( seqParams.getLength( ) + 1 );
+ seqParams[seqParams.getLength( ) - 1] = iter->first;
+ }
+
+ return seqParams;
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+sal_Bool SAL_CALL CMimeContentType::hasParameter( const OUString& aName ) throw(RuntimeException)
+{
+ MutexGuard aGuard( m_aMutex );
+ return ( m_ParameterMap.end( ) != m_ParameterMap.find( aName ) );
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+OUString SAL_CALL CMimeContentType::getParameterValue( const OUString& aName ) throw(NoSuchElementException, RuntimeException)
+{
+ MutexGuard aGuard( m_aMutex );
+
+ if ( !hasParameter( aName ) )
+ throw NoSuchElementException( );
+
+ return m_ParameterMap.find( aName )->second;
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+void SAL_CALL CMimeContentType::init( const OUString& aCntType ) throw( IllegalArgumentException )
+{
+ if ( !aCntType.getLength( ) )
+ throw IllegalArgumentException( );
+
+ m_nPos = 0;
+ m_ContentType = aCntType;
+ getSym( );
+ type();
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+void SAL_CALL CMimeContentType::getSym( void )
+{
+ if ( m_nPos < m_ContentType.getLength( ) )
+ {
+ m_nxtSym = OUString( &m_ContentType[m_nPos], 1 );
+ ++m_nPos;
+ return;
+ }
+
+ m_nxtSym = OUString( );
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+void SAL_CALL CMimeContentType::acceptSym( const OUString& pSymTlb )
+{
+ if ( pSymTlb.indexOf( m_nxtSym ) < 0 )
+ throw IllegalArgumentException( );
+
+ getSym();
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+void SAL_CALL CMimeContentType::skipSpaces( void )
+{
+ while ( SPACE == m_nxtSym )
+ getSym( );
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+void SAL_CALL CMimeContentType::type( void )
+{
+ skipSpaces( );
+
+ // check FIRST( type )
+ if ( !isInRange( m_nxtSym, TOKEN ) )
+ throw IllegalArgumentException( );
+
+ // parse
+ while( m_nxtSym.getLength( ) )
+ {
+ if ( isInRange( m_nxtSym, TOKEN ) )
+ m_MediaType += m_nxtSym;
+ else if ( isInRange( m_nxtSym, OUString::createFromAscii( "/ " ) ) )
+ break;
+ else
+ throw IllegalArgumentException( );
+ getSym( );
+ }
+
+ // check FOLLOW( type )
+ skipSpaces( );
+ acceptSym( OUString::createFromAscii( "/" ) );
+
+ subtype( );
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+void SAL_CALL CMimeContentType::subtype( void )
+{
+ skipSpaces( );
+
+ // check FIRST( subtype )
+ if ( !isInRange( m_nxtSym, TOKEN ) )
+ throw IllegalArgumentException( );
+
+ while( m_nxtSym.getLength( ) )
+ {
+ if ( isInRange( m_nxtSym, TOKEN ) )
+ m_MediaSubtype += m_nxtSym;
+ else if ( isInRange( m_nxtSym, OUString::createFromAscii( "; " ) ) )
+ break;
+ else
+ throw IllegalArgumentException( );
+ getSym( );
+ }
+
+ // parse the rest
+ skipSpaces( );
+ trailer();
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+void SAL_CALL CMimeContentType::trailer( void )
+{
+ while( m_nxtSym.getLength( ) )
+ {
+ if ( m_nxtSym == OUString::createFromAscii( "(" ) )
+ {
+ getSym( );
+ comment( );
+ acceptSym( OUString::createFromAscii( ")" ) );
+ }
+ else if ( m_nxtSym == OUString::createFromAscii( ";" ) )
+ {
+ // get the parameter name
+ getSym( );
+ skipSpaces( );
+
+ if ( !isInRange( m_nxtSym, TOKEN ) )
+ throw IllegalArgumentException( );
+
+ OUString pname = pName( );
+
+ skipSpaces();
+ acceptSym( OUString::createFromAscii( "=" ) );
+
+ // get the parameter value
+ skipSpaces( );
+
+ OUString pvalue = pValue( );
+
+ // insert into map
+ if ( !m_ParameterMap.insert( pair < const OUString, OUString > ( pname, pvalue ) ).second )
+ throw IllegalArgumentException( );
+ }
+ else
+ throw IllegalArgumentException( );
+
+ skipSpaces( );
+ }
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+OUString SAL_CALL CMimeContentType::pName( )
+{
+ OUString pname;
+
+ while( m_nxtSym.getLength( ) )
+ {
+ if ( isInRange( m_nxtSym, TOKEN ) )
+ pname += m_nxtSym;
+ else if ( isInRange( m_nxtSym, OUString::createFromAscii( "= " ) ) )
+ break;
+ else
+ throw IllegalArgumentException( );
+ getSym( );
+ }
+
+ return pname;
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+OUString SAL_CALL CMimeContentType::pValue( )
+{
+ OUString pvalue;
+
+ // quoted pvalue
+ if ( m_nxtSym == OUString::createFromAscii( "\"" ) )
+ {
+ getSym( );
+ pvalue = quotedPValue( );
+
+ if ( OUString( &pvalue[pvalue.getLength() - 1], 1 ) != OUString::createFromAscii( "\"" ) )
+ throw IllegalArgumentException( );
+
+ // remove the last quote-sign
+ OUString qpvalue( pvalue, pvalue.getLength( ) - 1 );
+ pvalue = qpvalue;
+
+ if ( !pvalue.getLength( ) )
+ throw IllegalArgumentException( );
+ }
+ else if ( isInRange( m_nxtSym, TOKEN ) ) // unquoted pvalue
+ {
+ pvalue = nonquotedPValue( );
+ }
+ else
+ throw IllegalArgumentException( );
+
+ return pvalue;
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+OUString SAL_CALL CMimeContentType::quotedPValue( )
+{
+ OUString pvalue;
+
+ while ( m_nxtSym.getLength( ) )
+ {
+ if ( isInRange( m_nxtSym, TOKEN + TSPECIALS ) )
+ pvalue += m_nxtSym;
+ else if ( m_nxtSym == SPACE )
+ break;
+ else
+ throw IllegalArgumentException( );
+ getSym( );
+ }
+
+ return pvalue;
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+OUString SAL_CALL CMimeContentType::nonquotedPValue( )
+{
+ OUString pvalue;
+
+ while ( m_nxtSym.getLength( ) )
+ {
+ if ( isInRange( m_nxtSym, TOKEN ) )
+ pvalue += m_nxtSym;
+ else if ( isInRange( m_nxtSym, OUString::createFromAscii( "; " ) ) )
+ break;
+ else
+ throw IllegalArgumentException( );
+ getSym( );
+ }
+
+ return pvalue;
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+void SAL_CALL CMimeContentType::comment( void )
+{
+ while ( m_nxtSym.getLength( ) )
+ {
+ if ( isInRange( m_nxtSym, TOKEN + SPACE ) )
+ getSym( );
+ else if ( m_nxtSym, OUString::createFromAscii( ")" ) )
+ break;
+ else
+ throw IllegalArgumentException( );
+ }
+}
+
+//------------------------------------------------------------------------
+//
+//------------------------------------------------------------------------
+
+sal_Bool SAL_CALL CMimeContentType::isInRange( const rtl::OUString& aChr, const rtl::OUString& aRange )
+{
+ return ( aRange.indexOf( aChr ) > -1 );
+} \ No newline at end of file