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 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
use bstr::BStr;
use std::{
borrow::Cow,
collections::{HashMap, VecDeque},
convert::TryFrom,
fmt::Display,
path::{Path, PathBuf},
};
use crate::{
file::{
section::{MutableSection, SectionBody},
value::{EntryData, MutableMultiValue, MutableValue},
Index, Size,
},
lookup, parser,
parser::{
parse_from_bytes, parse_from_path, parse_from_str, Error, Event, Key, ParsedSectionHeader, Parser,
SectionHeaderName,
},
value, values,
};
/// The section ID is a monotonically increasing ID used to refer to sections.
/// This value does not imply any ordering between sections, as new sections
/// with higher section IDs may be in between lower ID sections.
///
/// We need to use a section id because `git-config` permits sections with
/// identical names. As a result, we can't simply use the section name as a key
/// in a map.
///
/// This id guaranteed to be unique, but not guaranteed to be compact. In other
/// words, it's possible that a section may have an ID of 3 but the next section
/// has an ID of 5.
#[derive(PartialEq, Eq, Hash, Copy, Clone, PartialOrd, Ord, Debug)]
pub(super) struct SectionId(usize);
/// Internal data structure for the section id lookup tree used by
/// [`GitConfig`]. Note that order in Vec matters as it represents the order
/// of section ids with the matched section and name, and is used for precedence
/// management.
#[derive(PartialEq, Eq, Clone, Debug)]
pub(super) enum LookupTreeNode<'a> {
Terminal(Vec<SectionId>),
NonTerminal(HashMap<Cow<'a, str>, Vec<SectionId>>),
}
/// High level `git-config` reader and writer.
///
/// This is the full-featured implementation that can deserialize, serialize,
/// and edit `git-config` files without loss of whitespace or comments. As a
/// result, it's lot more complex than it's read-only variant,
/// [`ResolvedGitConfig`] that exposes a [`HashMap`]-like interface. Users that
/// only need to read `git-config` files should use that instead.
///
/// Internally, this uses various acceleration data structures to improve
/// performance of the typical usage behavior of many lookups and relatively
/// fewer insertions.
///
/// # Multivar behavior
///
/// `git` is flexible enough to allow users to set a key multiple times in
/// any number of identically named sections. When this is the case, the key
/// is known as a "multivar". In this case, `raw_value` follows the
/// "last one wins" approach that `git-config` internally uses for multivar
/// resolution.
///
/// Concretely, the following config has a multivar, `a`, with the values
/// of `b`, `c`, and `d`, while `e` is a single variable with the value
/// `f g h`.
///
/// ```text
/// [core]
/// a = b
/// a = c
/// [core]
/// a = d
/// e = f g h
/// ```
///
/// Calling methods that fetch or set only one value (such as [`raw_value`])
/// key `a` with the above config will fetch `d` or replace `d`, since the last
/// valid config key/value pair is `a = d`:
///
/// ```
/// # use git_config::file::GitConfig;
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// # let git_config = GitConfig::try_from("[core]a=b\n[core]\na=c\na=d").unwrap();
/// assert_eq!(git_config.raw_value("core", None, "a").unwrap(), Cow::Borrowed("d".as_bytes()));
/// ```
///
/// Consider the `multi` variants of the methods instead, if you want to work
/// with all values instead.
///
/// [`ResolvedGitConfig`]: crate::file::ResolvedGitConfig
/// [`raw_value`]: Self::raw_value
#[derive(PartialEq, Eq, Clone, Debug, Default)]
pub struct GitConfig<'event> {
/// The list of events that occur before an actual section. Since a
/// `git-config` file prohibits global values, this vec is limited to only
/// comment, newline, and whitespace events.
frontmatter_events: SectionBody<'event>,
/// Section name and subsection name to section id lookup tree. This is
/// effectively a n-tree (opposed to a binary tree) that can have a height
/// of at most three (including an implicit root node).
pub(super) section_lookup_tree: HashMap<SectionHeaderName<'event>, Vec<LookupTreeNode<'event>>>,
/// SectionId to section mapping. The value of this HashMap contains actual
/// events.
///
/// This indirection with the SectionId as the key is critical to flexibly
/// supporting `git-config` sections, as duplicated keys are permitted.
pub(super) sections: HashMap<SectionId, SectionBody<'event>>,
section_headers: HashMap<SectionId, ParsedSectionHeader<'event>>,
/// Internal monotonically increasing counter for section ids.
section_id_counter: usize,
/// Section order for output ordering.
section_order: VecDeque<SectionId>,
}
pub mod from_paths {
use std::borrow::Cow;
use crate::{parser, values::path::interpolate};
/// The error returned by [`GitConfig::from_paths()`][super::GitConfig::from_paths()] and [`GitConfig::from_env_paths()`][super::GitConfig::from_env_paths()].
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error(transparent)]
ParserOrIoError(#[from] parser::ParserOrIoError<'static>),
#[error(transparent)]
Interpolate(#[from] interpolate::Error),
#[error("The maximum allowed length {} of the file include chain built by following nested includes is exceeded", .max_depth)]
IncludeDepthExceeded { max_depth: u8 },
#[error("Include paths from environment variables must not be relative")]
MissingConfigPath,
}
/// Options when loading git config using [`GitConfig::from_paths()`][super::GitConfig::from_paths()].
#[derive(Clone)]
pub struct Options<'a> {
/// The location where gitoxide or git is installed
pub git_install_dir: Option<Cow<'a, std::path::Path>>,
/// The maximum allowed length of the file include chain built by following nested includes where base level is depth = 0.
pub max_depth: u8,
/// When max depth is exceeded while following nested included, return an error if true or silently stop following
/// includes.
///
/// Setting this value to false allows to read configuration with cycles, which otherwise always results in an error.
pub error_on_max_depth_exceeded: bool,
}
impl<'a> Default for Options<'a> {
fn default() -> Self {
Options {
git_install_dir: None,
max_depth: 10,
error_on_max_depth_exceeded: true,
}
}
}
}
pub mod from_env {
use super::from_paths;
use crate::values::path::interpolate;
/// Represents the errors that may occur when calling [`GitConfig::from_env`][crate::file::GitConfig::from_env()].
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
#[error("GIT_CONFIG_COUNT was not a positive integer: {}", .input)]
ParseError { input: String },
#[error("GIT_CONFIG_KEY_{} was not set", .key_id)]
InvalidKeyId { key_id: usize },
#[error("GIT_CONFIG_KEY_{} was set to an invalid value: {}", .key_id, .key_val)]
InvalidKeyValue { key_id: usize, key_val: String },
#[error("GIT_CONFIG_VALUE_{} was not set", .value_id)]
InvalidValueId { value_id: usize },
#[error(transparent)]
PathInterpolationError(#[from] interpolate::Error),
#[error(transparent)]
FromPathsError(#[from] from_paths::Error),
}
}
impl<'event> GitConfig<'event> {
/// Constructs an empty `git-config` file.
#[must_use]
pub fn new() -> Self {
Self::default()
}
/// Constructs a `git-config` file from the provided path.
///
/// # Errors
///
/// Returns an error if there was an IO error or if the file wasn't a valid
/// git-config file.
pub fn open<P: AsRef<Path>>(path: P) -> Result<Self, parser::ParserOrIoError<'static>> {
parse_from_path(path).map(Self::from)
}
/// Constructs a `git-config` file from the provided paths in the order provided.
/// This is neither zero-copy nor zero-alloc.
///
/// # Errors
///
/// Returns an error if there was an IO error or if a file wasn't a valid
/// git-config file.
///
/// [`git-config`'s documentation]: https://git-scm.com/docs/git-config#Documentation/git-config.txt-FILES
pub fn from_paths(paths: Vec<PathBuf>, options: &from_paths::Options) -> Result<Self, from_paths::Error> {
let mut target = Self::new();
for path in paths {
let mut config = Self::open(&path)?;
config.resolve_includes(Some(&path), options)?;
target.append(config);
}
Ok(target)
}
// TODO: add note indicating that probably a lot if not all information about the original files is currently lost,
// so can't be written back. This will probably change a lot during refactor, so it's not too important now.
fn append(&mut self, mut other: Self) {
let mut section_indices: Vec<_> = other.section_headers.keys().cloned().collect();
// header keys are numeric and ascend in insertion order, hence sorting them gives the order
// in which they appear in the config file.
section_indices.sort();
for section_index in section_indices {
let section_header = other.section_headers.remove(§ion_index).expect("present");
self.push_section(
section_header.name.0,
section_header.subsection_name,
other.sections.remove(§ion_index).expect("present"),
);
}
}
pub(crate) fn resolve_includes(
&mut self,
config_path: Option<&std::path::Path>,
options: &from_paths::Options,
) -> Result<(), from_paths::Error> {
fn resolve_includes_recursive(
target_config: &mut GitConfig,
target_config_path: Option<&Path>,
depth: u8,
options: &from_paths::Options,
) -> Result<(), from_paths::Error> {
if depth == options.max_depth {
return if options.error_on_max_depth_exceeded {
Err(from_paths::Error::IncludeDepthExceeded {
max_depth: options.max_depth,
})
} else {
Ok(())
};
}
let mut paths_to_include = Vec::new();
for path in target_config
.multi_value::<values::Path>("include", None, "path")
.unwrap_or_default()
{
let path = path.interpolate(options.git_install_dir.as_deref())?;
let path: PathBuf = if path.is_relative() {
target_config_path
.ok_or(from_paths::Error::MissingConfigPath)?
.parent()
.expect("path is a config file which naturally lives in a directory")
.join(path)
} else {
path.into()
};
if path.is_file() {
paths_to_include.push(path);
}
}
for config_path in paths_to_include {
let mut include_config = GitConfig::open(&config_path)?;
resolve_includes_recursive(&mut include_config, Some(&config_path), depth + 1, options)?;
target_config.append(include_config);
}
Ok(())
}
resolve_includes_recursive(self, config_path, 0, options)
}
/// Constructs a `git-config` from the default cascading sequence.
/// This is neither zero-alloc nor zero-copy.
///
/// See <https://git-scm.com/docs/git-config#FILES> for details.
pub fn from_env_paths(options: &from_paths::Options) -> Result<Self, from_paths::Error> {
use std::env;
let mut paths = vec![];
if env::var("GIT_CONFIG_NO_SYSTEM").is_err() {
if let Ok(git_config_system) = env::var("GIT_CONFIG_SYSTEM") {
paths.push(PathBuf::from(git_config_system))
} else {
// In git the fallback is set to a build time macro which defaults to /etc/gitconfig
paths.push(PathBuf::from("/etc/gitconfig"));
}
}
if let Ok(git_config_global) = env::var("GIT_CONFIG_GLOBAL") {
paths.push(PathBuf::from(git_config_global));
} else {
// Divergence from git-config(1)
// These two are supposed to share the same scope and override
// rather than append according to git-config(1) documentation.
if let Ok(xdg_config_home) = env::var("XDG_CONFIG_HOME") {
paths.push(PathBuf::from(xdg_config_home).join("git/config"));
} else if let Ok(home) = env::var("HOME") {
paths.push(PathBuf::from(home).join(".config/git/config"));
}
if let Ok(home) = env::var("HOME") {
paths.push(PathBuf::from(home).join(".gitconfig"));
}
}
if let Ok(git_dir) = env::var("GIT_DIR") {
paths.push(PathBuf::from(git_dir).join("config"));
}
Self::from_paths(paths, options)
}
/// Generates a config from the environment variables. This is neither
/// zero-copy nor zero-alloc. See [`git-config`'s documentation] on
/// environment variable for more information.
///
/// # Errors
///
/// Returns an error if `GIT_CONFIG_COUNT` set and is not a number, or if
/// there was an invalid key value pair.
///
/// [`git-config`'s documentation]: https://git-scm.com/docs/git-config#Documentation/git-config.txt-GITCONFIGCOUNT
pub fn from_env(options: &from_paths::Options) -> Result<Option<Self>, from_env::Error> {
use std::env;
let count: usize = match env::var("GIT_CONFIG_COUNT") {
Ok(v) => v.parse().map_err(|_| from_env::Error::ParseError { input: v })?,
Err(_) => return Ok(None),
};
let mut config = Self::new();
for i in 0..count {
let key =
env::var(format!("GIT_CONFIG_KEY_{}", i)).map_err(|_| from_env::Error::InvalidKeyId { key_id: i })?;
let value = env::var(format!("GIT_CONFIG_VALUE_{}", i))
.map_err(|_| from_env::Error::InvalidValueId { value_id: i })?;
if let Some((section_name, maybe_subsection)) = key.split_once('.') {
let (subsection, key) = if let Some((subsection, key)) = maybe_subsection.rsplit_once('.') {
(Some(subsection), key)
} else {
(None, maybe_subsection)
};
let mut section = if let Ok(section) = config.section_mut(section_name, subsection) {
section
} else {
// Need to have config own the section and subsection names
// else they get dropped at the end of the loop.
config.new_section(
section_name.to_string(),
subsection.map(|subsection| Cow::Owned(subsection.to_string())),
)
};
section.push(
Cow::<str>::Owned(key.to_string()).into(),
Cow::Owned(value.into_bytes()),
);
} else {
return Err(from_env::Error::InvalidKeyValue {
key_id: i,
key_val: key.to_string(),
});
}
}
// This occurs when `GIT_CONFIG_COUNT` is set to zero.
if config.is_empty() {
Ok(None)
} else {
config.resolve_includes(None, options)?;
Ok(Some(config))
}
}
/// Returns an interpreted value given a section, an optional subsection and
/// key.
///
/// It's recommended to use one of the values in the [`values`] module as
/// the conversion is already implemented, but this function is flexible and
/// will accept any type that implements [`TryFrom<&[u8]>`][`TryFrom`].
///
/// Consider [`Self::multi_value`] if you want to get all values of a
/// multivar instead.
///
/// # Examples
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use git_config::values::{Integer, Boolean};
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// let config = r#"
/// [core]
/// a = 10k
/// c
/// "#;
/// let git_config = GitConfig::try_from(config)?;
/// // You can either use the turbofish to determine the type...
/// let a_value = git_config.value::<Integer>("core", None, "a")?;
/// // ... or explicitly declare the type to avoid the turbofish
/// let c_value: Boolean = git_config.value("core", None, "c")?;
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Errors
///
/// This function will return an error if the key is not in the requested
/// section and subsection, if the section and subsection do not exist, or
/// if there was an issue converting the type into the requested variant.
///
/// [`values`]: crate::values
/// [`TryFrom`]: std::convert::TryFrom
pub fn value<T: TryFrom<Cow<'event, [u8]>>>(
&'event self,
section_name: &str,
subsection_name: Option<&str>,
key: &str,
) -> Result<T, lookup::Error<T::Error>> {
T::try_from(self.raw_value(section_name, subsection_name, key)?).map_err(lookup::Error::FailedConversion)
}
/// Like [`value()`][GitConfig::value()], but returning an `Option` if the value wasn't found.
pub fn try_value<T: TryFrom<Cow<'event, [u8]>>>(
&'event self,
section_name: &str,
subsection_name: Option<&str>,
key: &str,
) -> Option<Result<T, T::Error>> {
self.raw_value(section_name, subsection_name, key).ok().map(T::try_from)
}
/// Like [`value()`][GitConfig::value()], but returning an `Option` if the string wasn't found.
///
/// As strings perform no conversions, this will never fail.
pub fn string(
&'event self,
section_name: &str,
subsection_name: Option<&str>,
key: &str,
) -> Option<Cow<'event, BStr>> {
self.raw_value(section_name, subsection_name, key)
.ok()
.map(|v| values::String::from(v).value)
}
/// Like [`value()`][GitConfig::value()], but returning an `Option` if the path wasn't found.
///
/// Note that this path is not vetted and should only point to resources which can't be used
/// to pose a security risk.
///
/// As paths perform no conversions, this will never fail.
// TODO: add `secure_path()` or similar to make use of our knowledge of the trust associated with each configuration
// file, maybe even remove the insecure version to force every caller to ask themselves if the resource can
// be used securely or not.
pub fn path(
&'event self,
section_name: &str,
subsection_name: Option<&str>,
key: &str,
) -> Option<values::Path<'event>> {
self.raw_value(section_name, subsection_name, key)
.ok()
.map(values::Path::from)
}
/// Like [`value()`][GitConfig::value()], but returning an `Option` if the boolean wasn't found.
pub fn boolean(
&'event self,
section_name: &str,
subsection_name: Option<&str>,
key: &str,
) -> Option<Result<bool, value::parse::Error>> {
self.raw_value(section_name, subsection_name, key)
.ok()
.map(|v| values::Boolean::try_from(v).map(|b| b.to_bool()))
}
/// Returns all interpreted values given a section, an optional subsection
/// and key.
///
/// It's recommended to use one of the values in the [`values`] module as
/// the conversion is already implemented, but this function is flexible and
/// will accept any type that implements [`TryFrom<&[u8]>`][`TryFrom`].
///
/// Consider [`Self::value`] if you want to get a single value
/// (following last-one-wins resolution) instead.
///
/// # Examples
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use git_config::values::{Integer, Bytes, Boolean, TrueVariant};
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// let config = r#"
/// [core]
/// a = true
/// c = g
/// [core]
/// a
/// a = false
/// "#;
/// let git_config = GitConfig::try_from(config).unwrap();
/// // You can either use the turbofish to determine the type...
/// let a_value = git_config.multi_value::<Boolean>("core", None, "a")?;
/// assert_eq!(
/// a_value,
/// vec![
/// Boolean::True(TrueVariant::Explicit(Cow::Borrowed("true"))),
/// Boolean::True(TrueVariant::Implicit),
/// Boolean::False(Cow::Borrowed("false")),
/// ]
/// );
/// // ... or explicitly declare the type to avoid the turbofish
/// let c_value: Vec<Bytes> = git_config.multi_value("core", None, "c")?;
/// assert_eq!(c_value, vec![Bytes { value: Cow::Borrowed(b"g") }]);
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Errors
///
/// This function will return an error if the key is not in the requested
/// section and subsection, if the section and subsection do not exist, or
/// if there was an issue converting the type into the requested variant.
///
/// [`values`]: crate::values
/// [`TryFrom`]: std::convert::TryFrom
pub fn multi_value<'lookup, T: TryFrom<Cow<'event, [u8]>>>(
&'event self,
section_name: &'lookup str,
subsection_name: Option<&'lookup str>,
key: &'lookup str,
) -> Result<Vec<T>, lookup::Error<T::Error>> {
self.raw_multi_value(section_name, subsection_name, key)?
.into_iter()
.map(T::try_from)
.collect::<Result<Vec<_>, _>>()
.map_err(lookup::Error::FailedConversion)
}
/// Returns an immutable section reference.
///
/// # Errors
///
/// This function will return an error if the section and optional
/// subsection do not exist.
pub fn section<'lookup>(
&mut self,
section_name: &'lookup str,
subsection_name: Option<&'lookup str>,
) -> Result<&SectionBody<'event>, lookup::existing::Error> {
let section_ids = self.section_ids_by_name_and_subname(section_name, subsection_name)?;
let id = section_ids.last().expect("BUG: Section lookup vec was empty");
Ok(self.sections.get(id).expect("BUG: Section did not have id from lookup"))
}
/// Returns an mutable section reference.
///
/// # Errors
///
/// This function will return an error if the section and optional
/// subsection do not exist.
pub fn section_mut<'lookup>(
&mut self,
section_name: &'lookup str,
subsection_name: Option<&'lookup str>,
) -> Result<MutableSection<'_, 'event>, lookup::existing::Error> {
let section_ids = self.section_ids_by_name_and_subname(section_name, subsection_name)?;
let id = section_ids.last().expect("BUG: Section lookup vec was empty");
Ok(MutableSection::new(
self.sections
.get_mut(id)
.expect("BUG: Section did not have id from lookup"),
))
}
/// Gets all sections that match the provided name, ignoring any subsections.
///
/// # Examples
///
/// Provided the following config:
///
/// ```text
/// [core]
/// a = b
/// [core ""]
/// c = d
/// [core "apple"]
/// e = f
/// ```
///
/// Calling this method will yield all sections:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use git_config::values::{Integer, Boolean, TrueVariant};
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// let config = r#"
/// [core]
/// a = b
/// [core ""]
/// c = d
/// [core "apple"]
/// e = f
/// "#;
/// let git_config = GitConfig::try_from(config).unwrap();
/// assert_eq!(git_config.sections_by_name("core").len(), 3);
/// ```
#[must_use]
pub fn sections_by_name<'lookup>(&self, section_name: &'lookup str) -> Vec<&SectionBody<'event>> {
self.section_ids_by_name(section_name)
.unwrap_or_default()
.into_iter()
.map(|id| {
self.sections
.get(&id)
.expect("section doesn't have id from from lookup")
})
.collect()
}
/// Get all sections that match the `section_name`, returning all matching section header along with their body.
///
/// An empty `Vec` is returned if there is no section with `section_name`.
///
/// # Example
///
/// Provided the following config:
/// ```plain
/// [url "ssh://git@github.com/"]
/// insteadOf = https://github.com/
/// [url "ssh://git@bitbucket.org"]
/// insteadOf = https://bitbucket.org/
/// ```
/// Calling this method will yield all section bodies and their header:
///
/// ```rust
/// use git_config::file::{GitConfig};
/// use git_config::parser::Key;
/// use std::borrow::Cow;
/// use std::convert::TryFrom;
/// use nom::AsBytes;
///
/// let input = r#"
/// [url "ssh://git@github.com/"]
/// insteadOf = https://github.com/
/// [url "ssh://git@bitbucket.org"]
/// insteadOf = https://bitbucket.org/
/// "#;
/// let config = GitConfig::try_from(input).unwrap();
/// let url = config.sections_by_name_with_header("url");
/// assert_eq!(url.len(), 2);
///
/// for (i, (header, body)) in url.iter().enumerate() {
/// let url = header.subsection_name.as_ref();
/// let instead_of = body.value(&Key::from("insteadOf"));
///
/// // todo(unstable-order): the order is not always the same, so `i` cannot be used here
/// if instead_of.as_ref().unwrap().as_ref().as_bytes().eq("https://github.com/".as_bytes()) {
/// assert_eq!(instead_of.unwrap().as_ref(), "https://github.com/".as_bytes());
/// assert_eq!(url.unwrap().as_ref(), "ssh://git@github.com/");
/// } else {
/// assert_eq!(instead_of.unwrap().as_ref(), "https://bitbucket.org/".as_bytes());
/// assert_eq!(url.unwrap().as_ref(), "ssh://git@bitbucket.org");
/// }
/// }
/// ```
pub fn sections_by_name_with_header<'lookup>(
&self,
section_name: &'lookup str,
) -> Vec<(&ParsedSectionHeader<'event>, &SectionBody<'event>)> {
self.section_ids_by_name(section_name)
.unwrap_or_default()
.into_iter()
.map(|id| {
(
self.section_headers
.get(&id)
.expect("section doesn't have a section header??"),
self.sections
.get(&id)
.expect("section doesn't have id from from lookup"),
)
})
.collect()
}
/// Adds a new section to config. If a subsection name was provided, then
/// the generated header will use the modern subsection syntax. Returns a
/// reference to the new section for immediate editing.
///
/// # Examples
///
/// Creating a new empty section:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use std::convert::TryFrom;
/// let mut git_config = GitConfig::new();
/// let _section = git_config.new_section("hello", Some("world".into()));
/// assert_eq!(git_config.to_string(), "[hello \"world\"]\n");
/// ```
///
/// Creating a new empty section and adding values to it:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use std::convert::TryFrom;
/// let mut git_config = GitConfig::new();
/// let mut section = git_config.new_section("hello", Some("world".into()));
/// section.push("a".into(), "b".as_bytes().into());
/// assert_eq!(git_config.to_string(), "[hello \"world\"]\n a=b\n");
/// let _section = git_config.new_section("core", None);
/// assert_eq!(git_config.to_string(), "[hello \"world\"]\n a=b\n[core]\n");
/// ```
pub fn new_section(
&mut self,
section_name: impl Into<Cow<'event, str>>,
subsection_name: impl Into<Option<Cow<'event, str>>>,
) -> MutableSection<'_, 'event> {
let mut section = self.push_section(section_name, subsection_name, SectionBody::new());
section.push_newline();
section
}
/// Removes the section, returning the events it had, if any. If multiple
/// sections have the same name, then the last one is returned. Note that
/// later sections with the same name have precedent over earlier ones.
///
/// # Examples
///
/// Creating and removing a section:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use std::convert::TryFrom;
/// let mut git_config = GitConfig::try_from(
/// r#"[hello "world"]
/// some-value = 4
/// "#).unwrap();
///
/// let events = git_config.remove_section("hello", Some("world".into()));
/// assert_eq!(git_config.to_string(), "");
/// ```
///
/// Precedence example for removing sections with the same name:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use std::convert::TryFrom;
/// let mut git_config = GitConfig::try_from(
/// r#"[hello "world"]
/// some-value = 4
/// [hello "world"]
/// some-value = 5
/// "#).unwrap();
///
/// let events = git_config.remove_section("hello", Some("world".into()));
/// assert_eq!(git_config.to_string(), "[hello \"world\"]\n some-value = 4\n");
/// ```
pub fn remove_section<'lookup>(
&mut self,
section_name: &'lookup str,
subsection_name: impl Into<Option<&'lookup str>>,
) -> Option<SectionBody> {
let id = self
.section_ids_by_name_and_subname(section_name, subsection_name.into())
.ok()?
.pop()?;
self.section_order.remove(
self.section_order
.iter()
.position(|v| *v == id)
.expect("Section order does not contain section that we were trying to remove"),
);
self.sections.remove(&id)
}
/// Adds the provided section to the config, returning a mutable reference
/// to it.
pub fn push_section(
&mut self,
section_name: impl Into<Cow<'event, str>>,
subsection_name: impl Into<Option<Cow<'event, str>>>,
section: SectionBody<'event>,
) -> MutableSection<'_, 'event> {
let subsection_name = subsection_name.into();
if subsection_name.is_some() {
self.push_section_internal(
ParsedSectionHeader {
name: SectionHeaderName(section_name.into()),
separator: Some(" ".into()),
subsection_name,
},
section,
)
} else {
self.push_section_internal(
ParsedSectionHeader {
name: SectionHeaderName(section_name.into()),
separator: None,
subsection_name: None,
},
section,
)
}
}
/// Renames a section, modifying the last matching section.
///
/// # Errors
///
/// Returns an error if the lookup doesn't exist
pub fn rename_section<'lookup>(
&mut self,
section_name: &'lookup str,
subsection_name: impl Into<Option<&'lookup str>>,
new_section_name: impl Into<SectionHeaderName<'event>>,
new_subsection_name: impl Into<Option<Cow<'event, str>>>,
) -> Result<(), lookup::existing::Error> {
let id = self.section_ids_by_name_and_subname(section_name, subsection_name.into())?;
let id = id
.last()
.expect("list of sections were empty, which violates invariant");
let header = self
.section_headers
.get_mut(id)
.expect("sections does not have section id from section ids");
header.name = new_section_name.into();
header.subsection_name = new_subsection_name.into();
Ok(())
}
/// Returns the number of entries in the config. This ignores any comments.
/// For example, a config with multiple empty sections will return 0.
#[must_use]
pub fn len(&self) -> usize {
self.sections.values().fold(0, |acc, section| acc + section.len())
}
/// Returns if there are no entries in the config. This will return true
/// if there are only empty sections or comments.
#[must_use]
pub fn is_empty(&self) -> bool {
self.sections.values().all(SectionBody::is_empty)
}
}
/// # Raw value API
///
/// These functions are the raw value API. Instead of returning Rust structures,
/// these functions return bytes which may or may not be owned.
impl<'event> GitConfig<'event> {
/// Returns an uninterpreted value given a section, an optional subsection
/// and key.
///
/// Consider [`Self::raw_multi_value`] if you want to get all values of
/// a multivar instead.
///
/// # Errors
///
/// This function will return an error if the key is not in the requested
/// section and subsection, or if the section and subsection do not exist.
pub fn raw_value<'lookup>(
&self,
section_name: &'lookup str,
subsection_name: Option<&'lookup str>,
key: &'lookup str,
) -> Result<Cow<'_, [u8]>, lookup::existing::Error> {
// Note: cannot wrap around the raw_multi_value method because we need
// to guarantee that the highest section id is used (so that we follow
// the "last one wins" resolution strategy by `git-config`).
let key = Key(key.into());
for section_id in self
.section_ids_by_name_and_subname(section_name, subsection_name)?
.iter()
.rev()
{
if let Some(v) = self
.sections
.get(section_id)
.expect("sections does not have section id from section ids")
.value(&key)
{
return Ok(v.to_vec().into());
}
}
Err(lookup::existing::Error::KeyMissing)
}
/// Returns a mutable reference to an uninterpreted value given a section,
/// an optional subsection and key.
///
/// Consider [`Self::raw_multi_value_mut`] if you want to get mutable
/// references to all values of a multivar instead.
///
/// # Errors
///
/// This function will return an error if the key is not in the requested
/// section and subsection, or if the section and subsection do not exist.
pub fn raw_value_mut<'lookup>(
&mut self,
section_name: &'lookup str,
subsection_name: Option<&'lookup str>,
key: &'lookup str,
) -> Result<MutableValue<'_, 'lookup, 'event>, lookup::existing::Error> {
let section_ids = self.section_ids_by_name_and_subname(section_name, subsection_name)?;
let key = Key(key.into());
for section_id in section_ids.iter().rev() {
let mut size = Size(0);
let mut index = Index(0);
let mut found_key = false;
// todo: iter backwards
for (i, event) in self
.sections
.get(section_id)
.expect("sections does not have section id from section ids")
.as_ref()
.iter()
.enumerate()
{
match event {
Event::Key(event_key) if *event_key == key => {
found_key = true;
size = Size(1);
index = Index(i);
}
Event::Newline(_) | Event::Whitespace(_) | Event::ValueNotDone(_) if found_key => {
size += 1;
}
Event::ValueDone(_) | Event::Value(_) if found_key => {
found_key = false;
size += 1;
}
_ => (),
}
}
if size.0 == 0 {
continue;
}
return Ok(MutableValue::new(
MutableSection::new(
self.sections
.get_mut(section_id)
.expect("sections does not have section id from section ids"),
),
key,
index,
size,
));
}
Err(lookup::existing::Error::KeyMissing)
}
/// Returns all uninterpreted values given a section, an optional subsection
/// and key.
///
/// # Examples
///
/// If you have the following config:
///
/// ```text
/// [core]
/// a = b
/// [core]
/// a = c
/// a = d
/// ```
///
/// Attempting to get all values of `a` yields the following:
///
/// ```
/// # use git_config::file::GitConfig;
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// # let git_config = GitConfig::try_from("[core]a=b\n[core]\na=c\na=d").unwrap();
/// assert_eq!(
/// git_config.raw_multi_value("core", None, "a").unwrap(),
/// vec![
/// Cow::<[u8]>::Borrowed(b"b"),
/// Cow::<[u8]>::Borrowed(b"c"),
/// Cow::<[u8]>::Borrowed(b"d"),
/// ],
/// );
/// ```
///
/// Consider [`Self::raw_value`] if you want to get the resolved single
/// value for a given key, if your key does not support multi-valued values.
///
/// # Errors
///
/// This function will return an error if the key is not in any requested
/// section and subsection, or if no instance of the section and subsections
/// exist.
pub fn raw_multi_value(
&self,
section_name: &str,
subsection_name: Option<&str>,
key: &str,
) -> Result<Vec<Cow<'_, [u8]>>, lookup::existing::Error> {
let mut values = vec![];
for section_id in self.section_ids_by_name_and_subname(section_name, subsection_name)? {
values.extend(
self.sections
.get(§ion_id)
.expect("sections does not have section id from section ids")
.values(&Key(key.into()))
.iter()
.map(|v| Cow::Owned(v.to_vec())),
);
}
if values.is_empty() {
Err(lookup::existing::Error::KeyMissing)
} else {
Ok(values)
}
}
/// Returns mutable references to all uninterpreted values given a section,
/// an optional subsection and key.
///
/// # Examples
///
/// If you have the following config:
///
/// ```text
/// [core]
/// a = b
/// [core]
/// a = c
/// a = d
/// ```
///
/// Attempting to get all values of `a` yields the following:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// # let mut git_config = GitConfig::try_from("[core]a=b\n[core]\na=c\na=d").unwrap();
/// assert_eq!(
/// git_config.raw_multi_value("core", None, "a")?,
/// vec![
/// Cow::Borrowed(b"b"),
/// Cow::Borrowed(b"c"),
/// Cow::Borrowed(b"d")
/// ]
/// );
///
/// git_config.raw_multi_value_mut("core", None, "a")?.set_str_all("g");
///
/// assert_eq!(
/// git_config.raw_multi_value("core", None, "a")?,
/// vec![
/// Cow::Borrowed(b"g"),
/// Cow::Borrowed(b"g"),
/// Cow::Borrowed(b"g")
/// ],
/// );
/// # Ok::<(), git_config::lookup::existing::Error>(())
/// ```
///
/// Consider [`Self::raw_value`] if you want to get the resolved single
/// value for a given key, if your key does not support multi-valued values.
///
/// Note that this operation is relatively expensive, requiring a full
/// traversal of the config.
///
/// # Errors
///
/// This function will return an error if the key is not in any requested
/// section and subsection, or if no instance of the section and subsections
/// exist.
pub fn raw_multi_value_mut<'lookup>(
&mut self,
section_name: &'lookup str,
subsection_name: Option<&'lookup str>,
key: &'lookup str,
) -> Result<MutableMultiValue<'_, 'lookup, 'event>, lookup::existing::Error> {
let section_ids = self.section_ids_by_name_and_subname(section_name, subsection_name)?;
let key = Key(key.into());
let mut offsets = HashMap::new();
let mut entries = vec![];
for section_id in section_ids.iter().rev() {
let mut last_boundary = 0;
let mut found_key = false;
let mut offset_list = vec![];
let mut offset_index = 0;
for (i, event) in self
.sections
.get(section_id)
.expect("sections does not have section id from section ids")
.as_ref()
.iter()
.enumerate()
{
match event {
Event::Key(event_key) if *event_key == key => {
found_key = true;
offset_list.push(i - last_boundary);
offset_index += 1;
last_boundary = i;
}
Event::Value(_) | Event::ValueDone(_) if found_key => {
found_key = false;
entries.push(EntryData::new(*section_id, offset_index));
offset_list.push(i - last_boundary + 1);
offset_index += 1;
last_boundary = i + 1;
}
_ => (),
}
}
offsets.insert(*section_id, offset_list);
}
entries.sort();
if entries.is_empty() {
Err(lookup::existing::Error::KeyMissing)
} else {
Ok(MutableMultiValue::new(&mut self.sections, key, entries, offsets))
}
}
/// Sets a value in a given section, optional subsection, and key value.
///
/// # Examples
///
/// Given the config,
///
/// ```text
/// [core]
/// a = b
/// [core]
/// a = c
/// a = d
/// ```
///
/// Setting a new value to the key `core.a` will yield the following:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// # let mut git_config = GitConfig::try_from("[core]a=b\n[core]\na=c\na=d").unwrap();
/// git_config.set_raw_value("core", None, "a", vec![b'e'])?;
/// assert_eq!(git_config.raw_value("core", None, "a")?, Cow::Borrowed(b"e"));
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Errors
///
/// This errors if any lookup input (section, subsection, and key value) fails.
pub fn set_raw_value<'lookup>(
&mut self,
section_name: &'lookup str,
subsection_name: Option<&'lookup str>,
key: &'lookup str,
new_value: Vec<u8>,
) -> Result<(), lookup::existing::Error> {
self.raw_value_mut(section_name, subsection_name, key)
.map(|mut entry| entry.set_bytes(new_value))
}
/// Sets a multivar in a given section, optional subsection, and key value.
///
/// This internally zips together the new values and the existing values.
/// As a result, if more new values are provided than the current amount of
/// multivars, then the latter values are not applied. If there are less
/// new values than old ones then the remaining old values are unmodified.
///
/// **Note**: Mutation order is _not_ guaranteed and is non-deterministic.
/// If you need finer control over which values of the multivar are set,
/// consider using [`raw_multi_value_mut`], which will let you iterate
/// and check over the values instead. This is best used as a convenience
/// function for setting multivars whose values should be treated as an
/// unordered set.
///
/// # Examples
///
/// Let us use the follow config for all examples:
///
/// ```text
/// [core]
/// a = b
/// [core]
/// a = c
/// a = d
/// ```
///
/// Setting an equal number of values:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// # let mut git_config = GitConfig::try_from("[core]a=b\n[core]\na=c\na=d").unwrap();
/// let new_values: Vec<Cow<'_, [u8]>> = vec![
/// Cow::Borrowed(b"x"),
/// Cow::Borrowed(b"y"),
/// Cow::Borrowed(b"z"),
/// ];
/// git_config.set_raw_multi_value("core", None, "a", new_values.into_iter())?;
/// let fetched_config = git_config.raw_multi_value("core", None, "a")?;
/// assert!(fetched_config.contains(&Cow::Borrowed(b"x")));
/// assert!(fetched_config.contains(&Cow::Borrowed(b"y")));
/// assert!(fetched_config.contains(&Cow::Borrowed(b"z")));
/// # Ok::<(), git_config::lookup::existing::Error>(())
/// ```
///
/// Setting less than the number of present values sets the first ones found:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// # let mut git_config = GitConfig::try_from("[core]a=b\n[core]\na=c\na=d").unwrap();
/// let new_values: Vec<Cow<'_, [u8]>> = vec![
/// Cow::Borrowed(b"x"),
/// Cow::Borrowed(b"y"),
/// ];
/// git_config.set_raw_multi_value("core", None, "a", new_values.into_iter())?;
/// let fetched_config = git_config.raw_multi_value("core", None, "a")?;
/// assert!(fetched_config.contains(&Cow::Borrowed(b"x")));
/// assert!(fetched_config.contains(&Cow::Borrowed(b"y")));
/// # Ok::<(), git_config::lookup::existing::Error>(())
/// ```
///
/// Setting more than the number of present values discards the rest:
///
/// ```
/// # use git_config::file::{GitConfig};
/// # use std::borrow::Cow;
/// # use std::convert::TryFrom;
/// # let mut git_config = GitConfig::try_from("[core]a=b\n[core]\na=c\na=d").unwrap();
/// let new_values: Vec<Cow<'_, [u8]>> = vec![
/// Cow::Borrowed(b"x"),
/// Cow::Borrowed(b"y"),
/// Cow::Borrowed(b"z"),
/// Cow::Borrowed(b"discarded"),
/// ];
/// git_config.set_raw_multi_value("core", None, "a", new_values.into_iter())?;
/// assert!(!git_config.raw_multi_value("core", None, "a")?.contains(&Cow::Borrowed(b"discarded")));
/// # Ok::<(), git_config::lookup::existing::Error>(())
/// ```
///
/// # Errors
///
/// This errors if any lookup input (section, subsection, and key value) fails.
///
/// [`raw_multi_value_mut`]: Self::raw_multi_value_mut
pub fn set_raw_multi_value<'lookup>(
&mut self,
section_name: &'lookup str,
subsection_name: Option<&'lookup str>,
key: &'lookup str,
new_values: impl Iterator<Item = Cow<'event, [u8]>>,
) -> Result<(), lookup::existing::Error> {
self.raw_multi_value_mut(section_name, subsection_name, key)
.map(|mut v| v.set_values(new_values))
}
}
/// Private helper functions
impl<'event> GitConfig<'event> {
/// Adds a new section to the config file.
fn push_section_internal(
&mut self,
// current_section_name: Option<SectionHeaderName<'event>>,
// current_subsection_name: Option<Cow<'event, str>>,
header: ParsedSectionHeader<'event>,
section: SectionBody<'event>,
) -> MutableSection<'_, 'event> {
let new_section_id = SectionId(self.section_id_counter);
self.section_headers.insert(new_section_id, header.clone());
self.sections.insert(new_section_id, section);
let lookup = self.section_lookup_tree.entry(header.name).or_default();
let mut found_node = false;
if let Some(subsection_name) = header.subsection_name {
for node in lookup.iter_mut() {
if let LookupTreeNode::NonTerminal(subsection) = node {
found_node = true;
subsection
// Clones the cow, not the inner borrowed str.
.entry(subsection_name.clone())
.or_default()
.push(new_section_id);
break;
}
}
if !found_node {
let mut map = HashMap::new();
map.insert(subsection_name, vec![new_section_id]);
lookup.push(LookupTreeNode::NonTerminal(map));
}
} else {
for node in lookup.iter_mut() {
if let LookupTreeNode::Terminal(vec) = node {
found_node = true;
vec.push(new_section_id);
break;
}
}
if !found_node {
lookup.push(LookupTreeNode::Terminal(vec![new_section_id]));
}
}
self.section_order.push_back(new_section_id);
self.section_id_counter += 1;
self.sections.get_mut(&new_section_id).map(MutableSection::new).unwrap()
}
/// Returns the mapping between section and subsection name to section ids.
fn section_ids_by_name_and_subname<'lookup>(
&self,
section_name: impl Into<SectionHeaderName<'lookup>>,
subsection_name: Option<&'lookup str>,
) -> Result<Vec<SectionId>, lookup::existing::Error> {
let section_name = section_name.into();
let section_ids = self
.section_lookup_tree
.get(§ion_name)
.ok_or(lookup::existing::Error::SectionMissing)?;
let mut maybe_ids = None;
// Don't simplify if and matches here -- the for loop currently needs
// `n + 1` checks, while the if and matches will result in the for loop
// needing `2n` checks.
if let Some(subsection_name) = subsection_name {
for node in section_ids {
if let LookupTreeNode::NonTerminal(subsection_lookup) = node {
maybe_ids = subsection_lookup.get(subsection_name);
break;
}
}
} else {
for node in section_ids {
if let LookupTreeNode::Terminal(subsection_lookup) = node {
maybe_ids = Some(subsection_lookup);
break;
}
}
}
maybe_ids
.map(Vec::to_owned)
.ok_or(lookup::existing::Error::SubSectionMissing)
}
fn section_ids_by_name<'lookup>(
&self,
section_name: impl Into<SectionHeaderName<'lookup>>,
) -> Result<Vec<SectionId>, lookup::existing::Error> {
let section_name = section_name.into();
self.section_lookup_tree
.get(§ion_name)
.map(|lookup| {
lookup
.iter()
.flat_map(|node| match node {
LookupTreeNode::Terminal(v) => v.clone(),
LookupTreeNode::NonTerminal(v) => v.values().flatten().copied().collect(),
})
.collect()
})
.ok_or(lookup::existing::Error::SectionMissing)
}
}
impl<'a> TryFrom<&'a str> for GitConfig<'a> {
type Error = Error<'a>;
/// Convenience constructor. Attempts to parse the provided string into a
/// [`GitConfig`]. See [`parse_from_str`] for more information.
///
/// [`parse_from_str`]: crate::parser::parse_from_str
fn try_from(s: &'a str) -> Result<GitConfig<'a>, Self::Error> {
parse_from_str(s).map(Self::from)
}
}
impl<'a> TryFrom<&'a [u8]> for GitConfig<'a> {
type Error = Error<'a>;
/// Convenience constructor. Attempts to parse the provided byte string into
//// a [`GitConfig`]. See [`parse_from_bytes`] for more information.
///
/// [`parse_from_bytes`]: crate::parser::parse_from_bytes
fn try_from(value: &'a [u8]) -> Result<GitConfig<'a>, Self::Error> {
parse_from_bytes(value).map(GitConfig::from)
}
}
impl<'a> TryFrom<&'a Vec<u8>> for GitConfig<'a> {
type Error = Error<'a>;
/// Convenience constructor. Attempts to parse the provided byte string into
//// a [`GitConfig`]. See [`parse_from_bytes`] for more information.
///
/// [`parse_from_bytes`]: crate::parser::parse_from_bytes
fn try_from(value: &'a Vec<u8>) -> Result<GitConfig<'a>, Self::Error> {
parse_from_bytes(value).map(GitConfig::from)
}
}
impl<'a> From<Parser<'a>> for GitConfig<'a> {
fn from(parser: Parser<'a>) -> Self {
let mut new_self = Self::default();
// Current section that we're building
let mut prev_section_header = None;
let mut section_events = SectionBody::new();
#[allow(clippy::explicit_into_iter_loop)] // it's not really an iterator (yet), needs streaming iterator support
for event in parser.into_iter() {
match event {
Event::SectionHeader(header) => {
if let Some(prev_header) = prev_section_header.take() {
new_self.push_section_internal(prev_header, section_events);
} else {
new_self.frontmatter_events = section_events;
}
prev_section_header = Some(header);
section_events = SectionBody::new();
}
e @ Event::Key(_)
| e @ Event::Value(_)
| e @ Event::ValueNotDone(_)
| e @ Event::ValueDone(_)
| e @ Event::KeyValueSeparator => section_events.as_mut().push(e),
e @ Event::Comment(_) | e @ Event::Newline(_) | e @ Event::Whitespace(_) => {
section_events.as_mut().push(e);
}
}
}
// The last section doesn't get pushed since we only push if there's a
// new section header, so we need to call push one more time.
if let Some(header) = prev_section_header {
new_self.push_section_internal(header, section_events);
} else {
new_self.frontmatter_events = section_events;
}
new_self
}
}
impl From<GitConfig<'_>> for Vec<u8> {
fn from(c: GitConfig) -> Self {
c.into()
}
}
impl From<&GitConfig<'_>> for Vec<u8> {
fn from(config: &GitConfig) -> Self {
let mut value = Self::new();
for events in config.frontmatter_events.as_ref() {
value.extend(events.to_vec());
}
for section_id in &config.section_order {
value.extend(
config
.section_headers
.get(section_id)
.expect("section_header does not contain section id from section_order")
.to_vec(),
);
for event in config
.sections
.get(section_id)
.expect("sections does not contain section id from section_order")
.as_ref()
{
value.extend(event.to_vec());
}
}
value
}
}
impl Display for GitConfig<'_> {
/// Note that this is a best-effort attempt at printing a `GitConfig`. If
/// there are non UTF-8 values in your config, this will _NOT_ render as
/// read.
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
for front_matter in self.frontmatter_events.as_ref() {
front_matter.fmt(f)?;
}
for section_id in &self.section_order {
self.section_headers.get(section_id).unwrap().fmt(f)?;
for event in self.sections.get(section_id).unwrap().as_ref() {
event.fmt(f)?;
}
}
Ok(())
}
}
#[cfg(test)]
mod from_parser {
use super::{Cow, Event, GitConfig, HashMap, LookupTreeNode, SectionBody, SectionId, TryFrom};
use crate::{
parser::SectionHeaderName,
test_util::{name_event, newline_event, section_header, value_event},
};
#[test]
fn parse_empty() {
let config = GitConfig::try_from("").unwrap();
assert!(config.section_headers.is_empty());
assert_eq!(config.section_id_counter, 0);
assert!(config.section_lookup_tree.is_empty());
assert!(config.sections.is_empty());
assert!(config.section_order.is_empty());
}
#[test]
fn parse_single_section() {
let mut config = GitConfig::try_from("[core]\na=b\nc=d").unwrap();
let expected_separators = {
let mut map = HashMap::new();
map.insert(SectionId(0), section_header("core", None));
map
};
assert_eq!(config.section_headers, expected_separators);
assert_eq!(config.section_id_counter, 1);
let expected_lookup_tree = {
let mut tree = HashMap::new();
tree.insert(
SectionHeaderName(Cow::Borrowed("core")),
vec![LookupTreeNode::Terminal(vec![SectionId(0)])],
);
tree
};
assert_eq!(config.section_lookup_tree, expected_lookup_tree);
let expected_sections = {
let mut sections = HashMap::new();
sections.insert(
SectionId(0),
SectionBody::from(vec![
newline_event(),
name_event("a"),
Event::KeyValueSeparator,
value_event("b"),
newline_event(),
name_event("c"),
Event::KeyValueSeparator,
value_event("d"),
]),
);
sections
};
assert_eq!(config.sections, expected_sections);
assert_eq!(config.section_order.make_contiguous(), &[SectionId(0)]);
}
#[test]
fn parse_single_subsection() {
let mut config = GitConfig::try_from("[core.sub]\na=b\nc=d").unwrap();
let expected_separators = {
let mut map = HashMap::new();
map.insert(SectionId(0), section_header("core", (".", "sub")));
map
};
assert_eq!(config.section_headers, expected_separators);
assert_eq!(config.section_id_counter, 1);
let expected_lookup_tree = {
let mut tree = HashMap::new();
let mut inner_tree = HashMap::new();
inner_tree.insert(Cow::Borrowed("sub"), vec![SectionId(0)]);
tree.insert(
SectionHeaderName(Cow::Borrowed("core")),
vec![LookupTreeNode::NonTerminal(inner_tree)],
);
tree
};
assert_eq!(config.section_lookup_tree, expected_lookup_tree);
let expected_sections = {
let mut sections = HashMap::new();
sections.insert(
SectionId(0),
SectionBody::from(vec![
newline_event(),
name_event("a"),
Event::KeyValueSeparator,
value_event("b"),
newline_event(),
name_event("c"),
Event::KeyValueSeparator,
value_event("d"),
]),
);
sections
};
assert_eq!(config.sections, expected_sections);
assert_eq!(config.section_order.make_contiguous(), &[SectionId(0)]);
}
#[test]
fn parse_multiple_sections() {
let mut config = GitConfig::try_from("[core]\na=b\nc=d\n[other]e=f").unwrap();
let expected_separators = {
let mut map = HashMap::new();
map.insert(SectionId(0), section_header("core", None));
map.insert(SectionId(1), section_header("other", None));
map
};
assert_eq!(config.section_headers, expected_separators);
assert_eq!(config.section_id_counter, 2);
let expected_lookup_tree = {
let mut tree = HashMap::new();
tree.insert(
SectionHeaderName(Cow::Borrowed("core")),
vec![LookupTreeNode::Terminal(vec![SectionId(0)])],
);
tree.insert(
SectionHeaderName(Cow::Borrowed("other")),
vec![LookupTreeNode::Terminal(vec![SectionId(1)])],
);
tree
};
assert_eq!(config.section_lookup_tree, expected_lookup_tree);
let expected_sections = {
let mut sections = HashMap::new();
sections.insert(
SectionId(0),
SectionBody::from(vec![
newline_event(),
name_event("a"),
Event::KeyValueSeparator,
value_event("b"),
newline_event(),
name_event("c"),
Event::KeyValueSeparator,
value_event("d"),
newline_event(),
]),
);
sections.insert(
SectionId(1),
SectionBody::from(vec![name_event("e"), Event::KeyValueSeparator, value_event("f")]),
);
sections
};
assert_eq!(config.sections, expected_sections);
assert_eq!(config.section_order.make_contiguous(), &[SectionId(0), SectionId(1)]);
}
#[test]
fn parse_multiple_duplicate_sections() {
let mut config = GitConfig::try_from("[core]\na=b\nc=d\n[core]e=f").unwrap();
let expected_separators = {
let mut map = HashMap::new();
map.insert(SectionId(0), section_header("core", None));
map.insert(SectionId(1), section_header("core", None));
map
};
assert_eq!(config.section_headers, expected_separators);
assert_eq!(config.section_id_counter, 2);
let expected_lookup_tree = {
let mut tree = HashMap::new();
tree.insert(
SectionHeaderName(Cow::Borrowed("core")),
vec![LookupTreeNode::Terminal(vec![SectionId(0), SectionId(1)])],
);
tree
};
assert_eq!(config.section_lookup_tree, expected_lookup_tree);
let expected_sections = {
let mut sections = HashMap::new();
sections.insert(
SectionId(0),
SectionBody::from(vec![
newline_event(),
name_event("a"),
Event::KeyValueSeparator,
value_event("b"),
newline_event(),
name_event("c"),
Event::KeyValueSeparator,
value_event("d"),
newline_event(),
]),
);
sections.insert(
SectionId(1),
SectionBody::from(vec![name_event("e"), Event::KeyValueSeparator, value_event("f")]),
);
sections
};
assert_eq!(config.sections, expected_sections);
assert_eq!(config.section_order.make_contiguous(), &[SectionId(0), SectionId(1)]);
}
}