(file) Return to Policy.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Executor

 1 kumpf 1.2 /*
 2 martin 1.6 //%LICENSE////////////////////////////////////////////////////////////////
 3 kumpf  1.2 // 
 4 martin 1.6 // Licensed to The Open Group (TOG) under one or more contributor license
 5            // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 6            // this work for additional information regarding copyright ownership.
 7            // Each contributor licenses this file to you under the OpenPegasus Open
 8            // Source License; you may not use this file except in compliance with the
 9            // License.
10            // 
11            // Permission is hereby granted, free of charge, to any person obtaining a
12            // copy of this software and associated documentation files (the "Software"),
13            // to deal in the Software without restriction, including without limitation
14            // the rights to use, copy, modify, merge, publish, distribute, sublicense,
15            // and/or sell copies of the Software, and to permit persons to whom the
16            // Software is furnished to do so, subject to the following conditions:
17            // 
18            // The above copyright notice and this permission notice shall be included
19            // in all copies or substantial portions of the Software.
20            // 
21            // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22            // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
23            // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
24            // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
25 martin 1.6 // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
26            // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
27            // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28            // 
29            //////////////////////////////////////////////////////////////////////////
30 kumpf  1.2 */
31            
32            #ifndef _Executor_Policy_h
33            #define _Executor_Policy_h
34            
35 kumpf  1.3 #include <stdlib.h>
36            #include "Defines.h"
37            #include "Messages.h"
38            
39            /*
40            **==============================================================================
41            **
42            ** Policy
43            **
44            **     This structure defines a policy rule.
45            **
46            **==============================================================================
47            */
48            
49            struct Policy
50            {
51                enum ExecutorMessageCode messageCode;
52                const char* arg1;
53                const char* arg2;
54 kumpf  1.5     unsigned long flags;
55 kumpf  1.3 };
56            
57            EXECUTOR_LINKAGE
58            int CheckPolicy(
59                const struct Policy* policyTable,
60                size_t policyTableSize,
61                enum ExecutorMessageCode messageCode,
62                const char* arg1,
63 kumpf  1.5     const char* arg2,
64                unsigned long* flags);
65 kumpf  1.3 
66            EXECUTOR_LINKAGE
67 kumpf  1.5 int CheckOpenFilePolicy(const char* path, int mode, unsigned long* flags);
68 kumpf  1.2 
69 kumpf  1.3 EXECUTOR_LINKAGE
70 kumpf  1.2 int CheckRemoveFilePolicy(const char* path);
71            
72 kumpf  1.3 EXECUTOR_LINKAGE
73 kumpf  1.2 int CheckRenameFilePolicy(const char* oldPath, const char* newPath);
74            
75 kumpf  1.3 EXECUTOR_LINKAGE
76 kumpf  1.4 void DumpPolicyHelper(
77                FILE* outputStream,
78                const struct Policy* policyTable,
79                size_t policyTableSize,
80                int expandMacros);
81            
82            EXECUTOR_LINKAGE
83            void DumpPolicy(FILE* outputStream, int expandMacros);
84 kumpf  1.2 
85            #endif /* _Executor_Policy_h */

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2