221 lines
5.3 KiB
C
221 lines
5.3 KiB
C
/*
|
|
* r3.h
|
|
* Copyright (C) 2014 c9s <yoanlin93@gmail.com>
|
|
*
|
|
* Distributed under terms of the MIT license.
|
|
*/
|
|
#ifndef R3_NODE_H
|
|
#define R3_NODE_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <pcre.h>
|
|
#include <stdbool.h>
|
|
#include "r3_define.h"
|
|
#include "str_array.h"
|
|
#include "r3_str.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct _edge;
|
|
struct _node;
|
|
struct _route;
|
|
typedef struct _edge edge;
|
|
typedef struct _node node;
|
|
typedef struct _route route;
|
|
|
|
struct _node {
|
|
edge * edges;
|
|
char * combined_pattern;
|
|
pcre * pcre_pattern;
|
|
pcre_extra * pcre_extra;
|
|
|
|
// edges are mostly less than 255
|
|
unsigned int compare_type; // compare_type: pcre, opcode, string
|
|
unsigned int edge_len;
|
|
unsigned int endpoint; // endpoint, should be zero for non-endpoint nodes
|
|
unsigned int ov_cnt; // capture vector array size for pcre
|
|
|
|
|
|
route ** routes;
|
|
// the pointer of route data
|
|
void * data;
|
|
|
|
// almost less than 255
|
|
unsigned char edge_cap;
|
|
unsigned char route_len;
|
|
unsigned char route_cap;
|
|
} __attribute__((aligned(64)));
|
|
|
|
#define r3_node_edge_pattern(node,i) node->edges[i]->pattern
|
|
#define r3_node_edge_pattern_len(node,i) node->edges[i]->pattern_len
|
|
|
|
struct _edge {
|
|
char * pattern; // 8 bytes
|
|
node * child; // 8 bytes
|
|
unsigned int pattern_len; // 4byte
|
|
unsigned int opcode; // 4byte
|
|
unsigned int has_slug; // 4byte
|
|
} __attribute__((aligned(64)));
|
|
|
|
struct _route {
|
|
char * path;
|
|
int path_len;
|
|
|
|
int request_method; // can be (GET || POST)
|
|
|
|
char * host; // required host name
|
|
int host_len;
|
|
|
|
void * data;
|
|
|
|
char * remote_addr_pattern;
|
|
int remote_addr_pattern_len;
|
|
} __attribute__((aligned(64)));
|
|
|
|
typedef struct {
|
|
str_array * vars;
|
|
const char * path; // current path to dispatch
|
|
int path_len; // the length of the current path
|
|
int request_method; // current request method
|
|
|
|
void * data; // route ptr
|
|
|
|
char * host; // the request host
|
|
int host_len;
|
|
|
|
char * remote_addr;
|
|
int remote_addr_len;
|
|
} match_entry;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
node * r3_tree_create(int cap);
|
|
|
|
node * r3_node_create();
|
|
|
|
void r3_tree_free(node * tree);
|
|
|
|
edge * r3_node_connectl(node * n, const char * pat, int len, int strdup, node *child);
|
|
|
|
#define r3_node_connect(n, pat, child) r3_node_connectl(n, pat, strlen(pat), 0, child)
|
|
|
|
edge * r3_node_find_edge(const node * n, const char * pat, int pat_len);
|
|
|
|
edge * r3_node_append_edge(node *n, edge *child);
|
|
|
|
|
|
edge * r3_node_find_common_prefix(node *n, const char *path, int path_len, int *prefix_len, char **errstr);
|
|
|
|
node * r3_tree_insert_pathl(node *tree, const char *path, int path_len, void * data);
|
|
|
|
#define r3_tree_insert_pathl(tree, path, path_len, data) r3_tree_insert_pathl_ex(tree, path, path_len, NULL , data, NULL)
|
|
|
|
|
|
|
|
route * r3_tree_insert_routel(node *tree, int method, const char *path, int path_len, void *data);
|
|
|
|
route * r3_tree_insert_routel_ex(node *tree, int method, const char *path, int path_len, void *data, char **errstr);
|
|
|
|
#define r3_tree_insert_routel(n, method, path, path_len, data) r3_tree_insert_routel_ex(n, method, path, path_len, data, NULL)
|
|
|
|
#define r3_tree_insert_path(n,p,d) r3_tree_insert_pathl_ex(n,p,strlen(p), NULL, d, NULL)
|
|
|
|
#define r3_tree_insert_route(n,method,path,data) r3_tree_insert_routel(n, method, path, strlen(path), data)
|
|
|
|
|
|
/**
|
|
* The private API to insert a path
|
|
*/
|
|
node * r3_tree_insert_pathl_ex(node *tree, const char *path, int path_len, route * route, void * data, char ** errstr);
|
|
|
|
void r3_tree_dump(const node * n, int level);
|
|
|
|
|
|
edge * r3_node_find_edge_str(const node * n, const char * str, int str_len);
|
|
|
|
|
|
int r3_tree_compile(node *n, char** errstr);
|
|
|
|
int r3_tree_compile_patterns(node * n, char** errstr);
|
|
|
|
node * r3_tree_matchl(const node * n, const char * path, int path_len, match_entry * entry);
|
|
|
|
#define r3_tree_match(n,p,e) r3_tree_matchl(n,p, strlen(p), e)
|
|
|
|
// node * r3_tree_match_entry(node * n, match_entry * entry);
|
|
#define r3_tree_match_entry(n, entry) r3_tree_matchl(n, entry->path, entry->path_len, entry)
|
|
|
|
bool r3_node_has_slug_edges(const node *n);
|
|
|
|
edge * r3_edge_createl(const char * pattern, int pattern_len, node * child);
|
|
|
|
void r3_edge_initl(edge *e, const char * pattern, int pattern_len, node * child);
|
|
|
|
node * r3_edge_branch(edge *e, int dl);
|
|
|
|
void r3_edge_free(edge * edge);
|
|
|
|
|
|
|
|
|
|
|
|
route * r3_route_create(const char * path);
|
|
|
|
route * r3_route_createl(const char * path, int path_len);
|
|
|
|
|
|
void r3_node_append_route(node * n, route * route);
|
|
|
|
void r3_route_free(route * route);
|
|
|
|
int r3_route_cmp(const route *r1, const match_entry *r2);
|
|
|
|
route * r3_tree_match_route(const node *n, match_entry * entry);
|
|
|
|
#define r3_route_create(p) r3_route_createl(p, strlen(p))
|
|
|
|
|
|
#define METHOD_GET 2
|
|
#define METHOD_POST 2<<1
|
|
#define METHOD_PUT 2<<2
|
|
#define METHOD_DELETE 2<<3
|
|
#define METHOD_PATCH 2<<4
|
|
#define METHOD_HEAD 2<<5
|
|
#define METHOD_OPTIONS 2<<6
|
|
|
|
|
|
|
|
int r3_pattern_to_opcode(const char * pattern, int pattern_len);
|
|
|
|
enum { NODE_COMPARE_STR, NODE_COMPARE_PCRE, NODE_COMPARE_OPCODE };
|
|
|
|
enum { OP_EXPECT_MORE_DIGITS = 1, OP_EXPECT_MORE_WORDS, OP_EXPECT_NOSLASH, OP_EXPECT_NODASH, OP_EXPECT_MORE_ALPHA };
|
|
|
|
|
|
|
|
match_entry * match_entry_createl(const char * path, int path_len);
|
|
|
|
#define match_entry_create(path) match_entry_createl(path,strlen(path))
|
|
|
|
void match_entry_free(match_entry * entry);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* !R3_NODE_H */
|