Added markdown docs

PUBLISHED_FROM=fc8c5c61acaeb9cec051160cd8de7c65102d0398
pull/29/head
Dmitry Frank 8 years ago committed by Dmitry Frank
parent fcc501baed
commit 9fe4447ff8
  1. 43
      docs/api/intro.md
  2. 5
      docs/api/items.json
  3. 26
      docs/examples/find-urls.md
  4. 4
      docs/examples/intro.md
  5. 7
      docs/examples/items.json
  6. 17
      docs/examples/parse-http-request.md
  7. 9
      docs/items.json
  8. 21
      docs/license/intro.md
  9. 5
      docs/license/items.json
  10. 20
      docs/overview/intro.md
  11. 5
      docs/overview/items.json
  12. 30
      docs/syntax/intro.md
  13. 5
      docs/syntax/items.json

@ -0,0 +1,43 @@
---
title: "API"
---
```c
int slre_match(const char *regexp, const char *buf, int buf_len,
struct slre_cap *caps, int num_caps, int flags);
```
`slre_match()` matches string buffer `buf` of length `buf_len` against regular
expression `regexp`, which should conform the syntax outlined above. If regular
expression `regexp` contains brackets, `slre_match()` can capture the
respective substrings into the array of `struct slre_cap` structures:
```c
/* Stores matched fragment for the expression inside brackets */
struct slre_cap {
const char *ptr; /* Points to the matched fragment */
int len; /* Length of the matched fragment */
};
```
N-th member of the `caps` array will contain fragment that corresponds to the
N-th opening bracket in the `regex`, N is zero-based. `slre_match()` returns
number of bytes scanned from the beginning of the string. If return value is
greater or equal to 0, there is a match. If return value is less then 0, there
is no match. Negative return codes are as follows:
```c
#define SLRE_NO_MATCH -1
#define SLRE_UNEXPECTED_QUANTIFIER -2
#define SLRE_UNBALANCED_BRACKETS -3
#define SLRE_INTERNAL_ERROR -4
#define SLRE_INVALID_CHARACTER_SET -5
#define SLRE_INVALID_METACHARACTER -6
#define SLRE_CAPS_ARRAY_TOO_SMALL -7
#define SLRE_TOO_MANY_BRANCHES -8
#define SLRE_TOO_MANY_BRACKETS -9
```
Valid flags are:
- `SLRE_IGNORE_CASE`: do case-insensitive match

@ -0,0 +1,5 @@
{
"items": [
{ "type": "markdown", "name": "intro.md" }
]
}

@ -0,0 +1,26 @@
---
title: "Find all URLs in a string"
---
```c
static const char *str =
"<img src=\"HTTPS://FOO.COM/x?b#c=tab1\"/> "
" <a href=\"http://cesanta.com\">some link</a>";
static const char *regex = "((https?://)[^\\s/'\"<>]+/?[^\\s'\"<>]*)";
struct slre_cap caps[2];
int i, j = 0, str_len = strlen(str);
while (j < str_len &&
(i = slre_match(regex, str + j, str_len - j, caps, 2, SLRE_IGNORE_CASE)) > 0) {
printf("Found URL: [%.*s]\n", caps[0].len, caps[0].ptr);
j += i;
}
```
Output:
```
Found URL: [HTTPS://FOO.COM/x?b#c=tab1]
Found URL: [http://cesanta.com]
```

@ -0,0 +1,4 @@
---
title: "Examples"
---

@ -0,0 +1,7 @@
{
"items": [
{ "type": "markdown", "name": "intro.md" },
{ "type": "markdown", "name": "parse-http-request.md" },
{ "type": "markdown", "name": "find-urls.md" }
]
}

@ -0,0 +1,17 @@
---
title: "Parsing HTTP request line"
---
```c
const char *request = " GET /index.html HTTP/1.0\r\n\r\n";
struct slre_cap caps[4];
if (slre_match("^\\s*(\\S+)\\s+(\\S+)\\s+HTTP/(\\d)\\.(\\d)",
request, strlen(request), caps, 4, 0) > 0) {
printf("Method: [%.*s], URI: [%.*s]\n",
caps[0].len, caps[0].ptr,
caps[1].len, caps[1].ptr);
} else {
printf("Error parsing [%s]\n", request);
}
```

@ -0,0 +1,9 @@
{
"items": [
{ "type": "section", "name": "overview" },
{ "type": "section", "name": "syntax" },
{ "type": "section", "name": "api" },
{ "type": "section", "name": "examples" },
{ "type": "section", "name": "license" }
]
}

@ -0,0 +1,21 @@
---
title: "License"
---
SLRE is released under commercial and [GNU GPL
v.2](http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) open source
licenses.
Commercial Projects: Once your project becomes commercialised GPLv2 licensing
dictates that you need to either open your source fully or purchase a
commercial license. Cesanta offer full, royalty-free commercial licenses
without any GPL restrictions. If your needs require a custom license, we’d be
happy to work on a solution with you. [Contact us for
pricing](https://www.cesanta.com/contact).
Prototyping: While your project is still in prototyping stage and not for sale,
you can use SLRE’s open source code without license restrictions.
[Super Light DNS Resolver](https://github.com/cesanta/sldr), [Mongoose web
server](https://github.com/cesanta/mongoose) are other projects by Cesanta
Software, developed with the same philosophy of functionality and simplicity.

@ -0,0 +1,5 @@
{
"items": [
{ "type": "markdown", "name": "intro.md" }
]
}

@ -0,0 +1,20 @@
---
title: "Overview"
---
SLRE is an ISO C library that implements a subset of Perl regular
expression syntax. Main features of SLRE are:
* Written in strict ANSI C'89
* Small size (compiled x86 code is about 5kB)
* Uses little stack and does no dynamic memory allocation
* Provides simple intuitive API
* Implements most useful subset of Perl regex syntax (see below)
* Easily extensible. E.g. if one wants to introduce a new metacharacter `\i`,
meaning "IPv4 address", it is easy to do so with SLRE.
SLRE is perfect for tasks like parsing network requests, configuration
files, user input, etc, when libraries like [PCRE](http://pcre.org) are too
heavyweight for the given task. Developers of embedded systems would benefit
most.

@ -0,0 +1,5 @@
{
"items": [
{ "type": "markdown", "name": "intro.md" }
]
}

@ -0,0 +1,30 @@
---
title: "Syntax"
---
```
^ Match beginning of a buffer
$ Match end of a buffer
() Grouping and substring capturing
\s Match whitespace
\S Match non-whitespace
\d Match decimal digit
\n Match new line character
\r Match line feed character
\f Match form feed character
\v Match vertical tab character
\t Match horizontal tab character
\b Match backspace character
+ Match one or more times (greedy)
+? Match one or more times (non-greedy)
* Match zero or more times (greedy)
*? Match zero or more times (non-greedy)
? Match zero or once (non-greedy)
x|y Match x or y (alternation operator)
\meta Match one of the meta character: ^$().[]*+?|\
\xHH Match byte with hex value 0xHH, e.g. \x4a
[...] Match any character from set. Ranges like [a-z] are supported
[^...] Match any character but ones from set
```
Under development: Unicode support.

@ -0,0 +1,5 @@
{
"items": [
{ "type": "markdown", "name": "intro.md" }
]
}
Loading…
Cancel
Save