jj-lib 0.40.0

Library for Jujutsu - an experimental version control system
Documentation
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
// Copyright 2025 The Jujutsu Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! Name types for commit references.
//!
//! Name types can be constructed from a string:
//! ```
//! # use jj_lib::ref_name::*;
//! let _: RefNameBuf = "main".into();
//! let _: &RemoteName = "origin".as_ref();
//! ```
//!
//! However, they cannot be converted to other name types:
//! ```compile_fail
//! # use jj_lib::ref_name::*;
//! let _: RefNameBuf = RemoteName::new("origin").into();
//! ```
//! ```compile_fail
//! # use jj_lib::ref_name::*;
//! let _: &RemoteName = RefName::new("main").as_ref();
//! ```

use std::borrow::Borrow;
use std::fmt;
use std::fmt::Display;
use std::ops::Deref;

use ref_cast::RefCastCustom;
use ref_cast::ref_cast_custom;

use crate::content_hash::ContentHash;
use crate::revset;

/// Owned Git ref name in fully-qualified form (e.g. `refs/heads/main`.)
///
/// Use `.as_str()` or `.as_symbol()` for displaying. Other than that, this can
/// be considered an immutable `String`.
// Eq, Hash, and Ord must be compatible with GitRefName.
#[derive(Clone, ContentHash, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct GitRefNameBuf(String);

/// Borrowed Git ref name in fully-qualified form (e.g. `refs/heads/main`.)
///
/// Use `.as_str()` or `.as_symbol()` for displaying. Other than that, this can
/// be considered an immutable `str`.
#[derive(ContentHash, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, RefCastCustom)]
#[repr(transparent)]
pub struct GitRefName(str);

/// Owned local (or local part of remote) bookmark or tag name.
///
/// Use `.as_str()` or `.as_symbol()` for displaying. Other than that, this can
/// be considered an immutable `String`.
// Eq, Hash, and Ord must be compatible with RefName.
#[derive(Clone, ContentHash, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct RefNameBuf(String);

/// Borrowed local (or local part of remote) bookmark or tag name.
///
/// Use `.as_str()` or `.as_symbol()` for displaying. Other than that, this can
/// be considered an immutable `str`.
#[derive(ContentHash, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, RefCastCustom)]
#[repr(transparent)]
pub struct RefName(str);

/// Owned remote name.
///
/// Use `.as_str()` or `.as_symbol()` for displaying. Other than that, this can
/// be considered an immutable `String`.
// Eq, Hash, and Ord must be compatible with RemoteName.
#[derive(Clone, ContentHash, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct RemoteNameBuf(String);

/// Borrowed remote name.
///
/// Use `.as_str()` or `.as_symbol()` for displaying. Other than that, this can
/// be considered an immutable `str`.
#[derive(ContentHash, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, RefCastCustom)]
#[repr(transparent)]
pub struct RemoteName(str);

/// Owned workspace name.
///
/// Use `.as_str()` or `.as_symbol()` for displaying. Other than that, this can
/// be considered an immutable `String`.
// Eq, Hash, and Ord must be compatible with WorkspaceName.
#[derive(Clone, ContentHash, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, serde::Serialize)]
#[serde(transparent)]
pub struct WorkspaceNameBuf(String);

/// Borrowed workspace name.
///
/// Use `.as_str()` or `.as_symbol()` for displaying. Other than that, this can
/// be considered an immutable `str`.
#[derive(
    ContentHash, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, RefCastCustom, serde::Serialize,
)]
#[serde(transparent)]
#[repr(transparent)]
pub struct WorkspaceName(str);

macro_rules! impl_partial_eq {
    ($borrowed_ty:ty, $lhs:ty, $rhs:ty) => {
        impl PartialEq<$rhs> for $lhs {
            fn eq(&self, other: &$rhs) -> bool {
                <$borrowed_ty as PartialEq>::eq(self, other)
            }
        }

        impl PartialEq<$lhs> for $rhs {
            fn eq(&self, other: &$lhs) -> bool {
                <$borrowed_ty as PartialEq>::eq(self, other)
            }
        }
    };
}

