3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #include "pathconfig.h"
28 #include <sys/param.h>
33 isRelPath(char const *p)
35 return p[0]=='.' && (p[1]=='/' || (p[1]=='.' && p[2]=='/'));
39 isAbsPath(char const *p)
44 #define ISDIR utilvserver_isDirectory(buf, true)
45 #define ISFILE utilvserver_isFile(buf, true)
46 #define ISLINK utilvserver_isLink(buf)
49 vc_getVserverCfgStyle(char const *id)
51 vcCfgStyle res = vcCFG_NONE;
52 size_t l1 = strlen(id);
54 MAX(sizeof(CONFDIR "/"),sizeof(DEFAULT_VSERVERDIR "/")) +
55 MAX(sizeof("/legacy"), sizeof(".conf")) - 1];
61 strcpy(marker, "/vdir");
63 is_path = isAbsPath(buf) || isRelPath(buf);
64 if (is_path && (ISDIR || ISLINK))
65 res = vcCFG_RECENT_FULL;
67 strcpy(buf, CONFDIR "/");
68 strcpy(buf+sizeof(CONFDIR "/") - 1, id);
69 marker = buf+sizeof(CONFDIR "/")+l1 - 1;
70 strcpy(marker, "/vdir");
72 if (ISDIR) res = vcCFG_RECENT_SHORT;
74 strcpy(buf, DEFAULT_VSERVERDIR "/");
75 strcpy(buf+sizeof(DEFAULT_VSERVERDIR)+1 - 1, id);
77 if (ISDIR) res = vcCFG_LEGACY;
80 if (res==vcCFG_LEGACY) {
81 strcpy(buf, CONFDIR "/");
82 strcpy(buf+sizeof(CONFDIR "/") - 1, id);
83 strcpy(buf+sizeof(CONFDIR "/")+l1 - 1, ".conf");
85 if (!ISFILE) res = vcCFG_NONE;
90 if (res==vcCFG_RECENT_FULL || res==vcCFG_RECENT_SHORT) {
92 strcpy(marker, "/legacy");
93 if (access(buf, F_OK)==0) res=vcCFG_LEGACY;