rbtools.clients¶
Support for interfacing with source code management systems.
This provides support for creating, looking up, and registering SCM client integrations, enabling RBTools to interact with local source code repositories and communicate on their behalf to Review Board.
This particular module provides forwarding imports for:
The author of a patch or commit. |
|
The result of a patch operation. |
|
The main SCMClients registry used by RBTools. |
|
A representation of a source code repository. |
|
A base class for interfacing with a source code management tool. |
As well as some (soon to be legacy) utility functions and classes.
Changed in version 4.0:
Moved and renamed
rbtools.clients.base.scmclient.BaseSCMClient
and added a forwarding import and temporary legacy class.Moved
RepositoryInfo
and added a forwarding import.
Functions
|
Load the available SCM clients. |
|
Scan for a usable SCMClient. |
- rbtools.clients.load_scmclients(config, options)[source]¶
Load the available SCM clients.
- Parameters:
config (
dict
) – The loaded user config.options (
argparse.Namespace
) – The parsed command line arguments.
- rbtools.clients.scan_usable_client(config: RBToolsConfig, options: argparse.Namespace, client_name: Optional[str] = None) Tuple[RepositoryInfo, BaseSCMClient] [source]¶
Scan for a usable SCMClient.
- Parameters:
config (
dict
) – The loaded user config.options (
argparse.Namespace
) – The parsed command line arguments.client_name (
unicode
, optional) – A specific client name, which can come from the configuration. This can be used to disambiguate if there are nested repositories, or to speed up detection.
- Returns:
A 2-tuple, containing the repository info structure and the tool instance.
- Return type: