Menu

[r18]: / src / contexthandler.cpp  Maximize  Restore  History

Download this file

43 lines (36 with data), 882 Bytes

 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
#include <string>
#include "contexthandler.h"
ContextMatch ContextHandler::getContext(
char *s,
int len,
char *origin,
int context)
{
char *t, *u;
int maxrange = context * 20;
int range = context + 1, i = 0;
for (t = s; t != origin; --t)
if (*t == ' ' || *t == '\t' || *t == '\r' || *t == '\n')
if (++i == range)
{
++t;
break;
}
i = 0;
for (u = s + len; *u; ++u)
if (*u == ' ' || *u == '\t' || *u == '\r' || *u == '\n')
if (++i == range)
break;
ContextMatch match;
// prevent excessive context
if ((s - t) < maxrange)
match.prelog.assign(t, s - t);
else
match.prelog = "...";
match.match.assign(s, len);
if ((u - s) < maxrange)
match.postlog.assign(s + len, u - (s + len));
else
match.postlog = "...";
return match;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.