vim-rana-local/plugin/packages/wakatime/project.py

85 lines
2.2 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""
wakatime.project
~~~~~~~~~~~~~~~~
Returns a project for the given file.
:copyright: (c) 2013 Alan Hamlett.
:license: BSD, see LICENSE for more details.
"""
import logging
from .projects.git import Git
from .projects.mercurial import Mercurial
2017-11-06 03:52:23 +00:00
from .projects.projectfile import ProjectFile
from .projects.projectmap import ProjectMap
from .projects.subversion import Subversion
2014-07-25 09:45:35 +00:00
log = logging.getLogger('WakaTime')
# List of plugin classes to find a project for the current file path.
2015-06-30 02:31:48 +00:00
CONFIG_PLUGINS = [
2017-11-06 03:52:23 +00:00
ProjectFile,
ProjectMap,
2015-06-30 02:31:48 +00:00
]
REV_CONTROL_PLUGINS = [
Git,
Mercurial,
Subversion,
]
2016-04-28 22:16:08 +00:00
def get_project_info(configs, heartbeat):
2015-06-30 02:31:48 +00:00
"""Find the current project and branch.
First looks for a .wakatime-project file. Second, uses the --project arg.
Third, uses the folder name from a revision control repository. Last, uses
the --alternate-project arg.
Returns a project, branch tuple.
"""
project_name, branch_name = None, None
for plugin_cls in CONFIG_PLUGINS:
plugin_name = plugin_cls.__name__.lower()
plugin_configs = get_configs_for_plugin(plugin_name, configs)
2016-04-28 22:16:08 +00:00
project = plugin_cls(heartbeat['entity'], configs=plugin_configs)
2013-07-10 03:15:01 +00:00
if project.process():
2015-09-02 15:40:11 +00:00
project_name = project_name or project.name()
2015-06-30 02:31:48 +00:00
branch_name = project.branch()
break
if project_name is None:
2016-04-28 22:16:08 +00:00
project_name = heartbeat.get('project')
2015-06-30 02:31:48 +00:00
if project_name is None or branch_name is None:
for plugin_cls in REV_CONTROL_PLUGINS:
plugin_name = plugin_cls.__name__.lower()
plugin_configs = get_configs_for_plugin(plugin_name, configs)
2016-04-28 22:16:08 +00:00
project = plugin_cls(heartbeat['entity'], configs=plugin_configs)
2015-06-30 02:31:48 +00:00
if project.process():
project_name = project_name or project.name()
branch_name = branch_name or project.branch()
break
if project_name is None:
2016-04-28 22:16:08 +00:00
project_name = heartbeat.get('alternate_project')
2015-06-30 02:31:48 +00:00
return project_name, branch_name
def get_configs_for_plugin(plugin_name, configs):
if configs and configs.has_section(plugin_name):
return dict(configs.items(plugin_name))
2013-07-21 17:46:03 +00:00
return None