Родитель
5305dd64a5
Сommit
ad384e7bf8
Двоичный файл не отображается.
@ -1,27 +1,61 @@
|
|||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
|
#include <sstream>
|
||||||
|
#include <string>
|
||||||
#include "histogram.h"
|
#include "histogram.h"
|
||||||
#include "text.h"
|
#include "text.h"
|
||||||
#include "svg.h"
|
#include "svg.h"
|
||||||
|
|
||||||
|
|
||||||
struct Input {
|
struct Input {
|
||||||
vector<double> vec;
|
vector<double> vec;
|
||||||
size_t korz{};
|
size_t korz{};
|
||||||
};
|
};
|
||||||
Input input_data() {
|
Input input_data(istream& in, bool promt = false) {
|
||||||
Input in;
|
Input lin;
|
||||||
size_t n, korz;
|
size_t n, korz;
|
||||||
|
if(promt)
|
||||||
cerr << "Number of elem ";
|
cerr << "Number of elem ";
|
||||||
cin >> n;
|
in >> n;
|
||||||
in.vec.resize(n);
|
lin.vec.resize(n);
|
||||||
for (size_t i = 0; i < n; i++)
|
for (size_t i = 0; i < n; i++)
|
||||||
cin >> in.vec[i];
|
in >> lin.vec[i];
|
||||||
|
if(promt)
|
||||||
cerr << "Enter bin count: ";
|
cerr << "Enter bin count: ";
|
||||||
cin >> in.korz;
|
in >> lin.korz;
|
||||||
return in;
|
return lin;
|
||||||
}
|
}
|
||||||
int main() {
|
size_t write_data(void* items, size_t item_size, size_t item_count, void* ctx){
|
||||||
|
stringstream* buffer = reinterpret_cast<stringstream*>(ctx);
|
||||||
|
size_t data_size = item_size * item_count;
|
||||||
|
buffer->write(reinterpret_cast<const char*>(items), data_size);
|
||||||
|
return data_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
Input download(const string& address){
|
||||||
|
stringstream buffer;
|
||||||
|
CURL* curl = curl_easy_init();
|
||||||
|
if (curl) {
|
||||||
|
curl_easy_setopt(curl, CURLOPT_URL, address.c_str());
|
||||||
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
|
||||||
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer);
|
||||||
|
CURLcode res = curl_easy_perform(curl);
|
||||||
|
curl_easy_cleanup(curl);
|
||||||
|
if (res != CURLE_OK) {
|
||||||
|
cerr << "cURL error: " << curl_easy_strerror(res) << endl;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
return input_data(buffer, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int main(int argc, char* argv[]) {
|
||||||
curl_global_init(CURL_GLOBAL_ALL);
|
curl_global_init(CURL_GLOBAL_ALL);
|
||||||
auto in = input_data();
|
Input input;
|
||||||
auto bins = make_histogram(in.korz, in.vec);
|
if (argc > 1) {
|
||||||
|
input = download(argv[1]);
|
||||||
|
}else{
|
||||||
|
input = input_data(cin, true);
|
||||||
|
}
|
||||||
|
auto bins = make_histogram(input.korz, input.vec);
|
||||||
show_histogram_svg(bins);
|
show_histogram_svg(bins);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
Двоичный файл не отображается.
Загрузка…
Ссылка в новой задаче