1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #include <rtl/ustring.hxx>
27 #define TDOC_URL_SCHEME "vnd.sun.star.tdoc"
28 #define TDOC_URL_SCHEME_LENGTH 17
33 enum State
{ UNKNOWN
, INVALID
, VALID
};
35 mutable OUString m_aUri
;
36 mutable OUString m_aParentUri
;
37 mutable OUString m_aPath
;
38 mutable OUString m_aDocId
;
39 mutable OUString m_aName
;
40 mutable OUString m_aDecodedName
;
41 mutable State m_eState
;
47 explicit Uri( const OUString
& rUri
)
48 : m_aUri( rUri
), m_eState( UNKNOWN
) {}
50 bool operator== ( const Uri
& rOther
) const
51 { init(); return m_aUri
== rOther
.m_aUri
; }
53 bool operator!= ( const Uri
& rOther
) const
54 { return !operator==( rOther
); }
57 { init(); return m_eState
== VALID
; }
59 const OUString
& getUri() const
60 { init(); return m_aUri
; }
62 inline void setUri( const OUString
& rUri
);
64 const OUString
& getParentUri() const
65 { init(); return m_aParentUri
; }
67 const OUString
& getDocumentId() const
68 { init(); return m_aDocId
; }
70 const OUString
& getName() const
71 { init(); return m_aName
; }
73 const OUString
& getDecodedName() const
74 { init(); return m_aDecodedName
; }
76 inline bool isRoot() const;
78 inline bool isDocument() const;
81 inline void Uri::setUri( const OUString
& rUri
)
89 m_aDecodedName
.clear();
92 inline bool Uri::isRoot() const
95 return ( m_aPath
.getLength() == 1 );
98 inline bool Uri::isDocument() const
101 return ( ( !m_aDocId
.isEmpty() ) /* not root */
102 && ( m_aPath
.copy( m_aDocId
.getLength() + 1 ).getLength() < 2 ) );
105 } // namespace tdoc_ucp
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */