Skip to content

URI parsing implementation in C.

License

Notifications You must be signed in to change notification settings

whiler/uriparse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

uriparse

Build Status Coverage Status C/C++ CI

URI parsing implementation in C. parse URI fields like urlparse.urlparse in Python.

usage

#include <assert.h>
#include <string.h>
#include "uriparse.h"

int main(int argc, const char *argv[]) {
	struct uri uri = {0};
	int rc = 0;

	rc = uriparse("mysql://root:e4D8F6z3f2b1@localhost:3306/account?charset=utf8mb4#debug", &uri);

	assert(0 == rc);
	assert(0 == strcmp("mysql", uri.scheme));
	assert(0 == strcmp("root", uri.user));
	assert(0 == strcmp("e4D8F6z3f2b1", uri.passwd));
	assert(0 == strcmp("localhost", uri.host));
	assert(0 == strcmp("3306", uri.port));
	assert(0 == strcmp("/account", uri.path));
	assert(0 == strcmp("charset=utf8mb4", uri.query));
	assert(0 == strcmp("debug", uri.fragment));

	return 0;
}

command

usage uriparse -f fields [-d delimiter] url [url ...]
      uriparse -h

available fields:
    s = scheme
    u = user
    w = password
    h = host
    p = port
    t = path
    q = query
    f = fragment

syntax

scheme:[//[user[:password]@]host[:port]][/path][?query][#fragment]

tests

see test.c .

license

This project is licensed under the MIT License.

About

URI parsing implementation in C.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages