2013-07-08 04:25:06 +00:00
|
|
|
# -*- 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
|
2013-12-13 14:44:59 +00:00
|
|
|
from .projects.projectmap import ProjectMap
|
2013-07-08 04:25:06 +00:00
|
|
|
from .projects.subversion import Subversion
|
2013-12-13 14:44:59 +00:00
|
|
|
from .projects.wakatime import WakaTime
|
2013-07-08 04:25:06 +00:00
|
|
|
|
|
|
|
|
2014-07-25 09:45:35 +00:00
|
|
|
log = logging.getLogger('WakaTime')
|
2013-07-08 04:25:06 +00:00
|
|
|
|
2013-12-13 14:44:59 +00:00
|
|
|
|
|
|
|
# List of plugin classes to find a project for the current file path.
|
|
|
|
# Project plugins will be processed with priority in the order below.
|
2013-07-08 04:25:06 +00:00
|
|
|
PLUGINS = [
|
2013-11-14 02:05:44 +00:00
|
|
|
WakaTime,
|
2013-12-13 14:44:59 +00:00
|
|
|
ProjectMap,
|
2013-07-08 04:25:06 +00:00
|
|
|
Git,
|
|
|
|
Mercurial,
|
|
|
|
Subversion,
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2013-12-13 14:44:59 +00:00
|
|
|
def find_project(path, configs=None):
|
2013-07-08 04:25:06 +00:00
|
|
|
for plugin in PLUGINS:
|
2013-12-13 14:44:59 +00:00
|
|
|
plugin_name = plugin.__name__.lower()
|
|
|
|
plugin_configs = None
|
|
|
|
if configs and configs.has_section(plugin_name):
|
|
|
|
plugin_configs = dict(configs.items(plugin_name))
|
|
|
|
project = plugin(path, configs=plugin_configs)
|
2013-07-10 03:15:01 +00:00
|
|
|
if project.process():
|
2013-07-08 04:25:06 +00:00
|
|
|
return project
|
2013-07-21 17:46:03 +00:00
|
|
|
return None
|