次のようなURLがあります。
http://192.168.0.1:8080/servlet/rece
URLを解析して値を取得したい:
IP: 192.168.0.1
Port: 8080
page: /servlet/rece
それ、どうやったら出来るの?
カスタムパーサーを作成するか、文字列置換関数の1つを使用して区切り文字「:」を置換してから、sscanf()
を使用します。
非常に基本的なURLを解析できるsscanfを使用して簡単なコードを記述しました。
#include <stdio.h>
int main(void)
{
const char text[] = "http://192.168.0.2:8888/servlet/rece";
char ip[100];
int port = 80;
char page[100];
sscanf(text, "http://%99[^:]:%99d/%99[^\n]", ip, &port, page);
printf("ip = \"%s\"\n", ip);
printf("port = \"%d\"\n", port);
printf("page = \"%s\"\n", page);
return 0;
}
./urlparse
ip = "192.168.0.2"
port = "8888"
page = "servlet/rece"
遅くなるかもしれません...私が使用したのは-http_parser_parse_url()
関数と必要なマクロを Joyent/HTTPパーサー libから分離したものです-うまくいきました~600
LOC。
簡単な方法が必要な場合は 正規表現 を使用します。それ以外の場合は、 [〜#〜] flex [〜#〜] / [〜#〜] bison [〜#〜] を使用します。
RI解析ライブラリ を使用することもできます
これはサイズが小さくなり、うまく機能しました http://draft.scyphus.co.jp/lang/c/url_parser.html 。 2つのファイル(* .c、*。h)。
コードを適応させる必要がありました[1]。
[1]すべての関数呼び出しをhttp_parsed_url_free(purl)からparsed_url_free(purl)に変更します
//Rename the function called
//http_parsed_url_free(purl);
parsed_url_free(purl);
Libcurlに、ホスト、パスなどを抽出できるcurl_url_get()
関数が追加されました。
コード例: https://curl.haxx.se/libcurl/c/parseurl.html
/* extract Host name from the parsed URL */
uc = curl_url_get(h, CURLUPART_Host, &Host, 0);
if(!uc) {
printf("Host name: %s\n", Host);
curl_free(Host);
}
これを書いた
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
typedef struct
{
const char* protocol = 0;
const char* site = 0;
const char* port = 0;
const char* path = 0;
} URL_INFO;
URL_INFO* split_url(URL_INFO* info, const char* url)
{
if (!info || !url)
return NULL;
info->protocol = strtok(strcpy((char*)malloc(strlen(url)+1), url), "://");
info->site = strstr(url, "://");
if (info->site)
{
info->site += 3;
char* site_port_path = strcpy((char*)calloc(1, strlen(info->site) + 1), info->site);
info->site = strtok(site_port_path, ":");
info->site = strtok(site_port_path, "/");
}
else
{
char* site_port_path = strcpy((char*)calloc(1, strlen(url) + 1), url);
info->site = strtok(site_port_path, ":");
info->site = strtok(site_port_path, "/");
}
char* URL = strcpy((char*)malloc(strlen(url) + 1), url);
info->port = strstr(URL + 6, ":");
char* port_path = 0;
char* port_path_copy = 0;
if (info->port && isdigit(*(port_path = (char*)info->port + 1)))
{
port_path_copy = strcpy((char*)malloc(strlen(port_path) + 1), port_path);
char * r = strtok(port_path, "/");
if (r)
info->port = r;
else
info->port = port_path;
}
else
info->port = "80";
if (port_path_copy)
info->path = port_path_copy + strlen(info->port ? info->port : "");
else
{
char* path = strstr(URL + 8, "/");
info->path = path ? path : "/";
}
int r = strcmp(info->protocol, info->site) == 0;
if (r && info->port == "80")
info->protocol = "http";
else if (r)
info->protocol = "tcp";
return info;
}
テスト
int main()
{
URL_INFO info;
split_url(&info, "ftp://192.168.0.1:8080/servlet/rece");
printf("Protocol: %s\nSite: %s\nPort: %s\nPath: %s\n", info.protocol, info.site, info.port, info.path);
return 0;
}
アウト
Protocol: ftp
Site: 192.168.0.1
Port: 8080
Path: /servlet/rece
このC Gistは役に立つかもしれません。 sscanfで純粋なCソリューションを実装します。
https://github.com/luismartingil/per.scripts/tree/master/c_parse_http_url
それは使用しています
// Parsing the tmp_source char*
if (sscanf(tmp_source, "http://%99[^:]:%i/%199[^\n]", ip, &port, page) == 3) { succ_parsing = 1;}
else if (sscanf(tmp_source, "http://%99[^/]/%199[^\n]", ip, page) == 2) { succ_parsing = 1;}
else if (sscanf(tmp_source, "http://%99[^:]:%i[^\n]", ip, &port) == 2) { succ_parsing = 1;}
else if (sscanf(tmp_source, "http://%99[^\n]", ip) == 1) { succ_parsing = 1;}
(...)