macro_rules! impl_partial_eq_str {
    ($borrowed_ty:ty, $lhs:ty, $rhs:ty) => {
        impl PartialEq<$rhs> for $lhs {
            fn eq(&self, other: &$rhs) -> bool {
                <$borrowed_ty as PartialEq>::eq(self, other.as_ref())
            }
        }

        impl PartialEq<$lhs> for $rhs {
            fn eq(&self, other: &$lhs) -> bool {
                <$borrowed_ty as PartialEq>::eq(self.as_ref(), other)
            }
        }
    };
}

macro_rules! impl_name_type {
    ($owned_ty:ident, $borrowed_ty:ident) => {
        impl $owned_ty {
            /// Consumes this and returns the underlying string.
            pub fn into_string(self) -> String {
                self.0
            }
        }

        impl $borrowed_ty {
            /// Wraps string name.
            #[ref_cast_custom]
            pub const fn new(name: &str) -> &Self;

            /// Returns the underlying string.
            pub const fn as_str(&self) -> &str {
                &self.0
            }

            /// Converts to symbol for displaying.
            pub fn as_symbol(&self) -> &RefSymbol {
                RefSymbol::new(&self.0)
            }
        }

        // Owned type can be constructed from (weakly-typed) string:

        impl From<String> for $owned_ty {
            fn from(value: String) -> Self {
                $owned_ty(value)
            }
        }

        impl From<&String> for $owned_ty {
            fn from(value: &String) -> Self {
                $owned_ty(value.clone())
            }
        }

        impl From<&str> for $owned_ty {
            fn from(value: &str) -> Self {
                $owned_ty(value.to_owned())
            }
        }

        // Owned type can be constructed from borrowed type:

        impl From<&$owned_ty> for $owned_ty {
            fn from(value: &$owned_ty) -> Self {
                value.clone()
            }
        }

        impl From<&$borrowed_ty> for $owned_ty {
            fn from(value: &$borrowed_ty) -> Self {
                value.to_owned()
            }
        }

        // Borrowed type can be constructed from (weakly-typed) string:

        impl AsRef<$borrowed_ty> for String {
            fn as_ref(&self) -> &$borrowed_ty {
                $borrowed_ty::new(self)
            }
        }

        impl AsRef<$borrowed_ty> for str {
            fn as_ref(&self) -> &$borrowed_ty {
                $borrowed_ty::new(self)
            }
        }

        // Types can be converted to (weakly-typed) string:

        impl From<$owned_ty> for String {
            fn from(value: $owned_ty) -> Self {
                value.0
            }
        }

        impl From<&$owned_ty> for String {
            fn from(value: &$owned_ty) -> Self {
                value.0.clone()
            }
        }

        impl From<&$borrowed_ty> for String {
            fn from(value: &$borrowed_ty) -> Self {
                value.0.to_owned()
            }
        }

        impl AsRef<str> for $owned_ty {
            fn as_ref(&self) -> &str {
                self.as_str()
            }
        }

        impl AsRef<str> for $borrowed_ty {
            fn as_ref(&self) -> &str {
                self.as_str()
            }
        }

        // Types can be converted to borrowed type, and back to owned type:

        impl AsRef<$borrowed_ty> for $owned_ty {
            fn as_ref(&self) -> &$borrowed_ty {
                self
            }
        }

        impl AsRef<$borrowed_ty> for $borrowed_ty {
            fn as_ref(&self) -> &$borrowed_ty {
                self
            }
        }

        impl Borrow<$borrowed_ty> for $owned_ty {
            fn borrow(&self) -> &$borrowed_ty {
                self
            }
        }

        impl Deref for $owned_ty {
            type Target = $borrowed_ty;

            fn deref(&self) -> &Self::Target {
                $borrowed_ty::new(&self.0)
            }
        }

        impl ToOwned for $borrowed_ty {
            type Owned = $owned_ty;

            fn to_owned(&self) -> Self::Owned {
                $owned_ty(self.0.to_owned())
            }
        }

        // Owned and borrowed types can be compared:
        impl_partial_eq!($borrowed_ty, $owned_ty, $borrowed_ty);
        impl_partial_eq!($borrowed_ty, $owned_ty, &$borrowed_ty);

        // Types can be compared with (weakly-typed) string:
        impl_partial_eq_str!($borrowed_ty, $owned_ty, str);
        impl_partial_eq_str!($borrowed_ty, $owned_ty, &str);
        impl_partial_eq_str!($borrowed_ty, $owned_ty, String);
        impl_partial_eq_str!($borrowed_ty, $borrowed_ty, str);
        impl_partial_eq_str!($borrowed_ty, $borrowed_ty, &str);
        impl_partial_eq_str!($borrowed_ty, $borrowed_ty, String);
        impl_partial_eq_str!($borrowed_ty, &$borrowed_ty, str);
        impl_partial_eq_str!($borrowed_ty, &$borrowed_ty, String);
    };
}

