/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . */ #include #include "stocservices.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "UriReference.hxx" namespace { bool parseSchemeSpecificPart(OUString const & part) { // Liberally accepts both an empty opaque_part and an opaque_part that // starts with a non-escaped "/": return part.isEmpty() || (!::rtl::Uri::decode(part, ::rtl_UriDecodeStrict, RTL_TEXTENCODING_UTF8).isEmpty()); } class UrlReference: public ::cppu::WeakImplHelper1, private boost::noncopyable { public: UrlReference(OUString const & scheme, OUString const & path): base_( scheme, false, false, OUString(), path, false, OUString()) {} virtual OUString SAL_CALL getUriReference() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.getUriReference(); } virtual sal_Bool SAL_CALL isAbsolute() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.isAbsolute(); } virtual OUString SAL_CALL getScheme() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.getScheme(); } virtual OUString SAL_CALL getSchemeSpecificPart() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.getSchemeSpecificPart(); } virtual sal_Bool SAL_CALL isHierarchical() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.isHierarchical(); } virtual sal_Bool SAL_CALL hasAuthority() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.hasAuthority(); } virtual OUString SAL_CALL getAuthority() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.getAuthority(); } virtual OUString SAL_CALL getPath() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.getPath(); } virtual sal_Bool SAL_CALL hasRelativePath() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.hasRelativePath(); } virtual ::sal_Int32 SAL_CALL getPathSegmentCount() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.getPathSegmentCount(); } virtual OUString SAL_CALL getPathSegment(sal_Int32 index) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.getPathSegment(index); } virtual sal_Bool SAL_CALL hasQuery() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.hasQuery(); } virtual OUString SAL_CALL getQuery() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.getQuery(); } virtual sal_Bool SAL_CALL hasFragment() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.hasFragment(); } virtual OUString SAL_CALL getFragment() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { return base_.getFragment(); } virtual void SAL_CALL setFragment(OUString const & fragment) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { base_.setFragment(fragment); } virtual void SAL_CALL clearFragment() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE { base_.clearFragment(); } virtual OUString SAL_CALL expand( css::uno::Reference< css::util::XMacroExpander > const & expander) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; private: virtual ~UrlReference() {} stoc::uriproc::UriReference base_; }; OUString UrlReference::expand( css::uno::Reference< css::util::XMacroExpander > const & expander) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) { OSL_ASSERT(expander.is()); return expander->expandMacros( ::rtl::Uri::decode( getPath(), ::rtl_UriDecodeWithCharset, RTL_TEXTENCODING_UTF8)); } class Parser: public ::cppu::WeakImplHelper2< css::lang::XServiceInfo, css::uri::XUriSchemeParser>, private boost::noncopyable { public: Parser() {} virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual sal_Bool SAL_CALL supportsService( OUString const & serviceName) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual css::uno::Reference< css::uri::XUriReference > SAL_CALL parse( OUString const & scheme, OUString const & schemeSpecificPart) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; private: virtual ~Parser() {} }; OUString Parser::getImplementationName() throw (css::uno::RuntimeException, std::exception) { return ::stoc_services::UriSchemeParser_vndDOTsunDOTstarDOTexpand:: getImplementationName(); } sal_Bool Parser::supportsService(OUString const & serviceName) throw (css::uno::RuntimeException, std::exception) { return cppu::supportsService(this, serviceName); } css::uno::Sequence< OUString > Parser::getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) { return ::stoc_services::UriSchemeParser_vndDOTsunDOTstarDOTexpand:: getSupportedServiceNames(); } css::uno::Reference< css::uri::XUriReference > Parser::parse( OUString const & scheme, OUString const & schemeSpecificPart) throw (css::uno::RuntimeException, std::exception) { if (!parseSchemeSpecificPart(schemeSpecificPart)) { return css::uno::Reference< css::uri::XUriReference >(); } return new UrlReference(scheme, schemeSpecificPart); } } namespace stoc_services { namespace UriSchemeParser_vndDOTsunDOTstarDOTexpand { css::uno::Reference< css::uno::XInterface > create( SAL_UNUSED_PARAMETER css::uno::Reference< css::uno::XComponentContext > const &) { //TODO: single instance return static_cast< ::cppu::OWeakObject * >(new Parser); } OUString getImplementationName() { return OUString( "com.sun.star.comp.uri.UriSchemeParser_vndDOTsunDOTstarDOTexpand"); } css::uno::Sequence< OUString > getSupportedServiceNames() { css::uno::Sequence< OUString > s(1); s[0] = OUString( "com.sun.star.uri.UriSchemeParser_vndDOTsunDOTstarDOTexpand"); return s; } } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */