Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / ucb / source / ucp / ftp / ftploaderthread.cxx
blob91130fc1bc9cf4a761fe2b3110307dd5241adbcc
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 .
20 /**************************************************************************
21 TODO
22 **************************************************************************
24 *************************************************************************/
25 #include "ftploaderthread.hxx"
26 #include "curl.hxx"
28 #include <curlinit.hxx>
30 using namespace ftp;
33 /********************************************************************************/
34 /* */
35 /* cleanup function for thread specific data */
36 /* */
37 /********************************************************************************/
39 extern "C" {
41 static int memory_write_dummy(void *,size_t,size_t,void *)
43 return 0;
46 static void delete_CURL(void *pData)
48 // Otherwise response for QUIT will be sent to already destroyed
49 // MemoryContainer via non-dummy memory_write function.
50 (void)curl_easy_setopt(static_cast<CURL*>(pData),
51 CURLOPT_HEADERFUNCTION,
52 memory_write_dummy);
53 curl_easy_cleanup(static_cast<CURL*>(pData));
58 /********************************************************************************/
59 /* */
60 /* Member part of FTPLoaderThread */
61 /* */
62 /********************************************************************************/
65 FTPLoaderThread::FTPLoaderThread()
66 : m_threadKey(osl_createThreadKey(delete_CURL)) {
70 FTPLoaderThread::~FTPLoaderThread() {
71 osl_destroyThreadKey(m_threadKey);
75 CURL* FTPLoaderThread::handle() {
76 CURL* ret = static_cast<CURL*>(osl_getThreadKeyData(m_threadKey));
77 if(!ret) {
78 ret = curl_easy_init();
79 if (ret != nullptr) {
80 ::InitCurl_easy(ret);
82 // Make sure curl is not internally using environment variables like
83 // "ftp_proxy":
84 if (curl_easy_setopt(ret, CURLOPT_PROXY, "") != CURLE_OK) {
85 curl_easy_cleanup(ret);
86 ret = nullptr;
89 osl_setThreadKeyData(m_threadKey, ret);
92 return ret;
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */