Stroustrupは最近、C ++に関する人気の神話を暴く一連の投稿を投稿しました。5番目の神話は、「C ++は大規模で複雑なプログラム専用です」です。それを暴くために、彼はWebページをダウンロードし、そこからリンクを抽出する簡単なC ++プログラムを書きました。ここにあります:
#include <string>
#include <set>
#include <iostream>
#include <sstream>
#include <regex>
#include <boost/asio.hpp>
using namespace std;
set<string> get_strings(istream& is, regex pat)
{
set<string> res;
smatch m;
for (string s; getline(is, s);) // read a line
if (regex_search(s, m, pat))
res.insert(m[0]); // save match in set
return res;
}
void connect_to_file(iostream& s, const string& server, const string& file)
// open a connection to server and open an attach file to s
// skip headers
{
if (!s)
throw runtime_error{ "can't connect\n" };
// Request to read the file from the server:
s << "GET " << "http://" + server + "/" + file << " HTTP/1.0\r\n";
s << "Host: " << server << "\r\n";
s << "Accept: */*\r\n";
s << "Connection: close\r\n\r\n";
// Check that the response is OK:
string http_version;
unsigned int status_code;
s >> http_version >> status_code;
string status_message;
getline(s, status_message);
if (!s || http_version.substr(0, 5) != "HTTP/")
throw runtime_error{ "Invalid response\n" };
if (status_code != 200)
throw runtime_error{ "Response returned with status code" };
// Discard the response headers, which are terminated by a blank line:
string header;
while (getline(s, header) && header != "\r")
;
}
int main()
{
try {
string server = "www.stroustrup.com";
boost::asio::ip::tcp::iostream s{ server, "http" }; // make a connection
connect_to_file(s, server, "C++.html"); // check and open file
regex pat{ R"((http://)?www([./#\+-]\w*)+)" }; // URL
for (auto x : get_strings(s, pat)) // look for URLs
cout << x << '\n';
}
catch (std::exception& e) {
std::cout << "Exception: " << e.what() << "\n";
return 1;
}
}
Stroustrupに、小さくて読みやすいプログラムが実際に何であるかを示しましょう。
- ダウンロード
http://www.stroustrup.com/C++.html
すべてのリンクをリスト:
http://www-h.eng.cam.ac.uk/help/tpl/languages/C++.html http://www.accu.org http://www.artima.co/cppsource http://www.boost.org ...
任意の言語を使用できますが、サードパーティのライブラリは許可されていません。
勝者
C ++の回答は投票で勝ちましたが、セミサードパーティのライブラリ(ルールで禁止されています)に依存しており、別の近い競合Bashと一緒に、ハッキングされたHTTPクライアントに依存しています(HTTPSでは動作しません) gzip、リダイレクトなど)。したがって、Wolframは明確な勝者です。サイズと読みやすさの点で近づいているもう1つのソリューションは、PowerShell(コメントを改善したもの)ですが、あまり注目されていません。主流の言語(Python、C#)も非常に近くなりました。
Content-Type: text/html; charset=UTF-8
...私は彼に電子メールを送るつもりです。
boost/asio
それがサードパーティのライブラリであると考えられていることを考えると、公正な要件だとは思わない。標準ライブラリの一部としてurl / tcpフェッチを含まない言語はどのように競合するのでしょうか?