~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/clients/common/read_defaults.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __READ_DEFAULTS_H
 
2
#define __READ_DEFAULTS_H
 
3
/*___INFO__MARK_BEGIN__*/
 
4
/*************************************************************************
 
5
 * 
 
6
 *  The Contents of this file are made available subject to the terms of
 
7
 *  the Sun Industry Standards Source License Version 1.2
 
8
 * 
 
9
 *  Sun Microsystems Inc., March, 2001
 
10
 * 
 
11
 * 
 
12
 *  Sun Industry Standards Source License Version 1.2
 
13
 *  =================================================
 
14
 *  The contents of this file are subject to the Sun Industry Standards
 
15
 *  Source License Version 1.2 (the "License"); You may not use this file
 
16
 *  except in compliance with the License. You may obtain a copy of the
 
17
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
18
 * 
 
19
 *  Software provided under this License is provided on an "AS IS" basis,
 
20
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
21
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
22
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
23
 *  See the License for the specific provisions governing your rights and
 
24
 *  obligations concerning the Software.
 
25
 * 
 
26
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
27
 * 
 
28
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
29
 * 
 
30
 *   All Rights Reserved.
 
31
 * 
 
32
 ************************************************************************/
 
33
/*___INFO__MARK_END__*/
 
34
 
 
35
#define SGE_COMMON_DEF_REQ_FILE     "common/sge_request"
 
36
#define SGE_HOME_DEF_REQ_FILE       ".sge_request"
 
37
#define SGE_COMMON_DEF_QSTAT_FILE   "common/sge_qstat"
 
38
#define SGE_HOME_DEF_QSTAT_FILE     ".sge_qstat"
 
39
#define SGE_COMMON_DEF_QQUOTA_FILE   "common/sge_qquota"
 
40
#define SGE_HOME_DEF_QQUOTA_FILE     ".sge_qquota"
 
41
#define SGE_COMMON_DEF_AR_REQ_FILE   "common/sge_ar_request"
 
42
#define SGE_HOME_DEF_AR_REQ_FILE     ".sge_ar_request"
 
43
#define SGE_COMMON_DEF_QRSTAT_FILE   "common/sge_qrstat"
 
44
#define SGE_HOME_DEF_QRSTAT_FILE     ".sge_qrstat"
 
45
 
 
46
void opt_list_append_opts_from_default_files(u_long32 prog_number,
 
47
                                             const char* cell_root,
 
48
                                             const char* username, 
 
49
                                             lList **pcmdline,  
 
50
                                             lList **answer_list,
 
51
                                             char **envp);
 
52
 
 
53
void opt_list_append_opts_from_qsub_cmdline(u_long32 prog_number,
 
54
                                            lList **opts_cmdline,
 
55
                                            lList **answer_list,
 
56
                                            char **argv,
 
57
                                            char **envp);
 
58
 
 
59
void opt_list_append_opts_from_qalter_cmdline(u_long32 prog_number,
 
60
                                              lList **opts_cmdline,
 
61
                                              lList **answer_list,
 
62
                                              char **argv,
 
63
                                              char **envp);
 
64
 
 
65
void opt_list_append_opts_from_script(u_long32 prog_number, 
 
66
                                      lList **opts_scriptfile,
 
67
                                      lList **answer_list,
 
68
                                      const lList *opts_cmdline,
 
69
                                      char **envp);
 
70
 
 
71
void opt_list_append_opts_from_script_path(u_long32 prog_number,
 
72
                                           lList **opts_scriptfile, 
 
73
                                           const char *path,
 
74
                                           lList **answer_list,
 
75
                                           const lList *opts_cmdline,
 
76
                                           char **envp);
 
77
                                           
 
78
void opt_list_merge_command_lines(lList **opts_all,
 
79
                                  lList **opts_defaults,
 
80
                                  lList **opts_scriptfile,
 
81
                                  lList **opts_cmdline);
 
82
 
 
83
bool opt_list_has_X(lList *opts, const char *option);
 
84
 
 
85
bool opt_list_is_X_true(lList *opts, const char *option);
 
86
 
 
87
bool get_user_home_file_path(dstring *absolut_filename, const char *filename, const char *user, lList **answer_list);
 
88
 
 
89
const char *get_root_file_path(dstring *absolut_filename, const char *cell_root, const char *filename);
 
90
 
 
91
bool get_user_home(dstring *home_dir, const char *user, lList **answer_list);
 
92
 
 
93
#endif /* __READ_DEFAULTS_H */
 
94