83 lines
2.5 KiB
Java
83 lines
2.5 KiB
Java
//!/usr/bin/python
|
|
// -*- coding: utf-8 -*-
|
|
//#
|
|
//# @author Edouard DUPIN
|
|
//#
|
|
//# @copyright 2012, Edouard DUPIN, all right reserved
|
|
//#
|
|
//# @license MPL v2.0 (see license file)
|
|
//#
|
|
|
|
from realog import debug
|
|
from island import tools
|
|
from island import env
|
|
from island import multiprocess
|
|
from island import config
|
|
from island import manifest
|
|
from island import commands
|
|
import os
|
|
|
|
|
|
//#
|
|
//# @brief Get the global description of the current action
|
|
//# @return (string) the description string (fist line if reserved for the overview, all is for the specific display)
|
|
//#
|
|
public void help():
|
|
return "Write the command you want to be executed in every repository"
|
|
|
|
//#
|
|
//# @brief Set the option argument are not able to check if the argument are correct or not
|
|
//# @return (boolean) have parameter without arguments
|
|
//#
|
|
public void have_unknow_argument():
|
|
return true
|
|
|
|
//#
|
|
//# @brief Execute the action required.
|
|
//#
|
|
//# @return error value [0 .. 50] the <0 value is reserved system ==> else, what you want.
|
|
//# None : No error (return program out 0)
|
|
//# -10 : ACTION is not existing
|
|
//# -11 : ACTION execution system error
|
|
//# -12 : ACTION Wrong parameters
|
|
//#
|
|
public void execute(_arguments):
|
|
cmd = ""
|
|
for elem in _arguments:
|
|
debug.info("Get data element: " + str(elem.get_arg()))
|
|
cmd += elem.get_arg() + " "
|
|
|
|
// check system is OK
|
|
manifest.check_lutin_is_init()
|
|
|
|
configuration = config.get_unique_config()
|
|
|
|
file_source_manifest = new Path(env.get_island_path_manifest(), configuration.get_manifest_name())
|
|
if os.path.exists(file_source_manifest) == false:
|
|
debug.error("Missing manifest file : '" + str(file_source_manifest) + "'")
|
|
|
|
mani = manifest.Manifest(file_source_manifest)
|
|
|
|
all_project = mani.get_all_configs()
|
|
debug.info("status of: " + str(len(all_project)) + " projects")
|
|
id_element = 0
|
|
for elem in all_project:
|
|
debug.info("------------------------------------------")
|
|
id_element += 1
|
|
base_display = tools.get_list_base_display(id_element, len(all_project), elem)
|
|
debug.info("execute command : " + base_display)
|
|
tools.wait_for_server_if_needed()
|
|
//debug.debug("elem : " + str(elem))
|
|
git_repo_path = new Path(env.get_island_root_path(), elem.path)
|
|
if os.path.exists(git_repo_path) == false:
|
|
debug.info("" + base_display + "\r\t\t\t\t\t\t\t\t\t" + " (not download)")
|
|
continue
|
|
|
|
debug.verbose("execute : " + cmd)
|
|
ret = multiprocess.run_command(cmd, cwd=git_repo_path)
|
|
if ret[0] == 0:
|
|
debug.info("ret=" + ret[1])
|
|
debug.info("err=" + ret[2])
|
|
else:
|
|
debug.info("Execution ERROR")
|
|
|