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"
34 getRecentName(char *start, char *end)
41 fd = open(start, O_RDONLY);
45 if ((len=lseek(fd, 0, SEEK_END))!=-1 &&
46 (len<VC_LIMIT_VSERVER_NAME_LEN) &&
47 (lseek(fd, 0, SEEK_SET)!=-1)) {
50 if (TEMP_FAILURE_RETRY(read(fd, buf, len+1))==len) {
51 while (len>0 && buf[len-1]=='\n') --len;
65 res = realpath(start, buf);
66 //printf("start='%s', res='%s'\n", start,res);
67 if (res==0) res = start;
76 vc_getVserverName(char const *id, vcCfgStyle style)
78 size_t l1 = strlen(id);
80 if (style==vcCFG_NONE || style==vcCFG_AUTO)
81 style = vc_getVserverCfgStyle(id);
84 case vcCFG_NONE : return 0;
85 case vcCFG_LEGACY : return strdup(id);
86 case vcCFG_RECENT_SHORT :
88 char buf[sizeof(CONFDIR "/") + l1 + sizeof("/name") - 1];
90 strcpy(buf, CONFDIR "/");
91 strcpy(buf+sizeof(CONFDIR "/") - 1, id);
93 return getRecentName(buf, buf+sizeof(CONFDIR "/")+l1 - 1);
95 case vcCFG_RECENT_FULL :
97 char buf[l1 + sizeof("/name")];
100 return getRecentName(buf, buf+l1);