added Vector_zeroEnd() function
[util-vserver.git] / util-vserver / lib / getvserverbyctx-compat.hc
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
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.
8 //  
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.
13 //  
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.
17
18
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include "vserver.h"
24 #include "internal.h"
25 #include "pathconfig.h"
26 #include "compat-c99.h"
27
28 #include <string.h>
29 #include <unistd.h>
30
31 static char *
32 vc_getVserverByCtx_compat(xid_t ctx, vcCfgStyle *style, char const *revdir)
33 {
34   if (revdir==0) revdir = DEFAULT_PKGSTATEREVDIR;
35
36   {
37   vcCfgStyle    cur_style = vcCFG_NONE;
38   size_t        l = strlen(revdir);
39   size_t        l1;
40   char          path[l + sizeof(unsigned int)*3 + 3];
41
42   strcpy(path, revdir);
43   path[l]      = '/';
44   l1 = utilvserver_fmt_uint(path+l+1, ctx);
45   path[l+1+l1] = '\0';
46
47   if (style==0 || *style==vcCFG_AUTO) {
48     if (access(path, F_OK)==0) cur_style = vcCFG_RECENT_FULL;
49       // TODO: handle legacy
50   }
51   else
52     cur_style = *style;
53
54   switch (cur_style) {
55     case vcCFG_RECENT_SHORT     :
56     case vcCFG_RECENT_FULL      :
57         // check if expected ctx == actual ctx
58       if (vc_getVserverCtx(path, vcCFG_RECENT_FULL, false, 0)!=ctx) return 0;
59
60       if (style) *style = vcCFG_RECENT_FULL;
61       return strdup(path);
62         // TODO: handle legacy
63     default             :
64       return 0;
65   }
66   }
67 }