/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef __com_sun_star_uri_XUriReferenceFactory_idl__ #define __com_sun_star_uri_XUriReferenceFactory_idl__ #include #include #include module com { module sun { module star { module uri { /** creates URI references.

See RFC 2396 for a description of URI references and related terms.

@since OOo 2.0.0 */ published interface XUriReferenceFactory: com::sun::star::uno::XInterface { /** parses the textual representation of a URI reference. @param uriReference the textual representation of a URI reference. @returns an object that supports XUriReference (and possibly also additional, scheme-specific interfaces), if the given input can be parsed into a URI reference; otherwise, is returned. */ XUriReference parse([in] string uriReference); /** resolves a relative URI reference to absolute form. @param baseUriReference the base URI reference. If the given uriReference is a same-document reference, baseUriReference is used as a reference to the current document. @param uriReference any URI reference. Backwards-compatible relative URI references starting with a scheme component (see RFC 2396, Section 5.2, step 3) are not supported; instead, they are interpreted as absolute URI references. @param processSpecialBaseSegments if , special segments (“.” and “..”) within the path of the base URI (except for the last, cut-off segment) are processed as suggested by RFC 2396. If , special segments within the path of the base URI are treated like ordinary segments. @param excessParentSegments details how excess special parent segments (“..”) are handled. @returns a fresh object that supports XUriReference (and possibly also additional, scheme-specific interfaces), if the given uriReference is either already absolute, or can be resolved to an absolute URI reference, relative to the given baseUriReference; otherwise, is returned. Especially, if baseUriReference is , or is not an absolute, hierarchical URI reference, or if uriReference is , then is always returned. */ XUriReference makeAbsolute( [in] XUriReference baseUriReference, [in] XUriReference uriReference, [in] boolean processSpecialBaseSegments, [in] RelativeUriExcessParentSegments excessParentSegments); /** changes an absolute URI refrence to relative form. @param baseUriReference the base URI reference. @param uriReference any URI reference. @param preferAuthorityOverRelativePath controls how a relative URI reference is generated when both baseUriReference (e.g., “scheme://auth/a/b”) and uriReference (e.g., “scheme://auth//c/d”) have the same scheme and authority components, and the path component of uriReference starts with “//”. If , the generated relative URI reference includes an authority component (e.g., “//auth//c/d”); if , the generated relative URI reference has a relative path (e.g., “..//c/d”). @param preferAbsoluteOverRelativePath controls how a relative URI reference is generated when both baseUriReference (e.g., “scheme://auth/a/b”) and uriReference (e.g., “scheme://auth/c/d”) have the same scheme and authority components (if present), but share no common path segments. If , the generated relative URI reference has an absolute path (e.g., “/c/d”); if , the generated relative URI reference has a relative path (e.g., “../c/d”). @param encodeRetainedSpecialSegments if , special segments (“.” and “..”) that are already present in the path component of the given uriReference and which end up in a relative path returned from this method, are encoded (as “%2E” and “%2E%2E”, respectively). @returns a fresh object that supports XUriReference, if the given uriReference is either already relative, or is not hierarchical, or is of a different scheme than the given baseUriReference, or can be changed to a relative URI reference, relative to the given baseUriReference; otherwise, is returned. Especially, if baseUriReference is , or is not an absolute, hierarchical URI reference, or if uriReference is , then is always returned. */ XUriReference makeRelative( [in] XUriReference baseUriReference, [in] XUriReference uriReference, [in] boolean preferAuthorityOverRelativePath, [in] boolean preferAbsoluteOverRelativePath, [in] boolean encodeRetainedSpecialSegments); }; }; }; }; }; #endif