1 /*
2   Copyright 2021 Northern.tech AS
3 
4   This file is part of CFEngine 3 - written and maintained by Northern.tech AS.
5 
6   This program is free software; you can redistribute it and/or modify it
7   under the terms of the GNU General Public License as published by the
8   Free Software Foundation; version 3.
9 
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14 
15   You should have received a copy of the GNU General Public License
16   along with this program; if not, write to the Free Software
17   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
18 
19   To the extent this program is licensed as part of the Enterprise
20   versions of CFEngine, the applicable Commercial Open Source License
21   (COSL) may apply to this file if you as a licensee so wish it. See
22   included file COSL.txt.
23 */
24 
25 #ifndef CFENGINE_SCOPE_H
26 #define CFENGINE_SCOPE_H
27 
28 #include <cf3.defs.h>
29 
30 #include <var_expressions.h>
31 
32 typedef enum
33 {
34     SPECIAL_SCOPE_CONST,
35     SPECIAL_SCOPE_EDIT,
36     SPECIAL_SCOPE_MATCH,
37     SPECIAL_SCOPE_MON,
38     SPECIAL_SCOPE_SYS,
39     SPECIAL_SCOPE_THIS,
40     SPECIAL_SCOPE_BODY,
41     SPECIAL_SCOPE_DEF,
42 
43     SPECIAL_SCOPE_NONE
44 } SpecialScope;
45 
46 const char *SpecialScopeToString(SpecialScope scope);
47 SpecialScope SpecialScopeFromString(const char *scope);
48 
49 /**
50  * @brief augments a scope, expecting corresponding lists of lvals and rvals (implying same length).
51  *        in addition to copying them in, also attempts to do one-pass resolution of variables,
52  *        and evaluates function calls, and attempts expansion on senior scope members.
53  */
54 void ScopeAugment(EvalContext *ctx, const Bundle *bp, const Promise *pp, const Rlist *arguments);
55 
56 void ScopeMapBodyArgs(EvalContext *ctx, const Body *body, const Rlist *args);
57 
58 // TODO: namespacing utility functions. there are probably a lot of these floating around, but probably best
59 // leave them until we get a proper symbol table
60 void JoinScopeName(const char *ns, const char *bundle, char scope_out[CF_MAXVARSIZE]);
61 
62 #endif
63