mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-23 04:03:10 +00:00
83 lines
No EOL
2.5 KiB
C++
Executable file
83 lines
No EOL
2.5 KiB
C++
Executable file
/*
|
|
Copyright (c) 2017-2018 Adubbz
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <switch/types.h>
|
|
#include <sys/socket.h>
|
|
#include <arpa/inet.h>
|
|
#include <sys/errno.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
|
|
#include <functional>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
namespace tin::network
|
|
{
|
|
class HTTPHeader
|
|
{
|
|
private:
|
|
std::string m_url;
|
|
std::map<std::string, std::string> m_values;
|
|
|
|
static size_t ParseHTMLHeader(char* bytes, size_t size, size_t numItems, void* userData);
|
|
|
|
public:
|
|
HTTPHeader(std::string url);
|
|
|
|
void PerformRequest();
|
|
|
|
bool HasValue(std::string key);
|
|
std::string GetValue(std::string key);
|
|
};
|
|
|
|
class HTTPDownload
|
|
{
|
|
private:
|
|
std::string m_url;
|
|
HTTPHeader m_header;
|
|
bool m_rangesSupported = false;
|
|
|
|
static size_t ParseHTMLData(char* bytes, size_t size, size_t numItems, void* userData);
|
|
|
|
public:
|
|
HTTPDownload(std::string url);
|
|
|
|
void BufferDataRange(void* buffer, size_t offset, size_t size, std::function<void (size_t sizeRead)> progressFunc);
|
|
void StreamDataRange(size_t offset, size_t size, std::function<size_t (u8* bytes, size_t size)> streamFunc);
|
|
};
|
|
|
|
size_t WaitReceiveNetworkData(int sockfd, void* buf, size_t len);
|
|
size_t WaitSendNetworkData(int sockfd, void* buf, size_t len);
|
|
} |