Add HttpRouter API; still have to convert the code to use it.

This commit is contained in:
Jordan Bancino 2023-04-06 01:48:32 +00:00
parent 7c865d06fd
commit 1f8df737da
7 changed files with 419 additions and 9 deletions

View file

@ -44,8 +44,9 @@ Milestone: v0.3.0
[x] Pass TLS certs and keys into HttpServer [x] Pass TLS certs and keys into HttpServer
[x] Debug OpenSSL [x] Debug OpenSSL
[x] Replace all usages of curl with http [x] Replace all usages of curl with http
[ ] Proper HTTP request router [~] Proper HTTP request router
- Support regex matching [x] Support regex matching
[ ] Replace current routing system
[ ] Token permissions [ ] Token permissions
[ ] Move configuration to database [ ] Move configuration to database
@ -69,6 +70,9 @@ Milestone: v0.3.0
[ ] send-patch [ ] send-patch
[ ] Log [ ] Log
[ ] TelodendriaConfig -> Config [ ] TelodendriaConfig -> Config
[ ] HashMap
[ ] HttpRouter
[ ] Str
[~] Client-Server API [~] Client-Server API
[x] 4: Token-based user registration [x] 4: Token-based user registration

View file

@ -247,26 +247,26 @@ HashMapGet(HashMap * map, const char *key)
} }
int int
HashMapIterate(HashMap * map, char **key, void **value) HashMapIterateReentrant(HashMap * map, char **key, void **value, size_t * i)
{ {
if (!map) if (!map)
{ {
return 0; return 0;
} }
if (map->iterator >= map->capacity) if (*i >= map->capacity)
{ {
map->iterator = 0; *i = 0;
*key = NULL; *key = NULL;
*value = NULL; *value = NULL;
return 0; return 0;
} }
while (map->iterator < map->capacity) while (*i < map->capacity)
{ {
HashMapBucket *bucket = map->entries[map->iterator]; HashMapBucket *bucket = map->entries[*i];
map->iterator++; *i = *i + 1;
if (bucket && bucket->hash) if (bucket && bucket->hash)
{ {
@ -276,10 +276,23 @@ HashMapIterate(HashMap * map, char **key, void **value)
} }
} }
map->iterator = 0; *i = 0;
return 0; return 0;
} }
int
HashMapIterate(HashMap * map, char **key, void **value)
{
if (!map)
{
return 0;
}
else
{
return HashMapIterateReentrant(map, key, value, &map->iterator);
}
}
void void
HashMapMaxLoadSet(HashMap * map, float load) HashMapMaxLoadSet(HashMap * map, float load)
{ {

296
src/HttpRouter.c Normal file
View file

@ -0,0 +1,296 @@
/*
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <HttpRouter.h>
#include <Memory.h>
#include <HashMap.h>
#include <Str.h>
#include <regex.h>
#include <string.h>
#define REG_FLAGS (REG_EXTENDED)
#define REG_MAX_SUB 8
typedef struct RouteNode
{
HttpRouteFunc *exec;
HashMap *children;
regex_t regex;
} RouteNode;
struct HttpRouter
{
RouteNode *root;
};
static RouteNode *
RouteNodeCreate(char *regex, HttpRouteFunc * exec)
{
RouteNode *node;
if (!regex)
{
return NULL;
}
node = Malloc(sizeof(RouteNode));
if (!node)
{
return NULL;
}
node->children = HashMapCreate();
if (!node->children)
{
Free(node);
return NULL;
}
/* Force the regex to match the entire path part exactly. */
regex = StrConcat(3, "^", regex, "$");
if (!regex)
{
Free(node);
return NULL;
}
if (regcomp(&node->regex, regex, REG_FLAGS) != 0)
{
HashMapFree(node->children);
Free(node);
Free(regex);
return NULL;
}
node->exec = exec;
Free(regex);
return node;
}
static void
RouteNodeFree(RouteNode * node)
{
char *key;
RouteNode *val;
if (!node)
{
return;
}
while (HashMapIterate(node->children, &key, (void **) &val))
{
RouteNodeFree(val);
}
HashMapFree(node->children);
regfree(&node->regex);
Free(node);
}
HttpRouter *
HttpRouterCreate(void)
{
HttpRouter *router = Malloc(sizeof(HttpRouter));
if (!router)
{
return NULL;
}
router->root = RouteNodeCreate("/", NULL);
return router;
}
void
HttpRouterFree(HttpRouter * router)
{
if (!router)
{
return;
}
RouteNodeFree(router->root);
Free(router);
}
int
HttpRouterAdd(HttpRouter * router, char *regPath, HttpRouteFunc * exec)
{
RouteNode *node;
char *pathPart;
char *tmp;
if (!router || !regPath || !exec)
{
return 0;
}
if (strcmp(regPath, "/") == 0)
{
router->root->exec = exec;
return 1;
}
regPath = StrDuplicate(regPath);
if (!regPath)
{
return 0;
}
tmp = regPath;
node = router->root;
while ((pathPart = strtok_r(tmp, "/", &tmp)))
{
RouteNode *tNode = HashMapGet(node->children, pathPart);
if (!tNode)
{
tNode = RouteNodeCreate(pathPart, NULL);
RouteNodeFree(HashMapSet(node->children, pathPart, tNode));
}
node = tNode;
}
node->exec = exec;
Free(regPath);
return 1;
}
int
HttpRouterRoute(HttpRouter * router, char *path, void *args, void **ret)
{
RouteNode *node;
char *pathPart;
char *tmp;
HttpRouteFunc *exec;
Array *matches;
size_t i;
int retval;
if (!router || !path)
{
return 0;
}
matches = ArrayCreate();
if (!matches)
{
return 0;
}
node = router->root;
if (strcmp(path, "/") == 0)
{
exec = node->exec;
}
else
{
path = StrDuplicate(path);
tmp = path;
while ((pathPart = strtok_r(tmp, "/", &tmp)))
{
char *key;
RouteNode *val = NULL;
regmatch_t pmatch[REG_MAX_SUB];
i = 0;
while (HashMapIterateReentrant(node->children, &key, (void **) &val, &i))
{
if (regexec(&val->regex, pathPart, REG_MAX_SUB, pmatch, 0) == 0)
{
break;
}
val = NULL;
}
if (!val)
{
exec = NULL;
break;
}
node = val;
exec = node->exec;
/* If we want to pass an arg, the match must be in parens */
if (val->regex.re_nsub)
{
/* pmatch[0] is the whole string, not the first
* subexpression */
for (i = 1; i < REG_MAX_SUB; i++)
{
if (pmatch[i].rm_so == -1)
{
break;
}
ArrayAdd(matches, StrSubstr(pathPart, pmatch[i].rm_so, pmatch[i].rm_eo));
}
}
}
Free(path);
}
if (!exec)
{
retval = 0;
goto finish;
}
if (ret)
{
*ret = exec(matches, args);
}
else
{
exec(matches, args);
}
retval = 1;
finish:
for (i = 0; i < ArraySize(matches); i++)
{
Free(ArrayGet(matches, i));
}
ArrayFree(matches);
return retval;
}

View file

@ -100,6 +100,50 @@ StrDuplicate(const char *inStr)
return outStr; return outStr;
} }
char *
StrSubstr(const char *inStr, size_t start, size_t end)
{
size_t len;
size_t i;
size_t j;
char *outStr;
if (!inStr)
{
return NULL;
}
if (start >= end)
{
return NULL;
}
len = end - start;
outStr = Malloc(len + 1);
if (!outStr)
{
return NULL;
}
j = 0;
for (i = start; i < end; i++)
{
if (inStr[i] == '\0')
{
break;
}
outStr[j] = inStr[i];
j++;
}
outStr[j] = '\0';
return outStr;
}
char * char *
StrConcat(size_t nStr,...) StrConcat(size_t nStr,...)
{ {

View file

@ -25,6 +25,8 @@
#ifndef TELODENDRIA_HASHMAP_H #ifndef TELODENDRIA_HASHMAP_H
#define TELODENDRIA_HASHMAP_H #define TELODENDRIA_HASHMAP_H
#include <stddef.h>
typedef struct HashMap HashMap; typedef struct HashMap HashMap;
extern HashMap * extern HashMap *
@ -48,6 +50,9 @@ extern void *
extern int extern int
HashMapIterate(HashMap *, char **, void **); HashMapIterate(HashMap *, char **, void **);
extern int
HashMapIterateReentrant(HashMap *, char **, void **, size_t *);
extern void extern void
HashMapFree(HashMap *); HashMapFree(HashMap *);

45
src/include/HttpRouter.h Normal file
View file

@ -0,0 +1,45 @@
/*
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef TELODENDRIA_HTTPROUTER_H
#define TELODENDRIA_HTTPROUTER_H
#include <Array.h>
typedef struct HttpRouter HttpRouter;
typedef void *(HttpRouteFunc) (Array *, void *);
extern HttpRouter *
HttpRouterCreate(void);
extern void
HttpRouterFree(HttpRouter *);
extern int
HttpRouterAdd(HttpRouter *, char *, HttpRouteFunc *);
extern int
HttpRouterRoute(HttpRouter *, char *, void *, void **);
#endif /* TELODENDRIA_HTTPROUTER_H */

View file

@ -32,6 +32,9 @@ extern char *
extern char * extern char *
StrDuplicate(const char *); StrDuplicate(const char *);
extern char *
StrSubstr(const char *, size_t, size_t);
extern char * extern char *
StrConcat(size_t,...); StrConcat(size_t,...);