1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef OHOS_ACELITE_HTTP_REQUEST_H 17 #define OHOS_ACELITE_HTTP_REQUEST_H 18 19 #include <mutex> 20 #include <vector> 21 22 #include "curl/curl.h" 23 #include "non_copyable.h" 24 #include "request_data.h" 25 #include "response_data.h" 26 27 namespace OHOS { 28 namespace ACELite { 29 30 class HttpRequest final { 31 public: 32 ACE_DISALLOW_COPY_AND_MOVE(HttpRequest); 33 34 HttpRequest() = default; 35 36 ~HttpRequest() = default; 37 38 static bool Request(RequestData *requestData, ResponseData *responseData); 39 40 private: 41 static bool Initialize(); 42 43 static bool SetOption(RequestData *requestData, CURL *curl, ResponseData *responseData); 44 45 static size_t OnWritingMemoryBody(const void *data, size_t size, size_t memBytes, void *userData); 46 47 static size_t OnWritingMemoryHeader(const void *data, size_t size, size_t memBytes, void *userData); 48 49 static struct curl_slist *MakeHeaders(const std::vector<std::string> &vec); 50 51 private: 52 static std::mutex mutex; 53 54 static bool initialized; 55 }; 56 57 } // namespace ACELite 58 } // namespace OHOS 59 60 #endif /* OHOS_ACELITE_HTTP_REQUEST_H */ 61