From 4f4cadc143509bd7fb7dae9567152778aeeb5d23 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Wed, 14 Apr 2004 12:44:16 +0000 Subject: INTEGRATION: CWS unopkg1 (1.1.2); FILE ADDED 2004/01/20 15:20:44 kso 1.1.2.1: #112920# TDOC UCP: Initial revision. --- ucb/source/ucp/tdoc/tdoc_uri.hxx | 171 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 171 insertions(+) create mode 100644 ucb/source/ucp/tdoc/tdoc_uri.hxx (limited to 'ucb') diff --git a/ucb/source/ucp/tdoc/tdoc_uri.hxx b/ucb/source/ucp/tdoc/tdoc_uri.hxx new file mode 100644 index 000000000000..bc1b609e3288 --- /dev/null +++ b/ucb/source/ucp/tdoc/tdoc_uri.hxx @@ -0,0 +1,171 @@ +/************************************************************************* + * + * $RCSfile: tdoc_uri.hxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: hr $ $Date: 2004-04-14 13:44:16 $ + * + * 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): Kai Sommerfeld ( kso@sun.com ) + * + * + ************************************************************************/ + +#ifndef INCLUDED_TDOC_URI_HXX +#define INCLUDED_TDOC_URI_HXX + +#ifndef _RTL_USTRING_HXX_ +#include "rtl/ustring.hxx" +#endif + +namespace tdoc_ucp { + +//========================================================================= + +#define TDOC_URL_SCHEME "vnd.sun.star.tdoc" +#define TDOC_URL_SCHEME_LENGTH 17 + +//========================================================================= + +class Uri +{ + enum State { UNKNOWN, INVALID, VALID }; + + mutable ::rtl::OUString m_aUri; + mutable ::rtl::OUString m_aParentUri; + mutable ::rtl::OUString m_aPath; + mutable ::rtl::OUString m_aDocId; + mutable ::rtl::OUString m_aInternalPath; + mutable ::rtl::OUString m_aName; + mutable ::rtl::OUString m_aDecodedName; + mutable State m_eState; + +private: + void init() const; + +public: + Uri() : m_eState( UNKNOWN ) {} + Uri( const ::rtl::OUString & rUri ) + : m_aUri( rUri ), m_eState( UNKNOWN ) {} + + bool operator== ( const Uri & rOther ) const + { init(); return m_aUri == rOther.m_aUri; } + + bool operator!= ( const Uri & rOther ) const + { return !operator==( rOther ); } + + sal_Bool isValid() const + { init(); return m_eState == VALID; } + + const ::rtl::OUString & getUri() const + { init(); return m_aUri; } + + inline void setUri( const ::rtl::OUString & rUri ); + + const ::rtl::OUString & getParentUri() const + { init(); return m_aParentUri; } + + const ::rtl::OUString & getPath() const + { init(); return m_aPath; } + + const ::rtl::OUString & getDocumentId() const + { init(); return m_aDocId; } + + const ::rtl::OUString & getInternalPath() const + { init(); return m_aInternalPath; } + + const ::rtl::OUString & getName() const + { init(); return m_aName; } + + const ::rtl::OUString & getDecodedName() const + { init(); return m_aDecodedName; } + + inline sal_Bool isRoot() const; + + inline sal_Bool isDocument() const; + + inline sal_Bool isFolder() const; + + static ::rtl::OUString encodeURL( const ::rtl::OUString & rURL ); + static ::rtl::OUString encodeSegment( const ::rtl::OUString & rSegment ); + static ::rtl::OUString decodeSegment( const rtl::OUString& rSegment ); +}; + +inline void Uri::setUri( const ::rtl::OUString & rUri ) +{ + m_eState = UNKNOWN; + m_aUri = rUri; + m_aParentUri = m_aDocId = m_aInternalPath = m_aPath = m_aName + = m_aDecodedName = rtl::OUString(); +} + +inline sal_Bool Uri::isRoot() const +{ + init(); + return ( m_aPath.getLength() == 1 ); +} + +inline sal_Bool Uri::isDocument() const +{ + init(); + return ( ( m_aDocId.getLength() > 0 ) /* not root */ + && ( m_aPath.copy( m_aDocId.getLength() + 1 ).getLength() < 2 ) ); +} + +inline sal_Bool Uri::isFolder() const +{ + init(); + return ( m_aPath.lastIndexOf( '/' ) == m_aPath.getLength() - 1 ); +} + +} // namespace tdoc_ucp + +#endif /* !INCLUDED_TDOC_URI_HXX */ -- cgit