bump product version to 5.0.4.1
[LibreOffice.git] / forms / source / xforms / submission / submission_put.cxx
blob3d7284cf69cf9db727660758b9af00dde5420955
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <memory>
23 #include "submission_put.hxx"
24 #include "serialization_app_xml.hxx"
25 #include "serialization_urlencoded.hxx"
27 #include <osl/file.hxx>
28 #include <comphelper/processfactory.hxx>
29 #include <ucbhelper/content.hxx>
31 using namespace css::uno;
32 using namespace css::ucb;
33 using namespace css::task;
34 using namespace css::io;
35 using namespace osl;
36 using namespace ucbhelper;
37 using namespace std;
40 CSubmissionPut::CSubmissionPut(const OUString& aURL, const css::uno::Reference< css::xml::dom::XDocumentFragment >& aFragment)
41 : CSubmission(aURL, aFragment)
45 CSubmission::SubmissionResult CSubmissionPut::submit(const css::uno::Reference< css::task::XInteractionHandler >& aInteractionHandler)
47 css::uno::Reference< XCommandEnvironment > aEnvironment;
48 unique_ptr< CSerialization > apSerialization(createSerialization(aInteractionHandler,aEnvironment));
50 try {
51 ucbhelper::Content aContent(m_aURLObj.GetMainURL(INetURLObject::NO_DECODE), aEnvironment, comphelper::getProcessComponentContext());
53 // insert serialized data to content -> PUT
54 css::uno::Reference< XInputStream > aInStream = apSerialization->getInputStream();
55 aContent.writeStream(aInStream, true);
56 //aContent.closeStream();
58 // no content as a result of put...
60 catch ( const Exception& )
62 OSL_FAIL( "Exception during UCB operation." );
63 return UNKNOWN_ERROR;
67 return SUCCESS;
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */