@@ -49,26 +49,32 @@ def get_branch_name(self) -> str:
49
49
class LocalRepo (Repo ):
50
50
"""Concrete implementation of the `Repo` class using local path backend."""
51
51
52
- def __init__ (self , local_path : str , path : str ) -> None :
52
+ def __init__ (self , path : str , realisation_path : str ) -> None :
53
53
"""_summary_.
54
54
55
55
Parameters
56
56
----------
57
- local_path : str
57
+ realisation_path : str
58
58
Path for local checkout of CABLE
59
59
path : str
60
- Directory where CABLE is symlinked
60
+ Directory where CABLE is symlinked from
61
61
62
62
"""
63
- self .name = Path (local_path ).name
64
- self .local_path = local_path
65
- self .path = path / self .name if path .is_dir () else path
63
+ self .name = Path (path ).name
64
+ self .local_path = path
65
+ self .realisation_path = (
66
+ realisation_path / self .name
67
+ if realisation_path .is_dir ()
68
+ else realisation_path
69
+ )
66
70
self .logger = get_logger ()
67
71
68
72
def checkout (self ):
69
73
"""Checkout the source code."""
70
- self .path .symlink_to (self .local_path )
71
- self .logger .info (f"Created symlink from to { self .path } named { self .name } " )
74
+ self .realisation_path .symlink_to (self .local_path )
75
+ self .logger .info (
76
+ f"Created symlink from to { self .realisation_path } named { self .name } "
77
+ )
72
78
73
79
def get_revision (self ) -> str :
74
80
"""Return the latest revision of the source code.
@@ -79,7 +85,7 @@ def get_revision(self) -> str:
79
85
Human readable string describing the latest revision.
80
86
81
87
"""
82
- return f"Using local CABLE branch : { self .name } "
88
+ return f"Local CABLE build : { self .name } "
83
89
84
90
def get_branch_name (self ) -> str :
85
91
"""Return the branch name of the source code.
@@ -90,7 +96,7 @@ def get_branch_name(self) -> str:
90
96
Branch name of the source code.
91
97
92
98
"""
93
- return Path (self .path ).absolute ()
99
+ return Path (self .realisation_path ).absolute (). as_posix ()
94
100
95
101
96
102
class GitRepo (Repo ):
@@ -106,7 +112,11 @@ class GitRepo(Repo):
106
112
subprocess_handler = SubprocessWrapper ()
107
113
108
114
def __init__ (
109
- self , url : str , branch : str , path : Path , commit : Optional [str ] = None
115
+ self ,
116
+ url : str ,
117
+ branch : str ,
118
+ realisation_path : Path ,
119
+ commit : Optional [str ] = None ,
110
120
) -> None :
111
121
"""Return a `GitRepo` instance.
112
122
@@ -116,7 +126,7 @@ def __init__(
116
126
URL pointing to the GitHub repository.
117
127
branch: str
118
128
Name of a branch on the GitHub repository.
119
- path : Path
129
+ realisation_path : Path
120
130
Path to a directory in which the repository is cloned into. If
121
131
`path` points to an existing directory, the repository will be
122
132
cloned into `path / branch`.
@@ -127,7 +137,9 @@ def __init__(
127
137
"""
128
138
self .url = url
129
139
self .branch = branch
130
- self .path = path / branch if path .is_dir () else path
140
+ self .path = (
141
+ realisation_path / branch if realisation_path .is_dir () else realisation_path
142
+ )
131
143
self .commit = commit
132
144
self .logger = get_logger ()
133
145
@@ -187,7 +199,7 @@ def __init__(
187
199
self ,
188
200
svn_root : str ,
189
201
branch_path : str ,
190
- path : Path ,
202
+ realisation_path : Path ,
191
203
revision : Optional [int ] = None ,
192
204
) -> None :
193
205
"""Return an `SVNRepo` instance.
@@ -198,7 +210,7 @@ def __init__(
198
210
URL pointing to the root of the SVN repository.
199
211
branch_path: str
200
212
Path to a branch relative to `svn_root`.
201
- path : Path
213
+ realisation_path : Path
202
214
Path to a directory in which the branch is checked out into. If
203
215
`path` points to an existing directory, the repository will be
204
216
cloned into `path / <branch_name>` where `<branch_name>` is the
@@ -211,7 +223,11 @@ def __init__(
211
223
self .svn_root = svn_root
212
224
self .branch_path = branch_path
213
225
self .revision = revision
214
- self .path = path / Path (branch_path ).name if path .is_dir () else path
226
+ self .path = (
227
+ realisation_path / Path (branch_path ).name
228
+ if realisation_path .is_dir ()
229
+ else realisation_path
230
+ )
215
231
self .logger = get_logger ()
216
232
217
233
def checkout (self ):
@@ -280,9 +296,11 @@ def create_repo(spec: dict, path: Path) -> Repo:
280
296
if "git" in spec :
281
297
if "url" not in spec ["git" ]:
282
298
spec ["git" ]["url" ] = internal .CABLE_GIT_URL
283
- return GitRepo (path = path , ** spec ["git" ])
299
+ return GitRepo (realisation_path = path , ** spec ["git" ])
284
300
if "svn" in spec :
285
- return SVNRepo (svn_root = internal .CABLE_SVN_ROOT , path = path , ** spec ["svn" ])
301
+ return SVNRepo (
302
+ svn_root = internal .CABLE_SVN_ROOT , realisation_path = path , ** spec ["svn" ]
303
+ )
286
304
if "local" in spec :
287
- return LocalRepo (path = path , ** spec ["local" ])
305
+ return LocalRepo (realisation_path = path , ** spec ["local" ])
288
306
raise RepoSpecError
0 commit comments