initial checkin
[util-vserver.git] / util-vserver / lib / getvserverbyctx.c
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
27 #include <string.h>
28 #include <unistd.h>
29
30 char *
31 vc_getVserverByCtx(ctx_t ctx, vcCfgStyle *style, char const *revdir)
32 {
33   if (revdir==0) revdir = DEFAULT_PKGSTATEREVDIR;
34
35   vcCfgStyle    cur_style = vcCFG_NONE;
36   size_t        l = strlen(revdir);
37   size_t        l1;
38   char          path[l + sizeof(unsigned int)*3 + 2 + sizeof("/name")];
39
40   strcpy(path, revdir);
41   path[l]      = '/';
42   l1 = utilvserver_fmt_uint(path+l+1, ctx);
43   path[l+1+l1] = '\0';
44
45   if (style==0 || *style==vcCFG_AUTO) {
46     if (access(path, F_OK)==0) cur_style = vcCFG_RECENT_FULL;
47       // TODO: handle legacy
48   }
49   else
50     cur_style = *style;
51
52   switch (cur_style) {
53     case vcCFG_RECENT_SHORT     :
54     case vcCFG_RECENT_FULL      :
55         // check if expected ctx == actual ctx
56       if (vc_getVserverCtx(path, vcCFG_RECENT_FULL)!=ctx) return 0;
57
58       if (style) *style = vcCFG_RECENT_FULL;
59       return strdup(path);
60         // TODO: handle legacy
61     default             :
62       return 0;
63   }
64 }