90 lines
3.0 KiB
Python
90 lines
3.0 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)
|
|
##
|
|
|
|
from realog import debug
|
|
from island import tools
|
|
from island import env
|
|
from island import config
|
|
from island import multiprocess
|
|
from island import manifest
|
|
from island import commands
|
|
import os
|
|
|
|
|
|
def help():
|
|
return "Commit in all repository"
|
|
|
|
|
|
|
|
|
|
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")
|
|
|
|
|
|
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 if .XXX exist (create it if needed)
|
|
if os.path.exists(env.get_island_path()) == False \
|
|
or os.path.exists(env.get_island_path_config()) == False \
|
|
or os.path.exists(env.get_island_path_manifest()) == False:
|
|
debug.error("System already init have an error: missing data: '" + str(env.get_island_path()) + "'")
|
|
|
|
configuration = config.Config()
|
|
|
|
if env.get_fetch_manifest() == True:
|
|
debug.info("update manifest : '" + str(env.get_island_path_manifest()) + "'")
|
|
# update manifest
|
|
cmd = "git fetch --all"
|
|
multiprocess.run_command_direct(cmd, cwd=env.get_island_path_manifest())
|
|
|
|
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
|
|
debug.info("commit: " + str(id_element) + "/" + str(len(all_project)) + ": " + str(elem.name))
|
|
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)
|
|
|