/* -*- 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 "odfserializer.hxx" #include #include #include #include #include #include #include #include using namespace ::com::sun::star; namespace { class OutputWrap : public cppu::WeakImplHelper< io::XOutputStream> { osl::File maFile; public: explicit OutputWrap( const OUString& rURL ) : maFile(rURL) { maFile.open( osl_File_OpenFlag_Create|osl_File_OpenFlag_Write ); } virtual void SAL_CALL writeBytes( const css::uno::Sequence< ::sal_Int8 >& aData ) override { sal_uInt64 nBytesWritten(0); maFile.write(aData.getConstArray(),aData.getLength(),nBytesWritten); } virtual void SAL_CALL flush() override { } virtual void SAL_CALL closeOutput() override { maFile.close(); } }; } SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) { if( argc != 4 ) { SAL_WARN("filter.svg", "Invocation: svg2odf . Exiting" ); return 1; } int nRet = 1; try { OUString aBaseURL, aTmpURL, aSrcURL, aDstURL, aIniUrl; osl_getProcessWorkingDir(&aBaseURL.pData); osl_getFileURLFromSystemPath( OUString::createFromAscii(argv[1]).pData, &aTmpURL.pData ); osl_getAbsoluteFileURL(aBaseURL.pData,aTmpURL.pData,&aSrcURL.pData); osl_getFileURLFromSystemPath( OUString::createFromAscii(argv[2]).pData, &aTmpURL.pData ); osl_getAbsoluteFileURL(aBaseURL.pData,aTmpURL.pData,&aDstURL.pData); osl_getFileURLFromSystemPath( OUString::createFromAscii(argv[3]).pData, &aTmpURL.pData ); osl_getAbsoluteFileURL(aBaseURL.pData,aTmpURL.pData,&aIniUrl.pData); // bootstrap UNO uno::Reference< lang::XMultiServiceFactory > xFactory; uno::Reference< uno::XComponentContext > xCtx; xCtx = ::cppu::defaultBootstrap_InitialComponentContext(aIniUrl); xFactory.set(xCtx->getServiceManager(), uno::UNO_QUERY); if (!xFactory.is()) { SAL_WARN("filter.svg", "Could not bootstrap UNO, installation must be in disorder. Exiting." ); return 1; } ::comphelper::setProcessServiceFactory( xFactory ); osl::File aInputFile(aSrcURL); if( osl::FileBase::E_None!=aInputFile.open(osl_File_OpenFlag_Read) ) { SAL_WARN("filter.svg", "Cannot open input file" ); return 1; } svgi::SVGReader aReader(xCtx, uno::Reference( new comphelper::OSLInputStreamWrapper(aInputFile)), svgi::createSerializer(new OutputWrap(aDstURL))); nRet = aReader.parseAndConvert() ? 0 : 1; } catch (const uno::Exception& e) { SAL_WARN("filter.svg", "Fatal exception: " << e); return 1; } catch (const std::exception &e) { SAL_WARN("filter.svg", "Fatal exception: " << e.what()); return 1; } return nRet; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */