//!/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 Log 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 status 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 "Manifest Ckeckout a specific branch of 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 //# public void add_specific_arguments(my_args, section): my_args.add("r", "remote", haveParam=true, desc="Name of the remote server") my_args.add_arg("branch", optionnal=false, desc="Branch to checkout (if '__TAG__' ==> checkout specific repository tags)") //# //# @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): argument_remote_name = "" branch_to_checkout = "" for elem in _arguments: if elem.getOptionName().equals("remote": Log.info("find remote name: '" + elem.getArg() + "'") argument_remote_name = elem.getArg() } else if elem.getOptionName().equals("branch": branch_to_checkout = elem.getArg() else: Log.error("Wrong argument: '" + elem.getOptionName() + "' '" + elem.getArg() + "'") // check system is OK Manifest.checkIsInit(); ConfigManifest configuration = Config.getUniqueConfig(); elem = configuration.get_manifest_config() base_display = tools.get_list_base_display(0, 0, elem) if status.checkout_elem(elem, argument_remote_name, branch_to_checkout, base_display) == false: return Env.ret_action_fail