113 lines
3.5 KiB
Python
113 lines
3.5 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
##
|
|
## @author Edouard DUPIN
|
|
##
|
|
## @copyright 2012, Edouard DUPIN, all right reserved
|
|
##
|
|
## @license MPL v2.0 (see license file)
|
|
##
|
|
|
|
import os
|
|
|
|
from realog import debug
|
|
|
|
from island import (
|
|
commands,
|
|
config,
|
|
env,
|
|
manifest,
|
|
multiprocess,
|
|
tools,
|
|
)
|
|
|
|
|
|
##
|
|
## @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)
|
|
##
|
|
def help():
|
|
return "Commit in all repository"
|
|
|
|
|
|
##
|
|
## @brief Add argument to the specific action
|
|
## @param[in,out] my_args (death.Arguments) Argument manager
|
|
## @param[in] section Name of the currect action
|
|
##
|
|
def add_specific_arguments(my_args, section):
|
|
my_args.add("m", "message", haveParam=True, desc="Message to commit data")
|
|
my_args.add("a", "all", desc="Commit all elements")
|
|
my_args.add("", "amend", desc="Ammend data at the previous commit")
|
|
|
|
|
|
##
|
|
## @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
|
|
##
|
|
def execute(_arguments):
|
|
argument_message = ""
|
|
argument_amend = ""
|
|
argument_all = ""
|
|
for elem in _arguments:
|
|
if elem.get_option_name() == "message":
|
|
debug.info("find message: '" + elem.get_arg() + "'")
|
|
argument_message = ' --message "' + elem.get_arg() + '" '
|
|
elif elem.get_option_name() == "all":
|
|
argument_all = " --all "
|
|
elif elem.get_option_name() == "amend":
|
|
argument_amend = " --amend "
|
|
else:
|
|
debug.error(
|
|
"Wrong argument: '"
|
|
+ elem.get_option_name()
|
|
+ "' '"
|
|
+ elem.get_arg()
|
|
+ "'"
|
|
)
|
|
|
|
# check system is OK
|
|
manifest.check_lutin_is_init()
|
|
|
|
configuration = config.get_unique_config()
|
|
|
|
file_source_manifest = os.path.join(
|
|
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("commit : " + str(len(all_project)) + " projects")
|
|
id_element = 0
|
|
for elem in all_project:
|
|
id_element += 1
|
|
base_display = tools.get_list_base_display(id_element, len(all_project), elem)
|
|
debug.info("commit: " + base_display)
|
|
git_repo_path = os.path.join(env.get_island_root_path(), elem.path)
|
|
if os.path.exists(git_repo_path) == False:
|
|
debug.error("can not commit project that not exist")
|
|
continue
|
|
|
|
if os.path.exists(os.path.join(git_repo_path, ".git")) == False:
|
|
# path already exist but it is not used to as a git repo ==> this is an error
|
|
debug.warning(
|
|
"path '"
|
|
+ git_repo_path
|
|
+ "' is already existing but not used for a git repository. Clean it and restart"
|
|
)
|
|
continue
|
|
|
|
# simply update the repository ...
|
|
debug.verbose("commit in project:")
|
|
# fetch the repository
|
|
cmd = "git commit " + argument_amend + argument_all + argument_message
|
|
debug.debug("execute : " + cmd)
|
|
multiprocess.run_command_direct(cmd, cwd=git_repo_path)
|