1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir#ifndef __com_sun_star_uri_XExternalUriReferenceTranslator_idl__
29*cdf0e10cSrcweir#define __com_sun_star_uri_XExternalUriReferenceTranslator_idl__
30*cdf0e10cSrcweir
31*cdf0e10cSrcweir#include <com/sun/star/uno/XInterface.idl>
32*cdf0e10cSrcweir
33*cdf0e10cSrcweirmodule com { module sun { module star { module uri {
34*cdf0e10cSrcweir
35*cdf0e10cSrcweir/**
36*cdf0e10cSrcweir   translates between external and internal URI references.
37*cdf0e10cSrcweir
38*cdf0e10cSrcweir   <p>Some URI schemes leave unspecified important aspects of how to interpret
39*cdf0e10cSrcweir   URIs of those schemes.  For example, it is unspecified for &ldquo;file&rdquo;
40*cdf0e10cSrcweir   URLs how to map the byte sequences that constitute the path segments of a
41*cdf0e10cSrcweir   &ldquo;file&rdquo; URL to filenames on a given platform:  The UNO environment
42*cdf0e10cSrcweir   always assumes that path segments of &ldquo;file&rdquo; URLs represent
43*cdf0e10cSrcweir   UTF-8&ndash;encoded strings (which have to be mapped to filenames in a
44*cdf0e10cSrcweir   platform-specific way), while other applications typically assume that path
45*cdf0e10cSrcweir   segments of &ldquo;file&rdquo; URLs directly represent a platform's
46*cdf0e10cSrcweir   byte-sequence filenames.  This interface offers methods to translate between
47*cdf0e10cSrcweir   such <dfn>internal</dfn> URIs (e.g., UTF-8&ndash;encoded &ldquo;file&rdquo;
48*cdf0e10cSrcweir   URLs used within the UNO environment) and <dfn>external</dfn> URIs (e.g.,
49*cdf0e10cSrcweir   byte-sequence&ndash;oriented &ldquo;file&rdquo; URLs used by other
50*cdf0e10cSrcweir   applications).  Typically, only &ldquo;file&rdquo; URLs are affected by this
51*cdf0e10cSrcweir   translation.</p>
52*cdf0e10cSrcweir
53*cdf0e10cSrcweir   <p>Since the translation process is based on URI schemes, relative URI
54*cdf0e10cSrcweir   references (that do not include a scheme) are left unmodified by the
55*cdf0e10cSrcweir   translation process.</p>
56*cdf0e10cSrcweir
57*cdf0e10cSrcweir   @since OOo 2.0
58*cdf0e10cSrcweir */
59*cdf0e10cSrcweirpublished interface XExternalUriReferenceTranslator {
60*cdf0e10cSrcweir    /**
61*cdf0e10cSrcweir       returns the internal counterpart of an external URI reference.
62*cdf0e10cSrcweir
63*cdf0e10cSrcweir       @param externalUriReference
64*cdf0e10cSrcweir       an external URI reference.
65*cdf0e10cSrcweir
66*cdf0e10cSrcweir       @returns
67*cdf0e10cSrcweir       the internal counterpart of the given external URI reference.  An empty
68*cdf0e10cSrcweir       string is returned if the given external URI reference either is an empty
69*cdf0e10cSrcweir       string or cannot be converted (for example, because it contains illegal
70*cdf0e10cSrcweir       characters).
71*cdf0e10cSrcweir     */
72*cdf0e10cSrcweir    string translateToInternal([in] string externalUriReference);
73*cdf0e10cSrcweir
74*cdf0e10cSrcweir    /**
75*cdf0e10cSrcweir       returns the external counterpart of an internal URI reference.
76*cdf0e10cSrcweir
77*cdf0e10cSrcweir       @param internalUriReference
78*cdf0e10cSrcweir       an internal URI reference.
79*cdf0e10cSrcweir
80*cdf0e10cSrcweir       @returns
81*cdf0e10cSrcweir       the external counterpart of the given internal URI reference.  An empty
82*cdf0e10cSrcweir       string is returned if the given internal URI reference either is an empty
83*cdf0e10cSrcweir       string or cannot be converted (for example, because it contains illegal
84*cdf0e10cSrcweir       characters).
85*cdf0e10cSrcweir     */
86*cdf0e10cSrcweir    string translateToExternal([in] string internalUriReference);
87*cdf0e10cSrcweir};
88*cdf0e10cSrcweir
89*cdf0e10cSrcweir}; }; }; };
90*cdf0e10cSrcweir
91*cdf0e10cSrcweir#endif
92