LCOV - code coverage report
Current view: top level - libreoffice/forms/source/xforms/submission - submission_post.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 23 0.0 %
Date: 2012-12-27 Functions: 0 2 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : 
      21             : #include <memory>
      22             : 
      23             : #include "submission_post.hxx"
      24             : #include "serialization_app_xml.hxx"
      25             : #include "serialization_urlencoded.hxx"
      26             : 
      27             : #include <osl/file.hxx>
      28             : #include <ucbhelper/content.hxx>
      29             : #include <ucbhelper/activedatasink.hxx>
      30             : #include <com/sun/star/ucb/PostCommandArgument2.hpp>
      31             : 
      32             : using namespace CSS::uno;
      33             : using namespace CSS::ucb;
      34             : using namespace CSS::task;
      35             : using namespace CSS::io;
      36             : using namespace osl;
      37             : using namespace ucbhelper;
      38             : using namespace std;
      39             : 
      40             : using ::rtl::OUString;
      41             : 
      42             : 
      43           0 : CSubmissionPost::CSubmissionPost(const rtl::OUString& aURL, const CSS::uno::Reference< CSS::xml::dom::XDocumentFragment >& aFragment)
      44           0 :     : CSubmission(aURL, aFragment)
      45             : {
      46           0 : }
      47             : 
      48           0 : CSubmission::SubmissionResult CSubmissionPost::submit(const CSS::uno::Reference< CSS::task::XInteractionHandler >& aInteractionHandler)
      49             : {
      50             :     // PUT always uses application/xml
      51           0 :     CSS::uno::Reference< XCommandEnvironment > aEnvironment;
      52           0 :     auto_ptr< CSerialization > apSerialization(createSerialization(aInteractionHandler,aEnvironment));
      53             : 
      54             :     try {
      55           0 :         ucbhelper::Content aContent(m_aURLObj.GetMainURL(INetURLObject::NO_DECODE), aEnvironment, comphelper::getProcessComponentContext());
      56             : 
      57             :         // use post command
      58           0 :         OUString aCommandName(RTL_CONSTASCII_USTRINGPARAM("post"));
      59           0 :         PostCommandArgument2 aPostArgument;
      60           0 :         aPostArgument.Source = apSerialization->getInputStream();
      61           0 :         CSS::uno::Reference< XActiveDataSink > aSink(new ucbhelper::ActiveDataSink);
      62           0 :         aPostArgument.Sink = aSink;
      63           0 :         aPostArgument.MediaType = OUString(RTL_CONSTASCII_USTRINGPARAM("application/xml"));
      64           0 :         aPostArgument.Referer = OUString();
      65           0 :         Any aCommandArgument;
      66           0 :         aCommandArgument <<= aPostArgument;
      67           0 :         aContent.executeCommand( aCommandName, aCommandArgument);
      68             : 
      69             :         try {
      70           0 :             m_aResultStream = aSink->getInputStream();
      71           0 :         } catch (const Exception&) {
      72             :             OSL_FAIL("Cannot open reply stream from content");
      73           0 :         }
      74           0 :     } catch (const Exception&)
      75             :     {
      76             :         OSL_FAIL("Exception during UCB operatration.");
      77           0 :         return UNKNOWN_ERROR;
      78             :     }
      79             : 
      80           0 :     return SUCCESS;
      81             : }
      82             : 
      83             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10