okular/kpathsea/kdefault.c
Stephan Kulow 56047b2b0b imported kdvi
svn path=/trunk/kdegraphics/kdvi/; revision=2139
1997-10-18 11:34:02 +00:00

120 lines
3.4 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* kdefault.c: Expand extra colons.
(This is not named default.c because then the OSF/1 make tries to
make a program `default' from it, since we have a target `default';
and OSF/1 make doesn't understand .PHONY.)
Copyright (C) 1993, 94 Karl Berry.
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, 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; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <kpathsea/config.h>
#include <kpathsea/c-pathch.h>
#include <kpathsea/default.h>
/* Check for leading colon first, then trailing, then doubled, since
that is fastest. Usually it will be leading or trailing. */
string
kpse_expand_default P2C(const_string, path, const_string, fallback)
{
unsigned path_length;
string expansion;
/* The default path better not be null. */
assert (fallback);
if (path == NULL)
expansion = (string) fallback;
/* Solitary or leading :? */
else if (IS_ENV_SEP (*path))
{
expansion = path[1] == 0 ? (string) fallback : concat (fallback, path);
}
/* Sorry about the assignment in the middle of the expression, but
conventions were made to be flouted and all that. I don't see the
point of calling strlen twice or complicating the logic just to
avoid the assignment (especially now that I've pointed it out at
such great length). */
else if (path[(path_length = strlen (path)) - 1] == ENV_SEP)
expansion = concat (path, fallback);
/* OK, not leading or trailing. Check for doubled. */
else
{
const_string loc;
/* What we'll return if we find none. */
expansion = (string) path;
for (loc = path; *loc && expansion == path; loc++)
{
if (IS_ENV_SEP (loc[0]) && IS_ENV_SEP (loc[1]))
{ /* We have a doubled colon. */
expansion = xmalloc (path_length + strlen (fallback) + 1);
/* Copy stuff up to and including the first colon. */
strncpy (expansion, path, loc - path + 1);
expansion[loc - path + 1] = 0;
/* Copy in FALLBACK, and then the rest of PATH. */
strcat (expansion, fallback);
strcat (expansion, loc + 1);
}
}
}
return expansion;
}
#ifdef TEST
void
test_expand_default (const_string path, const_string def)
{
string answer;
printf ("Expansion of `%s':\t", path ? path : "(null)");
answer = kpse_expand_default (path, def);
puts (answer);
}
int
main ()
{
string default_path = "default";
test_expand_default (NULL, default_path);
test_expand_default ("", default_path);
test_expand_default ("none", default_path);
test_expand_default (":", default_path);
test_expand_default (":first", default_path);
test_expand_default ("last:", default_path);
test_expand_default ("middle::elddim", default_path);
return 0;
}
#endif /* TEST */
/*
Local variables:
standalone-compile-command: "gcc -g -I. -I.. -DTEST default.c kpathsea.a"
End:
*/