LibreOffice Module forms (master) 1
submission_put.cxx
Go to the documentation of this file.
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_put.hxx"
24
26#include <ucbhelper/content.hxx>
28
29using namespace css::uno;
30using namespace css::ucb;
31using namespace css::task;
32using namespace css::io;
33using namespace osl;
34using namespace ucbhelper;
35
36
37CSubmissionPut::CSubmissionPut(std::u16string_view aURL, const css::uno::Reference< css::xml::dom::XDocumentFragment >& aFragment)
38 : CSubmission(aURL, aFragment)
39{
40}
41
42CSubmission::SubmissionResult CSubmissionPut::submit(const css::uno::Reference< css::task::XInteractionHandler >& aInteractionHandler)
43{
44 css::uno::Reference< XCommandEnvironment > aEnvironment;
45 std::unique_ptr< CSerialization > apSerialization(createSerialization(aInteractionHandler,aEnvironment));
46
47 try {
49
50 // insert serialized data to content -> PUT
51 css::uno::Reference< XInputStream > aInStream = apSerialization->getInputStream();
52 aContent.writeStream(aInStream, true);
53 //aContent.closeStream();
54
55 // no content as a result of put...
56 }
57 catch ( const Exception& )
58 {
59 TOOLS_WARN_EXCEPTION( "forms.misc", "Exception during UCB operation." );
60 return UNKNOWN_ERROR;
61 }
62
63
64 return SUCCESS;
65}
66
67/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
CSubmissionPut(std::u16string_view aURL, const css::uno::Reference< css::xml::dom::XDocumentFragment > &aFragment)
virtual SubmissionResult submit(const css::uno::Reference< css::task::XInteractionHandler > &aInteractionHandler) override
INetURLObject m_aURLObj
::std::unique_ptr< CSerialization > createSerialization(const css::uno::Reference< css::task::XInteractionHandler > &aHandler, css::uno::Reference< css::ucb::XCommandEnvironment > &_rOutEnv)
Definition: replace.cxx:108
OUString GetMainURL(DecodeMechanism eMechanism, rtl_TextEncoding eCharset=RTL_TEXTENCODING_UTF8) const
void writeStream(const css::uno::Reference< css::io::XInputStream > &rStream, bool bReplaceExisting)
#define TOOLS_WARN_EXCEPTION(area, stream)
URL aURL
@ Exception
Reference< XComponentContext > getProcessComponentContext()