1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/// Define a private namespace for all its items.
#[ allow( clippy ::std_instead_of_alloc, clippy ::std_instead_of_core ) ]
mod private
{
#[ allow( unused_imports, clippy ::wildcard_imports ) ]
use crate ::tool :: *;
use std ::ffi ::OsString;
use std ::path ::Path;
use process_tools ::process :: *;
// use error ::err;
// qqq: group dependencies
/// Adds changes to the Git staging area.
///
/// # Args :
/// - `path` - the root path
/// - `objects` - a list of paths from the root that will be added
/// - `dry` - a flag that indicates whether to apply the changes or not
/// - `true` - does not modify git state
/// - `false` - adds a change in the working directory to the staging area
///
/// # Returns :
/// Returns a result containing a report indicating the result of the operation.
/// # Errors
///
/// Returns an error if the `git add` command fails.
// qqq: should be typed error, apply err_with
#[ cfg_attr
(
feature = "tracing",
tracing ::instrument( skip( path, objects ), fields( path = %path.as_ref().display() ) )
)]
pub fn add< P, Os, O >( path: P, objects: Os, dry: bool )
-> error ::untyped ::Result< Report >
// qqq: use typed error
where
P: AsRef< Path >,
Os: AsRef< [ O ] >,
O: AsRef< str >,
{
let objects = objects.as_ref().iter().map( std ::convert ::AsRef ::as_ref );
// qqq: for Bohdan: don't enlarge length of lines artificially
let ( program, args ) : ( _, Vec< _ > ) = ( "git", Some( "add" ).into_iter().chain( objects ).collect() );
if dry
{
Ok
(
Report
{
command: format!( "{program} {}", args.join( " " ) ),
out: String ::new(),
err: String ::new(),
current_path: path.as_ref().to_path_buf(),
error: Ok( () ),
}
)
}
else
{
Run ::former()
.bin_path( program )
.args( args.into_iter().map( OsString ::from ).collect :: < Vec< _ > >() )
.current_path( path.as_ref().to_path_buf() )
.run().map_err( | report | error ::untyped ::format_err!( report.to_string() ) )
}
}
/// Commits changes to the Git repository.
///
/// # Args :
///
/// - `path` - the root path
/// - `message` - a commit message describing the changes
/// - `dry` - a flag that indicates whether to apply the changes or not
/// - `true` - does not modify the Git state
/// - `false` - commits changes to the repository
///
/// # Returns :
/// Returns a result containing a report indicating the result of the operation.
/// # Errors
///
/// Returns an error if the `git commit` command fails.
// qqq: should be typed error, apply err_with
#[ cfg_attr
(
feature = "tracing",
tracing ::instrument
(
skip( path, message ),
fields( path = %path.as_ref().display(), message = %message.as_ref() )
)
)]
pub fn commit< P, M >( path: P, message: M, dry: bool ) -> error ::untyped ::Result< Report >
// qqq: don't use 1-prameter Result
where
P: AsRef< Path >,
M: AsRef< str >,
{
let ( program, args ) = ( "git", [ "commit", "-m", message.as_ref() ] );
if dry
{
Ok
(
Report
{
command: format!( "{program} {}", args.join( " " ) ),
out: String ::new(),
err: String ::new(),
current_path: path.as_ref().to_path_buf(),
error: Ok( () ),
}
)
}
else
{
Run ::former()
.bin_path( program )
.args( args.into_iter().map( OsString ::from ).collect :: < Vec< _ > >() )
.current_path( path.as_ref().to_path_buf() )
.run().map_err( | report | error ::untyped ::format_err!( report.to_string() ) )
}
}
/// Pushes changes to the remote Git repository.
///
/// # Args :
///
/// - `path` - the root path
/// - `dry` - a flag that indicates whether to apply the changes or not
/// - `true` - does not modify the Git state
/// - `false` - pushes changes to the remote repository
///
/// # Returns :
/// Returns a result containing a report indicating the result of the operation.
/// # Errors
///
/// Returns an error if the `git push` command fails.
// qqq: should be typed error, apply err_with
#[ cfg_attr( feature = "tracing", tracing ::instrument( skip( path ), fields( path = %path.as_ref().display() ) ) ) ]
pub fn push< P >( path: P, dry: bool ) -> error ::untyped ::Result< Report >
// qqq: don't use 1-prameter Result
where
P: AsRef< Path >,
{
let ( program, args ) = ( "git", [ "push" ] );
if dry
{
Ok
(
Report
{
command: format!( "{program} {}", args.join( " " ) ),
out: String ::new(),
err: String ::new(),
current_path: path.as_ref().to_path_buf(),
error: Ok( () ),
}
)
}
else
{
Run ::former()
.bin_path( program )
.args( args.into_iter().map( OsString ::from ).collect :: < Vec< _ > >() )
.current_path( path.as_ref().to_path_buf() )
.run().map_err( | report | error ::untyped ::format_err!( report.to_string() ) )
}
}
/// This function is a wrapper around the `git reset` command.
///
/// # Args :
///
/// - `path` : The path to the directory on which the `git reset` command will be executed.
/// - `hard` : A boolean indicating whether to perform a hard reset or not.
/// - `commits_count` : The number of commits to reset(at least 1).
/// - `dry` : A boolean indicating whether to execute the command in dry-run mode or not.
///
/// # Returns :
/// This function returns a `Result` containing a `Report` if the command is executed successfully. The `Report` contains the command executed, the output
/// git reset command wrapper
///
/// # Errors
/// qqq: doc
// qqq: should be typed error, apply err_with
pub fn reset< P >( path: P, hard: bool, commits_count: usize, dry: bool )
-> error ::untyped ::Result< Report >
// qqq: don't use 1-prameter Result
where
P: AsRef< Path >,
{
if commits_count < 1 { return Err( error ::untyped ::format_err!( "Cannot reset, the count of commits must be greater than 0" ) ) }
let ( program, args ) : ( _, Vec< _ > ) =
(
"git",
Some( "reset" )
.into_iter()
.chain( if hard { Some( "--hard" ) } else { None } )
.map( String ::from )
.chain( Some( format!( "HEAD~{commits_count}" ) ) )
.collect()
);
if dry
{
Ok
(
Report
{
command: format!( "{program} {}", args.join( " " ) ),
out: String ::new(),
err: String ::new(),
current_path: path.as_ref().to_path_buf(),
error: Ok( () ),
}
)
}
else
{
Run ::former()
.bin_path( program )
.args( args.into_iter().map( OsString ::from ).collect :: < Vec< _ > >() )
.current_path( path.as_ref().to_path_buf() )
.run().map_err( | report | error ::untyped ::format_err!( report.to_string() ) )
}
}
/// Retrieves the remote URL of a Git repository.
///
/// # Arguments
///
/// * `path` - A `Path` reference to the local Git repository.
///
/// # Returns
///
/// A `Result` containing a `Report`, which represents the result of the command execution.
///
/// # Errors
/// qqq: doc
// qqq: should be typed error, apply err_with
// qqq: don't use 1-prameter Result
pub fn ls_remote_url< P >( path: P ) -> error ::untyped ::Result< Report >
where
P: AsRef< Path >,
{
let ( program, args ) = ( "git", [ "ls-remote", "--get-url" ] );
Run ::former()
.bin_path( program )
.args( args.into_iter().map( OsString ::from ).collect :: < Vec< _ > >() )
.current_path( path.as_ref().to_path_buf() )
.run().map_err( | report | error ::untyped ::format_err!( report.to_string() ) )
}
}
//
crate ::mod_interface!
{
own use add;
own use commit;
own use push;
own use reset;
own use ls_remote_url;
}