# # Metrix++, Copyright 2009-2013, Metrix++ Project # Link: http://metrixplusplus.sourceforge.net # # This file is a part of Metrix++ Tool. # # Metrix++ is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License. # # Metrix++ is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Metrix++. If not, see . # import os import mpp.internal.loader import mpp.api class Tool(mpp.api.ITool): def run(self, tool_args): return main(tool_args) def main(tool_args): loader = mpp.internal.loader.Loader() mpp_paths = [] # TODO document this feature if 'METRIXPLUSPLUS_PATH' in os.environ.keys(): mpp_paths = os.environ['METRIXPLUSPLUS_PATH'].split(os.pathsep) args = loader.load('collect', mpp_paths, tool_args) exit_code = loader.run(args) loader.unload() return exit_code