3 # Copyright (C) 2010-2013 CEA/DEN
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License.
10 # This library 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 GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 parser = src.options.Options()
24 parser.add_option('', 'shell', 'list2', 'shell',
25 _("Optional: Generates the environment files for the given format: "
26 "bash (default), bat (for windows) or all."), [])
27 parser.add_option('p', 'products', 'list2', 'products',
28 _("Optional: Includes only the specified products."))
29 parser.add_option('', 'prefix', 'string', 'prefix',
30 _("Optional: Specifies the prefix for the environment files."), "env")
31 parser.add_option('t', 'target', 'string', 'out_dir',
32 _("Optional: Specifies the directory path where to put the environment "
36 # list of available shells with extensions
37 C_SHELLS = { "bash": "sh", "bat": "bat" }
38 C_ALL_SHELL = [ "bash", "bat" ]
42 # Writes all the environment files
43 def write_all_source_files(config,
51 '''Generates the environment files.
53 :param config Config: The global configuration
54 :param logger Logger: The logger instance to use for the display
56 :param out_dir str: The path to the directory where the files will be put
57 :param src_root str: The path to the directory where the sources are
58 :param silent boolean: If True, do not print anything in the terminal
59 :param shells list: The list of shells to generate
60 :param prefix str: The prefix to add to the file names.
61 :param env_info str: The list of products to add in the files.
62 :return: The list of the generated files.
67 out_dir = config.APPLICATION.workdir
69 if not os.path.exists(out_dir):
70 raise src.SatException(_("Target directory not found: %s") % out_dir)
73 logger.write(_("Creating environment files for %s\n") %
74 src.printcolors.printcLabel(config.APPLICATION.name), 2)
75 src.printcolors.print_value(logger,
77 src.printcolors.printcInfo(out_dir), 3)
78 logger.write("\n", 3, False)
81 all_shells = C_ALL_SHELL
85 shells = filter(lambda l: l in all_shells, shells)
88 if shell not in C_SHELLS:
89 logger.write(_("Unknown shell: %s\n") % shell, 2)
91 shells_list.append(src.environment.Shell(shell, C_SHELLS[shell]))
93 writer = src.environment.FileEnvWriter(config,
98 writer.silent = silent
102 for shell in shells_list:
103 files.append(writer.write_env_file("%s_launch.%s" %
104 (prefix, shell.extension),
107 files.append(writer.write_env_file("%s_build.%s" %
108 (prefix, shell.extension),
114 ##################################################
117 # Describes the command
119 return _("The environ command generates the environment files of your "
120 "application.\n\nexample:\nsat environ SALOME-master")
124 def run(args, runner, logger):
125 (options, args) = parser.parse_args(args)
127 # check that the command was called with an application
128 src.check_config_has_application( runner.cfg )
130 if options.products is None:
133 # add products specified by user (only products
134 # included in the application)
135 environ_info = filter(lambda l:
136 l in runner.cfg.APPLICATION.products.keys(),
139 if options.shell == []:
141 if src.architecture.is_windows():
144 shell = options.shell
146 out_dir = options.out_dir
148 out_dir = os.path.abspath(out_dir)
150 write_all_source_files(runner.cfg, logger, out_dir=out_dir, shells=shell,
151 prefix=options.prefix, env_info=environ_info)
152 logger.write("\n", 3, False)