r3/src/str.c

170 lines
3 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>
#include "str.h"
2014-05-15 00:47:14 -04:00
#include "token.h"
2014-05-14 22:08:42 -04:00
2014-05-15 10:57:13 -04:00
int strndiff(char * d1, char * d2, unsigned int n) {
char * o = d1;
while ( *d1 == *d2 && n-- > 0 ) {
d1++;
d2++;
}
return d1 - o;
}
int strdiff(char * d1, char * d2) {
char * o = d1;
while( *d1 == *d2 ) {
d1++;
d2++;
}
return d1 - o;
}
char * contains_slug(char * str) {
return strchr(str, '}');
}
2014-05-15 08:38:07 -04:00
/**
* @param char * sep separator
*/
char * compile_slug(char * str, int len)
2014-05-15 08:38:07 -04:00
{
char *s1 = NULL, *s2 = NULL, *i = NULL, *o = NULL;
char *pat = NULL;
char sep = '/';
// find '{'
s1 = strchr(str, '{');
if ( s1 == NULL ) {
return strdup(str);
}
if ( (s1 - str) > 0 ) {
sep = *(s1-1);
}
char * out = NULL;
if ((out = calloc(sizeof(char),128)) == NULL) {
return (NULL);
}
// append prefix
o = out;
strncat(o, str, s1 - str);
o += (s1 - str);
// start after ':'
if ( NULL != (pat = strchr(s1, ':')) ) {
pat++;
2014-05-15 08:38:07 -04:00
// this slug contains a pattern
s2 = strchr(pat, '}');
*o = '(';
o++;
strncat(o, pat, (s2 - pat) );
o += (s2 - pat);
*o = ')';
o++;
2014-05-15 08:38:07 -04:00
} else {
// should return a '[^/]+' pattern
// strncat(c, "([^%c]+)", strlen("([^%c]+)") );
// snprintf(pat, 128, "([^%c]+)", sep);
sprintf(o, "([^%c]+)", sep);
o+= sizeof("([^%c]+)");
}
s2++;
while( (s2 - str) > len ) {
*o = *s2;
s2++;
o++;
2014-05-15 08:38:07 -04:00
}
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-14 22:08:42 -04:00
char** str_split(char* a_str, const char a_delim)
{
char** result = 0;
size_t count = 0;
char* tmp = a_str;
char* last_comma = 0;
char delim[2];
delim[0] = a_delim;
delim[1] = 0;
/* Count how many elements will be extracted. */
while (*tmp)
{
if (a_delim == *tmp)
{
count++;
last_comma = tmp;
}
tmp++;
}
/* Add space for trailing token. */
count += last_comma < (a_str + strlen(a_str) - 1);
/* Add space for terminating null string so caller
knows where the list of returned strings ends. */
count++;
result = malloc(sizeof(char*) * count);
if (result)
{
size_t idx = 0;
char* token = strtok(a_str, delim);
while (token)
{
assert(idx < count);
*(result + idx++) = strdup(token);
token = strtok(0, delim);
}
assert(idx == count - 1);
*(result + idx) = 0;
}
return result;
}
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(" ");
}
}