r3/src/str.c

219 lines
3.9 KiB
C
Raw Normal View History

2014-05-14 22:08:42 -04:00
/*
* str.c
* Copyright (C) 2014 c9s <c9s@c9smba.local>
*
* Distributed under terms of the MIT license.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
2014-05-20 11:54:57 -04:00
#include "r3.h"
2014-05-16 08:22:25 -04:00
#include "r3_str.h"
#include "str_array.h"
2014-05-14 22:08:42 -04:00
2014-05-15 12:00:19 -04:00
/**
* provide a quick way to count slugs, simply search for '{'
*/
2014-05-20 11:21:15 -04:00
int slug_count(char * p, int len) {
2014-05-15 12:00:19 -04:00
int s = 0;
int lev = 0;
2014-05-15 12:00:19 -04:00
while( len-- ) {
if ( lev == 0 && *p == '{' )
2014-05-15 12:00:19 -04:00
s++;
if ( *p == '{' ) {
lev++;
}
if ( *p == '}' ) {
lev--;
}
2014-05-15 12:00:19 -04:00
p++;
}
return s;
}
2014-05-15 10:57:13 -04:00
2014-05-16 00:33:59 -04:00
bool contains_slug(char * str) {
return strchr(str, '{') != NULL ? TRUE : FALSE;
}
char * inside_slug(char * needle, int needle_len, char *offset) {
char * s1 = offset;
char * s2 = offset;
while( s1 >= needle ) {
if ( *s1 == '{' ) {
break;
}
s1--;
}
char *end = needle+ needle_len;
while( s2 < end ) {
if ( *s2 == '}' ) {
break;
}
s2++;
}
if ( *s1 == '{' && *s2 == '}' ) {
return s1;
}
return NULL;
}
char * find_slug_placeholder(char *s1, int *len) {
char *c;
char *s2;
int cnt = 0;
if ( NULL != (c = strchr(s1, '{')) ) {
// find closing '}'
s2 = c;
while(*s2) {
if (*s2 == '{' )
cnt++;
else if (*s2 == '}' )
cnt--;
if (cnt == 0)
break;
s2++;
}
} else {
return NULL;
}
if (cnt!=0) {
return NULL;
}
if(len) {
*len = s2 - c + 1;
}
return c;
}
/**
* given a slug string, duplicate the pattern string of the slug
*/
char * find_slug_pattern(char *s1, int *len) {
char *c;
char *s2;
int cnt = 1;
if ( NULL != (c = strchr(s1, ':')) ) {
c++;
// find closing '}'
s2 = c;
while(s2) {
if (*s2 == '{' )
cnt++;
else if (*s2 == '}' )
cnt--;
if (cnt == 0)
break;
s2++;
}
} else {
return NULL;
}
*len = s2 - c;
return c;
}
2014-05-15 08:38:07 -04:00
/**
* @param char * sep separator
*/
2014-05-20 11:25:55 -04:00
char * slug_compile(char * str, int len)
2014-05-15 08:38:07 -04:00
{
char *s1 = NULL, *o = NULL;
char *pat = NULL;
char sep = '/';
// append prefix
int s1_len;
s1 = find_slug_placeholder(str, &s1_len);
if ( s1 == NULL ) {
return strdup(str);
}
char * out = NULL;
if ((out = calloc(sizeof(char),200)) == NULL) {
return (NULL);
}
o = out;
strncat(o, str, s1 - str); // string before slug
o += (s1 - str);
2014-05-15 08:38:07 -04:00
int pat_len;
pat = find_slug_pattern(s1, &pat_len);
if (pat) {
*o = '(';
o++;
strncat(o, pat, pat_len );
o += pat_len;
*o = ')';
o++;
2014-05-15 08:38:07 -04:00
} else {
sprintf(o, "([^%c]+)", sep);
o+= strlen("([^*]+)");
2014-05-15 08:38:07 -04:00
}
s1 += s1_len;
strncat(o, s1, strlen(s1));
return out;
2014-05-15 08:38:07 -04:00
}
2014-05-14 22:08:42 -04:00
2014-05-15 00:53:48 -04:00
char * ltrim_slash(char* str)
{
char * p = str;
while (*p == '/') p++;
return strdup(p);
2014-05-15 00:53:48 -04:00
}
2014-05-15 06:02:10 -04:00
void str_repeat(char *s, char *c, int len) {
while(len--) {
s[len - 1] = *c;
}
}
void print_indent(int level) {
int len = level * 2;
while(len--) {
printf(" ");
}
}
2014-05-16 12:35:56 -04:00
#ifndef HAVE_STRDUP
char *strdup(const char *s) {
2014-05-16 12:35:56 -04:00
char *out;
2014-05-16 15:17:51 -04:00
int count = 0;
2014-05-16 12:35:56 -04:00
while( s[count] )
++count;
++count;
2014-05-17 01:01:33 -04:00
out = malloc(sizeof(char) * count);
2014-05-16 12:35:56 -04:00
out[--count] = 0;
while( --count >= 0 )
out[count] = s[count];
return out;
}
#endif
2014-05-16 12:35:56 -04:00
#ifndef HAVE_STRNDUP
char *strndup(const char *s, int n) {
2014-05-16 12:35:56 -04:00
char *out;
2014-05-16 15:17:51 -04:00
int count = 0;
2014-05-16 12:35:56 -04:00
while( count < n && s[count] )
++count;
++count;
2014-05-17 01:01:33 -04:00
out = malloc(sizeof(char) * count);
2014-05-16 12:35:56 -04:00
out[--count] = 0;
while( --count >= 0 )
out[count] = s[count];
return out;
}
#endif