|
|
@ -1,4 +1,6 @@
|
|
|
|
#include <iostream>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <vector>
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#include "text.h"
|
|
|
|
#include "text.h"
|
|
|
@ -47,14 +49,22 @@ input_data(istream& inn,bool prompt) {
|
|
|
|
return in;
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
size_t
|
|
|
|
{
|
|
|
|
write_data(void* items, size_t item_size, size_t item_count, void* ctx) {
|
|
|
|
if(argc>1)
|
|
|
|
size_t data_size = item_size * item_count;
|
|
|
|
{
|
|
|
|
stringstream* buffer = reinterpret_cast<stringstream*>(ctx);
|
|
|
|
|
|
|
|
buffer->write(reinterpret_cast<const char*>(items), data_size);
|
|
|
|
|
|
|
|
return data_size;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Input
|
|
|
|
|
|
|
|
download(const string& address) {
|
|
|
|
|
|
|
|
stringstream buffer;
|
|
|
|
CURL* curl = curl_easy_init();
|
|
|
|
CURL* curl = curl_easy_init();
|
|
|
|
if(curl) {
|
|
|
|
if(curl) {
|
|
|
|
CURLcode res;
|
|
|
|
CURLcode res;
|
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
|
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, address.c_str());
|
|
|
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
|
|
|
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer);
|
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
if (res!=0){
|
|
|
|
if (res!=0){
|
|
|
@ -62,10 +72,20 @@ int main(int argc, char* argv[])
|
|
|
|
exit(1);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
|
|
|
|
return input_data(buffer, false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Input in;
|
|
|
|
|
|
|
|
if(argc>1)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
in = download(argv[1]);
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
in = input_data(cin, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
curl_global_init(CURL_GLOBAL_ALL);
|
|
|
|
auto in = input_data(cin,true);
|
|
|
|
//auto in = input_data(cin,true);
|
|
|
|
|
|
|
|
|
|
|
|
auto bins = make_histogram(in.numbers, in.bin_count);
|
|
|
|
auto bins = make_histogram(in.numbers, in.bin_count);
|
|
|
|
auto max_count=bins[0];
|
|
|
|
auto max_count=bins[0];
|
|
|
@ -75,7 +95,7 @@ int main(int argc, char* argv[])
|
|
|
|
max_count=x;
|
|
|
|
max_count=x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
show_histogram_text(bins,in.bin_count,in.numbers,max_count);
|
|
|
|
//show_histogram_text(bins,in.bin_count,in.numbers,max_count);
|
|
|
|
//show_histogram_svg(bins, max_count);
|
|
|
|
show_histogram_svg(bins, max_count);
|
|
|
|
return 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|