1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/*
* wiggle - apply rejected patches
*
* Copyright (C) 2003-2013 Neil Brown <neilb@suse.de>
* Copyright (C) 2014-2020 Neil Brown <neil@brown.name>
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.
*
* Author: Neil Brown
* Email: <neil@brown.name>
*/
/*
* Split a stream into words or lines
*
* A word is one of:
* string of [A-Za-z0-9_]
* or string of [ \t]
* or single char (i.e. punctuation and newlines).
*
* A line is any string that ends with \n
*
* As a special case to allow proper aligning of multiple chunks
* in a patch, a word starting \0 will include 20+ chars with a newline
* second from the end.
*
* We make two passes through the stream.
* Firstly we count the number of item so an array can be allocated,
* then we store start and length of each item in the array
*
*/
#include "wiggle.h"
#include <stdlib.h>
#include <ctype.h>
#include <stdlib.h>
#include "ccan/hash/hash.h"
static int wiggle_split_internal(char *start, char *end, int type,
struct elmnt *list)
{
int cnt = 0;
while (start < end) {
char *cp = start;
char *cp2;
int prefix = 0;
if ((type & ByWord) && (type & IgnoreBlanks))
while (cp < end &&
(*cp == ' ' || *cp == '\t')) {
prefix++;
cp++;
}
start = cp;
if (*cp == '\0' && cp+19 < end) {
/* special word */
cp += 19;
cp += strlen(cp) + 1;
} else
switch (type & ByMask) {
case ByLine:
while (cp < end && *cp != '\n')
cp++;
if (cp < end)
cp++;
break;
case ByWord:
if (*cp == ' ' || *cp == '\t') {
do
cp++;
while (cp < end
&& (*cp == ' '
|| *cp == '\t'));
} else if ((type & WholeWord) ||
isalnum(*cp) || *cp == '_') {
do
cp++;
while (cp < end
&& (((type & WholeWord)
&& *cp != ' ' && *cp != '\t'
&& *cp != '\n')
|| isalnum(*cp)
|| *cp == '_'));
} else
cp++;
break;
}
cp2 = cp;
if ((type & ByWord) && (type & IgnoreBlanks) &&
*start && *start != '\n')
while (cp2 < end &&
(*cp2 == ' ' || *cp2 == '\t' || *cp2 == '\n')) {
cp2++;
if (cp2[-1] == '\n')
break;
}
if (list) {
list->start = start;
list->len = cp-start;
list->plen = cp2-start;
list->prefix = prefix;
if (*start)
list->hash = hash(start, list->len, 0);
else
list->hash = atoi(start+1);
list++;
}
cnt++;
start = cp2;
}
return cnt;
}
struct file wiggle_split_stream(struct stream s, int type)
{
int cnt;
struct file f;
char *c, *end;
if (!s.body) {
f.list = NULL;
f.elcnt = 0;
return f;
}
end = s.body+s.len;
c = s.body;
cnt = wiggle_split_internal(c, end, type, NULL);
f.list = wiggle_xmalloc(cnt*sizeof(struct elmnt));
f.elcnt = wiggle_split_internal(c, end, type, f.list);
return f;
}
|