impl_name_type!(GitRefNameBuf, GitRefName);
// TODO: split RefName into BookmarkName and TagName? That will make sense at
// repo/view API surface, but we'll need generic RemoteRefSymbol type, etc.
impl_name_type!(RefNameBuf, RefName);
impl_name_type!(RemoteNameBuf, RemoteName);
impl_name_type!(WorkspaceNameBuf, WorkspaceName);

impl RefName {
    /// Constructs a remote symbol with this local name.
    pub fn to_remote_symbol<'a>(&'a self, remote: &'a RemoteName) -> RemoteRefSymbol<'a> {
        RemoteRefSymbol { name: self, remote }
    }
}

impl WorkspaceName {
    /// Default workspace name.
    pub const DEFAULT: &Self = Self::new("default");
}

/// Symbol for displaying.
///
/// This type can be displayed with quoting and escaping if necessary.
#[derive(Debug, RefCastCustom)]
#[repr(transparent)]
pub struct RefSymbol(str);

impl RefSymbol {
    /// Wraps string name.
    #[ref_cast_custom]
    const fn new(name: &str) -> &Self;
}

impl Display for RefSymbol {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.pad(&revset::format_symbol(&self.0))
    }
}

/// Owned remote bookmark or tag name.
///
/// This type can be displayed in `{name}@{remote}` form, with quoting and
/// escaping if necessary.
#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct RemoteRefSymbolBuf {
    /// Local name.
    pub name: RefNameBuf,
    /// Remote name.
    pub remote: RemoteNameBuf,
}

impl RemoteRefSymbolBuf {
    /// Converts to reference type.
    pub fn as_ref(&self) -> RemoteRefSymbol<'_> {
        RemoteRefSymbol {
            name: &self.name,
            remote: &self.remote,
        }
    }
}

/// Borrowed remote bookmark or tag name.
///
/// This type can be displayed in `{name}@{remote}` form, with quoting and
/// escaping if necessary.
#[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct RemoteRefSymbol<'a> {
    /// Local name.
    pub name: &'a RefName,
    /// Remote name.
    pub remote: &'a RemoteName,
}

impl RemoteRefSymbol<'_> {
    /// Converts to owned type.
    pub fn to_owned(self) -> RemoteRefSymbolBuf {
        RemoteRefSymbolBuf {
            name: self.name.to_owned(),
            remote: self.remote.to_owned(),
        }
    }
}

impl From<RemoteRefSymbol<'_>> for RemoteRefSymbolBuf {
    fn from(value: RemoteRefSymbol<'_>) -> Self {
        value.to_owned()
    }
}

impl PartialEq<RemoteRefSymbol<'_>> for RemoteRefSymbolBuf {
    fn eq(&self, other: &RemoteRefSymbol) -> bool {
        self.as_ref() == *other
    }
}

impl PartialEq<RemoteRefSymbol<'_>> for &RemoteRefSymbolBuf {
    fn eq(&self, other: &RemoteRefSymbol) -> bool {
        self.as_ref() == *other
    }
}

impl PartialEq<RemoteRefSymbolBuf> for RemoteRefSymbol<'_> {
    fn eq(&self, other: &RemoteRefSymbolBuf) -> bool {
        *self == other.as_ref()
    }
}

impl PartialEq<&RemoteRefSymbolBuf> for RemoteRefSymbol<'_> {
    fn eq(&self, other: &&RemoteRefSymbolBuf) -> bool {
        *self == other.as_ref()
    }
}

impl Display for RemoteRefSymbolBuf {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        Display::fmt(&self.as_ref(), f)
    }
}

impl Display for RemoteRefSymbol<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let RemoteRefSymbol { name, remote } = self;
        f.pad(&revset::format_remote_symbol(&name.0, &remote.0))
    }
}