2020-09-20 01:21:28 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <regex>
|
|
|
|
#include <iostream>
|
|
|
|
#include <set>
|
|
|
|
#include "download.hpp"
|
|
|
|
#include "extract.hpp"
|
|
|
|
#include "constants.hpp"
|
|
|
|
#include "progress_event.hpp"
|
2020-09-20 21:58:40 +01:00
|
|
|
#include "json.hpp"
|
2020-09-20 01:21:28 +01:00
|
|
|
|
|
|
|
CFW getCFW();
|
|
|
|
bool isServiceRunning(const char *serviceName);
|
|
|
|
std::vector<std::string> htmlProcess(std::string s, std::regex rgx);
|
|
|
|
void createTree(std::string path);
|
|
|
|
void clearConsole();
|
|
|
|
bool isArchive(const char * path);
|
|
|
|
void downloadArchive(std::string url, archiveType type);
|
|
|
|
void extractArchive(archiveType type);
|
|
|
|
void progressTest(std::string url, archiveType type);
|
|
|
|
std::string formatListItemTitle(const std::string str, size_t maxScore = 140);
|
|
|
|
std::string formatApplicationId(u64 ApplicationId);
|
|
|
|
std::set<std::string> readLineByLine(const char * path);
|
|
|
|
std::vector<std::string> fetchPayloads();
|
2020-09-20 21:58:40 +01:00
|
|
|
void shut_down(bool reboot = false);
|
|
|
|
std::string getLatestTag(const char *url);
|