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
use std::collections::HashMap;
use std::default;
use std::env;
use std::ffi::{OsStr, OsString};
use std::fmt;
use std::fs;
use std::io::{Error, ErrorKind, Result, Write};
use std::path::{Path, PathBuf};
use std::process::Command;
use log::debug;
use log::trace;
use prost::Message;
use prost_types::{FileDescriptorProto, FileDescriptorSet};
use crate::code_generator::CodeGenerator;
use crate::extern_paths::ExternPaths;
use crate::message_graph::MessageGraph;
use crate::path::PathMap;
use crate::BytesType;
use crate::MapType;
use crate::Module;
use crate::ServiceGenerator;
/// Configuration options for Protobuf code generation.
///
/// This configuration builder can be used to set non-default code generation options.
pub struct Config {
pub(crate) file_descriptor_set_path: Option<PathBuf>,
pub(crate) service_generator: Option<Box<dyn ServiceGenerator>>,
pub(crate) map_type: PathMap<MapType>,
pub(crate) bytes_type: PathMap<BytesType>,
pub(crate) type_attributes: PathMap<String>,
pub(crate) message_attributes: PathMap<String>,
pub(crate) enum_attributes: PathMap<String>,
pub(crate) field_attributes: PathMap<String>,
pub(crate) boxed: PathMap<()>,
pub(crate) prost_types: bool,
pub(crate) strip_enum_prefix: bool,
pub(crate) out_dir: Option<PathBuf>,
pub(crate) extern_paths: Vec<(String, String)>,
pub(crate) default_package_filename: String,
pub(crate) enable_type_names: bool,
pub(crate) type_name_domains: PathMap<String>,
pub(crate) protoc_args: Vec<OsString>,
pub(crate) protoc_executable: PathBuf,
pub(crate) disable_comments: PathMap<()>,
pub(crate) skip_debug: PathMap<()>,
pub(crate) skip_protoc_run: bool,
pub(crate) include_file: Option<PathBuf>,
pub(crate) prost_path: Option<String>,
#[cfg(feature = "format")]
pub(crate) fmt: bool,
}
impl Config {
/// Creates a new code generator configuration with default options.
pub fn new() -> Config {
Config::default()
}
/// Configure the code generator to generate Rust [`BTreeMap`][1] fields for Protobuf
/// [`map`][2] type fields.
///
/// # Arguments
///
/// **`paths`** - paths to specific fields, messages, or packages which should use a Rust
/// `BTreeMap` for Protobuf `map` fields. Paths are specified in terms of the Protobuf type
/// name (not the generated Rust type name). Paths with a leading `.` are treated as fully
/// qualified names. Paths without a leading `.` are treated as relative, and are suffix
/// matched on the fully qualified field name. If a Protobuf map field matches any of the
/// paths, a Rust `BTreeMap` field is generated instead of the default [`HashMap`][3].
///
/// The matching is done on the Protobuf names, before converting to Rust-friendly casing
/// standards.
///
/// # Examples
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// // Match a specific field in a message type.
/// config.btree_map(&[".my_messages.MyMessageType.my_map_field"]);
///
/// // Match all map fields in a message type.
/// config.btree_map(&[".my_messages.MyMessageType"]);
///
/// // Match all map fields in a package.
/// config.btree_map(&[".my_messages"]);
///
/// // Match all map fields. Specially useful in `no_std` contexts.
/// config.btree_map(&["."]);
///
/// // Match all map fields in a nested message.
/// config.btree_map(&[".my_messages.MyMessageType.MyNestedMessageType"]);
///
/// // Match all fields named 'my_map_field'.
/// config.btree_map(&["my_map_field"]);
///
/// // Match all fields named 'my_map_field' in messages named 'MyMessageType', regardless of
/// // package or nesting.
/// config.btree_map(&["MyMessageType.my_map_field"]);
///
/// // Match all fields named 'my_map_field', and all fields in the 'foo.bar' package.
/// config.btree_map(&["my_map_field", ".foo.bar"]);
/// ```
///
/// [1]: https://doc.rust-lang.org/std/collections/struct.BTreeMap.html
/// [2]: https://developers.google.com/protocol-buffers/docs/proto3#maps
/// [3]: https://doc.rust-lang.org/std/collections/struct.HashMap.html
pub fn btree_map<I, S>(&mut self, paths: I) -> &mut Self
where
I: IntoIterator<Item = S>,
S: AsRef<str>,
{
self.map_type.clear();
for matcher in paths {
self.map_type
.insert(matcher.as_ref().to_string(), MapType::BTreeMap);
}
self
}
/// Configure the code generator to generate Rust [`bytes::Bytes`][1] fields for Protobuf
/// [`bytes`][2] type fields.
///
/// # Arguments
///
/// **`paths`** - paths to specific fields, messages, or packages which should use a Rust
/// `Bytes` for Protobuf `bytes` fields. Paths are specified in terms of the Protobuf type
/// name (not the generated Rust type name). Paths with a leading `.` are treated as fully
/// qualified names. Paths without a leading `.` are treated as relative, and are suffix
/// matched on the fully qualified field name. If a Protobuf map field matches any of the
/// paths, a Rust `Bytes` field is generated instead of the default [`Vec<u8>`][3].
///
/// The matching is done on the Protobuf names, before converting to Rust-friendly casing
/// standards.
///
/// # Examples
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// // Match a specific field in a message type.
/// config.bytes(&[".my_messages.MyMessageType.my_bytes_field"]);
///
/// // Match all bytes fields in a message type.
/// config.bytes(&[".my_messages.MyMessageType"]);
///
/// // Match all bytes fields in a package.
/// config.bytes(&[".my_messages"]);
///
/// // Match all bytes fields. Specially useful in `no_std` contexts.
/// config.bytes(&["."]);
///
/// // Match all bytes fields in a nested message.
/// config.bytes(&[".my_messages.MyMessageType.MyNestedMessageType"]);
///
/// // Match all fields named 'my_bytes_field'.
/// config.bytes(&["my_bytes_field"]);
///
/// // Match all fields named 'my_bytes_field' in messages named 'MyMessageType', regardless of
/// // package or nesting.
/// config.bytes(&["MyMessageType.my_bytes_field"]);
///
/// // Match all fields named 'my_bytes_field', and all fields in the 'foo.bar' package.
/// config.bytes(&["my_bytes_field", ".foo.bar"]);
/// ```
///
/// [1]: https://docs.rs/bytes/latest/bytes/struct.Bytes.html
/// [2]: https://developers.google.com/protocol-buffers/docs/proto3#scalar
/// [3]: https://doc.rust-lang.org/std/vec/struct.Vec.html
pub fn bytes<I, S>(&mut self, paths: I) -> &mut Self
where
I: IntoIterator<Item = S>,
S: AsRef<str>,
{
self.bytes_type.clear();
for matcher in paths {
self.bytes_type
.insert(matcher.as_ref().to_string(), BytesType::Bytes);
}
self
}
/// Add additional attribute to matched fields.
///
/// # Arguments
///
/// **`path`** - a path matching any number of fields. These fields get the attribute.
/// For details about matching fields see [`btree_map`](#method.btree_map).
///
/// **`attribute`** - an arbitrary string that'll be placed before each matched field. The
/// expected usage are additional attributes, usually in concert with whole-type
/// attributes set with [`type_attribute`](method.type_attribute), but it is not
/// checked and anything can be put there.
///
/// Note that the calls to this method are cumulative ‒ if multiple paths from multiple calls
/// match the same field, the field gets all the corresponding attributes.
///
/// # Examples
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// // Prost renames fields named `in` to `in_`. But if serialized through serde,
/// // they should as `in`.
/// config.field_attribute("in", "#[serde(rename = \"in\")]");
/// ```
pub fn field_attribute<P, A>(&mut self, path: P, attribute: A) -> &mut Self
where
P: AsRef<str>,
A: AsRef<str>,
{
self.field_attributes
.insert(path.as_ref().to_string(), attribute.as_ref().to_string());
self
}
/// Add additional attribute to matched messages, enums and one-ofs.
///
/// # Arguments
///
/// **`paths`** - a path matching any number of types. It works the same way as in
/// [`btree_map`](#method.btree_map), just with the field name omitted.
///
/// **`attribute`** - an arbitrary string to be placed before each matched type. The
/// expected usage are additional attributes, but anything is allowed.
///
/// The calls to this method are cumulative. They don't overwrite previous calls and if a
/// type is matched by multiple calls of the method, all relevant attributes are added to
/// it.
///
/// For things like serde it might be needed to combine with [field
/// attributes](#method.field_attribute).
///
/// # Examples
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// // Nothing around uses floats, so we can derive real `Eq` in addition to `PartialEq`.
/// config.type_attribute(".", "#[derive(Eq)]");
/// // Some messages want to be serializable with serde as well.
/// config.type_attribute("my_messages.MyMessageType",
/// "#[derive(Serialize)] #[serde(rename_all = \"snake_case\")]");
/// config.type_attribute("my_messages.MyMessageType.MyNestedMessageType",
/// "#[derive(Serialize)] #[serde(rename_all = \"snake_case\")]");
/// ```
///
/// # Oneof fields
///
/// The `oneof` fields don't have a type name of their own inside Protobuf. Therefore, the
/// field name can be used both with `type_attribute` and `field_attribute` ‒ the first is
/// placed before the `enum` type definition, the other before the field inside corresponding
/// message `struct`.
///
/// In other words, to place an attribute on the `enum` implementing the `oneof`, the match
/// would look like `my_messages.MyMessageType.oneofname`.
pub fn type_attribute<P, A>(&mut self, path: P, attribute: A) -> &mut Self
where
P: AsRef<str>,
A: AsRef<str>,
{
self.type_attributes
.insert(path.as_ref().to_string(), attribute.as_ref().to_string());
self
}
/// Add additional attribute to matched messages.
///
/// # Arguments
///
/// **`paths`** - a path matching any number of types. It works the same way as in
/// [`btree_map`](#method.btree_map), just with the field name omitted.
///
/// **`attribute`** - an arbitrary string to be placed before each matched type. The
/// expected usage are additional attributes, but anything is allowed.
///
/// The calls to this method are cumulative. They don't overwrite previous calls and if a
/// type is matched by multiple calls of the method, all relevant attributes are added to
/// it.
///
/// For things like serde it might be needed to combine with [field
/// attributes](#method.field_attribute).
///
/// # Examples
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// // Nothing around uses floats, so we can derive real `Eq` in addition to `PartialEq`.
/// config.message_attribute(".", "#[derive(Eq)]");
/// // Some messages want to be serializable with serde as well.
/// config.message_attribute("my_messages.MyMessageType",
/// "#[derive(Serialize)] #[serde(rename_all = \"snake_case\")]");
/// config.message_attribute("my_messages.MyMessageType.MyNestedMessageType",
/// "#[derive(Serialize)] #[serde(rename_all = \"snake_case\")]");
/// ```
pub fn message_attribute<P, A>(&mut self, path: P, attribute: A) -> &mut Self
where
P: AsRef<str>,
A: AsRef<str>,
{
self.message_attributes
.insert(path.as_ref().to_string(), attribute.as_ref().to_string());
self
}
/// Add additional attribute to matched enums and one-ofs.
///
/// # Arguments
///
/// **`paths`** - a path matching any number of types. It works the same way as in
/// [`btree_map`](#method.btree_map), just with the field name omitted.
///
/// **`attribute`** - an arbitrary string to be placed before each matched type. The
/// expected usage are additional attributes, but anything is allowed.
///
/// The calls to this method are cumulative. They don't overwrite previous calls and if a
/// type is matched by multiple calls of the method, all relevant attributes are added to
/// it.
///
/// For things like serde it might be needed to combine with [field
/// attributes](#method.field_attribute).
///
/// # Examples
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// // Nothing around uses floats, so we can derive real `Eq` in addition to `PartialEq`.
/// config.enum_attribute(".", "#[derive(Eq)]");
/// // Some messages want to be serializable with serde as well.
/// config.enum_attribute("my_messages.MyEnumType",
/// "#[derive(Serialize)] #[serde(rename_all = \"snake_case\")]");
/// config.enum_attribute("my_messages.MyMessageType.MyNestedEnumType",
/// "#[derive(Serialize)] #[serde(rename_all = \"snake_case\")]");
/// ```
///
/// # Oneof fields
///
/// The `oneof` fields don't have a type name of their own inside Protobuf. Therefore, the
/// field name can be used both with `enum_attribute` and `field_attribute` ‒ the first is
/// placed before the `enum` type definition, the other before the field inside corresponding
/// message `struct`.
///
/// In other words, to place an attribute on the `enum` implementing the `oneof`, the match
/// would look like `my_messages.MyNestedMessageType.oneofname`.
pub fn enum_attribute<P, A>(&mut self, path: P, attribute: A) -> &mut Self
where
P: AsRef<str>,
A: AsRef<str>,
{
self.enum_attributes
.insert(path.as_ref().to_string(), attribute.as_ref().to_string());
self
}
/// Wrap matched fields in a `Box`.
///
/// # Arguments
///
/// **`path`** - a path matching any number of fields. These fields get the attribute.
/// For details about matching fields see [`btree_map`](#method.btree_map).
///
/// # Examples
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// config.boxed(".my_messages.MyMessageType.my_field");
/// ```
pub fn boxed<P>(&mut self, path: P) -> &mut Self
where
P: AsRef<str>,
{
self.boxed.insert(path.as_ref().to_string(), ());
self
}
/// Configures the code generator to use the provided service generator.
pub fn service_generator(&mut self, service_generator: Box<dyn ServiceGenerator>) -> &mut Self {
self.service_generator = Some(service_generator);
self
}
/// Configures the code generator to not use the `prost_types` crate for Protobuf well-known
/// types, and instead generate Protobuf well-known types from their `.proto` definitions.
pub fn compile_well_known_types(&mut self) -> &mut Self {
self.prost_types = false;
self
}
/// Configures the code generator to omit documentation comments on generated Protobuf types.
///
/// # Example
///
/// Occasionally `.proto` files contain code blocks which are not valid Rust. To avoid doctest
/// failures, annotate the invalid code blocks with an [`ignore` or `no_run` attribute][1], or
/// disable doctests for the crate with a [Cargo.toml entry][2]. If neither of these options
/// are possible, then omit comments on generated code during doctest builds:
///
/// ```rust,no_run
/// # fn main() -> std::io::Result<()> {
/// let mut config = prost_build::Config::new();
/// config.disable_comments(&["."]);
/// config.compile_protos(&["src/frontend.proto", "src/backend.proto"], &["src"])?;
/// # Ok(())
/// # }
/// ```
///
/// As with other options which take a set of paths, comments can be disabled on a per-package
/// or per-symbol basis.
///
/// [1]: https://doc.rust-lang.org/rustdoc/documentation-tests.html#attributes
/// [2]: https://doc.rust-lang.org/cargo/reference/cargo-targets.html#configuring-a-target
pub fn disable_comments<I, S>(&mut self, paths: I) -> &mut Self
where
I: IntoIterator<Item = S>,
S: AsRef<str>,
{
self.disable_comments.clear();
for matcher in paths {
self.disable_comments
.insert(matcher.as_ref().to_string(), ());
}
self
}
/// Skips generating `impl Debug` for types
pub fn skip_debug<I, S>(&mut self, paths: I) -> &mut Self
where
I: IntoIterator<Item = S>,
S: AsRef<str>,
{
self.skip_debug.clear();
for matcher in paths {
self.skip_debug.insert(matcher.as_ref().to_string(), ());
}
self
}
/// Declare an externally provided Protobuf package or type.
///
/// `extern_path` allows `prost` types in external crates to be referenced in generated code.
///
/// When `prost` compiles a `.proto` which includes an import of another `.proto`, it will
/// automatically recursively compile the imported file as well. `extern_path` can be used
/// to instead substitute types from an external crate.
///
/// # Example
///
/// As an example, consider a crate, `uuid`, with a `prost`-generated `Uuid` type:
///
/// ```proto
/// // uuid.proto
///
/// syntax = "proto3";
/// package uuid;
///
/// message Uuid {
/// string uuid_str = 1;
/// }
/// ```
///
/// The `uuid` crate implements some traits for `Uuid`, and publicly exports it:
///
/// ```rust,ignore
/// // lib.rs in the uuid crate
///
/// include!(concat!(env!("OUT_DIR"), "/uuid.rs"));
///
/// pub trait DoSomething {
/// fn do_it(&self);
/// }
///
/// impl DoSomething for Uuid {
/// fn do_it(&self) {
/// println!("Done");
/// }
/// }
/// ```
///
/// A separate crate, `my_application`, uses `prost` to generate message types which reference
/// `Uuid`:
///
/// ```proto
/// // my_application.proto
///
/// syntax = "proto3";
/// package my_application;
///
/// import "uuid.proto";
///
/// message MyMessage {
/// uuid.Uuid message_id = 1;
/// string some_payload = 2;
/// }
/// ```
///
/// Additionally, `my_application` depends on the trait impls provided by the `uuid` crate:
///
/// ```rust,ignore
/// // `main.rs` of `my_application`
///
/// use uuid::{DoSomething, Uuid};
///
/// include!(concat!(env!("OUT_DIR"), "/my_application.rs"));
///
/// pub fn process_message(msg: MyMessage) {
/// if let Some(uuid) = msg.message_id {
/// uuid.do_it();
/// }
/// }
/// ```
///
/// Without configuring `uuid` as an external path in `my_application`'s `build.rs`, `prost`
/// would compile a completely separate version of the `Uuid` type, and `process_message` would
/// fail to compile. However, if `my_application` configures `uuid` as an extern path with a
/// call to `.extern_path(".uuid", "::uuid")`, `prost` will use the external type instead of
/// compiling a new version of `Uuid`. Note that the configuration could also be specified as
/// `.extern_path(".uuid.Uuid", "::uuid::Uuid")` if only the `Uuid` type were externally
/// provided, and not the whole `uuid` package.
///
/// # Usage
///
/// `extern_path` takes a fully-qualified Protobuf path, and the corresponding Rust path that
/// it will be substituted with in generated code. The Protobuf path can refer to a package or
/// a type, and the Rust path should correspondingly refer to a Rust module or type.
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// // Declare the `uuid` Protobuf package and all nested packages and types as externally
/// // provided by the `uuid` crate.
/// config.extern_path(".uuid", "::uuid");
///
/// // Declare the `foo.bar.baz` Protobuf package and all nested packages and types as
/// // externally provided by the `foo_bar_baz` crate.
/// config.extern_path(".foo.bar.baz", "::foo_bar_baz");
///
/// // Declare the `uuid.Uuid` Protobuf type (and all nested types) as externally provided
/// // by the `uuid` crate's `Uuid` type.
/// config.extern_path(".uuid.Uuid", "::uuid::Uuid");
/// ```
pub fn extern_path<P1, P2>(&mut self, proto_path: P1, rust_path: P2) -> &mut Self
where
P1: Into<String>,
P2: Into<String>,
{
self.extern_paths
.push((proto_path.into(), rust_path.into()));
self
}
/// When set, the `FileDescriptorSet` generated by `protoc` is written to the provided
/// filesystem path.
///
/// This option can be used in conjunction with the [`include_bytes!`] macro and the types in
/// the `prost-types` crate for implementing reflection capabilities, among other things.
///
/// ## Example
///
/// In `build.rs`:
///
/// ```rust, no_run
/// # use std::env;
/// # use std::path::PathBuf;
/// # let mut config = prost_build::Config::new();
/// config.file_descriptor_set_path(
/// PathBuf::from(env::var("OUT_DIR").expect("OUT_DIR environment variable not set"))
/// .join("file_descriptor_set.bin"));
/// ```
///
/// In `lib.rs`:
///
/// ```rust,ignore
/// let file_descriptor_set_bytes = include_bytes!(concat!(env!("OUT_DIR"), "/file_descriptor_set.bin"));
/// let file_descriptor_set = prost_types::FileDescriptorSet::decode(&file_descriptor_set_bytes[..]).unwrap();
/// ```
pub fn file_descriptor_set_path<P>(&mut self, path: P) -> &mut Self
where
P: Into<PathBuf>,
{
self.file_descriptor_set_path = Some(path.into());
self
}
/// In combination with with `file_descriptor_set_path`, this can be used to provide a file
/// descriptor set as an input file, rather than having prost-build generate the file by calling
/// protoc.
///
/// In `build.rs`:
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// config.file_descriptor_set_path("path/from/build/system")
/// .skip_protoc_run()
/// .compile_protos(&["src/items.proto"], &["src/"]);
/// ```
///
pub fn skip_protoc_run(&mut self) -> &mut Self {
self.skip_protoc_run = true;
self
}
/// Configures the code generator to not strip the enum name from variant names.
///
/// Protobuf enum definitions commonly include the enum name as a prefix of every variant name.
/// This style is non-idiomatic in Rust, so by default `prost` strips the enum name prefix from
/// variants which include it. Configuring this option prevents `prost` from stripping the
/// prefix.
pub fn retain_enum_prefix(&mut self) -> &mut Self {
self.strip_enum_prefix = false;
self
}
/// Configures the output directory where generated Rust files will be written.
///
/// If unset, defaults to the `OUT_DIR` environment variable. `OUT_DIR` is set by Cargo when
/// executing build scripts, so `out_dir` typically does not need to be configured.
pub fn out_dir<P>(&mut self, path: P) -> &mut Self
where
P: Into<PathBuf>,
{
self.out_dir = Some(path.into());
self
}
/// Configures what filename protobufs with no package definition are written to.
/// The filename will be appended with the `.rs` extension.
pub fn default_package_filename<S>(&mut self, filename: S) -> &mut Self
where
S: Into<String>,
{
self.default_package_filename = filename.into();
self
}
/// Configures the code generator to include type names.
///
/// Message types will implement `Name` trait, which provides type and package name.
/// This is needed for encoding messages as `Any` type.
pub fn enable_type_names(&mut self) -> &mut Self {
self.enable_type_names = true;
self
}
/// Specify domain names to use with message type URLs.
///
/// # Domains
///
/// **`paths`** - a path matching any number of types. It works the same way as in
/// [`btree_map`](#method.btree_map), just with the field name omitted.
///
/// **`domain`** - an arbitrary string to be used as a prefix for type URLs.
///
/// # Examples
///
/// ```rust
/// # let mut config = prost_build::Config::new();
/// // Full type URL of the message `google.profile.Person`,
/// // will be `type.googleapis.com/google.profile.Person`.
/// config.type_name_domain(&["."], "type.googleapis.com");
/// ```
pub fn type_name_domain<I, S, D>(&mut self, paths: I, domain: D) -> &mut Self
where
I: IntoIterator<Item = S>,
S: AsRef<str>,
D: AsRef<str>,
{
self.type_name_domains.clear();
for matcher in paths {
self.type_name_domains
.insert(matcher.as_ref().to_string(), domain.as_ref().to_string());
}
self
}
/// Configures the path that's used for deriving `Message` for generated messages.
/// This is mainly useful for generating crates that wish to re-export prost.
/// Defaults to `::prost::Message` if not specified.
pub fn prost_path<S>(&mut self, path: S) -> &mut Self
where
S: Into<String>,
{
self.prost_path = Some(path.into());
self
}
/// Add an argument to the `protoc` protobuf compilation invocation.
///
/// # Example `build.rs`
///
/// ```rust,no_run
/// # use std::io::Result;
/// fn main() -> Result<()> {
/// let mut prost_build = prost_build::Config::new();
/// // Enable a protoc experimental feature.
/// prost_build.protoc_arg("--experimental_allow_proto3_optional");
/// prost_build.compile_protos(&["src/frontend.proto", "src/backend.proto"], &["src"])?;
/// Ok(())
/// }
/// ```
pub fn protoc_arg<S>(&mut self, arg: S) -> &mut Self
where
S: AsRef<OsStr>,
{
self.protoc_args.push(arg.as_ref().to_owned());
self
}
/// Set the path to `protoc` executable to be used by `prost-build`
///
/// Use the provided path to find `protoc`. This can either be a file name which is
/// searched for in the `PATH` or an aboslute path to use a specific executable.
///
/// # Example `build.rs`
///
/// ```rust,no_run
/// # use std::io::Result;
/// fn main() -> Result<()> {
/// let mut prost_build = prost_build::Config::new();
/// prost_build.protoc_executable("protoc-27.1");
/// prost_build.compile_protos(&["src/frontend.proto", "src/backend.proto"], &["src"])?;
/// Ok(())
/// }
/// ```
pub fn protoc_executable<S>(&mut self, executable: S) -> &mut Self
where
S: Into<PathBuf>,
{
self.protoc_executable = executable.into();
self
}
/// Configures the optional module filename for easy inclusion of all generated Rust files
///
/// If set, generates a file (inside the `OUT_DIR` or `out_dir()` as appropriate) which contains
/// a set of `pub mod XXX` statements combining to load all Rust files generated. This can allow
/// for a shortcut where multiple related proto files have been compiled together resulting in
/// a semi-complex set of includes.
///
/// Turning a need for:
///
/// ```rust,no_run,ignore
/// pub mod Foo {
/// pub mod Bar {
/// include!(concat!(env!("OUT_DIR"), "/foo.bar.rs"));
/// }
/// pub mod Baz {
/// include!(concat!(env!("OUT_DIR"), "/foo.baz.rs"));
/// }
/// }
/// ```
///
/// Into the simpler:
///
/// ```rust,no_run,ignore
/// include!(concat!(env!("OUT_DIR"), "/_includes.rs"));
/// ```
pub fn include_file<P>(&mut self, path: P) -> &mut Self
where
P: Into<PathBuf>,
{
self.include_file = Some(path.into());
self
}
// IMPROVEMENT: https://github.com/tokio-rs/prost/pull/1022/files#r1563818651
/// Configures the code generator to format the output code via `prettyplease`.
///
/// By default, this is enabled but if the `format` feature is not enabled this does
/// nothing.
#[cfg(feature = "format")]
pub fn format(&mut self, enabled: bool) -> &mut Self {
self.fmt = enabled;
self
}
/// Compile a [`FileDescriptorSet`] into Rust files during a Cargo build with
/// additional code generator configuration options.
///
/// This method is like `compile_protos` function except it does not invoke `protoc`
/// and instead requires the user to supply a [`FileDescriptorSet`].
///
/// # Example `build.rs`
///
/// ```rust,no_run
/// # use prost_types::FileDescriptorSet;
/// # fn fds() -> FileDescriptorSet { todo!() }
/// fn main() -> std::io::Result<()> {
/// let file_descriptor_set = fds();
///
/// prost_build::Config::new()
/// .compile_fds(file_descriptor_set)
/// }
/// ```
pub fn compile_fds(&mut self, fds: FileDescriptorSet) -> Result<()> {
let mut target_is_env = false;
let target: PathBuf = self.out_dir.clone().map(Ok).unwrap_or_else(|| {
env::var_os("OUT_DIR")
.ok_or_else(|| {
Error::new(ErrorKind::Other, "OUT_DIR environment variable is not set")
})
.map(|val| {
target_is_env = true;
Into::into(val)
})
})?;
let requests = fds
.file
.into_iter()
.map(|descriptor| {
(
Module::from_protobuf_package_name(descriptor.package()),
descriptor,
)
})
.collect::<Vec<_>>();
let file_names = requests
.iter()
.map(|req| {
(
req.0.clone(),
req.0.to_file_name_or(&self.default_package_filename),
)
})
.collect::<HashMap<Module, String>>();
let modules = self.generate(requests)?;
for (module, content) in &modules {
let file_name = file_names
.get(module)
.expect("every module should have a filename");
let output_path = target.join(file_name);
write_file_if_changed(&output_path, content.as_bytes())?;
}
if let Some(ref include_file) = self.include_file {
let path = target.join(include_file);
trace!("Writing include file: {}", path.display());
let mut buffer = Vec::new();
self.write_line(&mut buffer, 0, "// This file is @generated by prost-build.")?;
self.write_includes(
modules.keys().collect(),
&mut buffer,
if target_is_env { None } else { Some(&target) },
&file_names,
)?;
write_file_if_changed(&path, &buffer)?;
}
Ok(())
}
/// Loads `.proto` files as a [`FileDescriptorSet`]. This allows inspection of the descriptors
/// before calling [`Config::compile_fds`]. This could be used to change [`Config`]
/// attributes after introspecting what is actually present in the `.proto` files.
///
/// # Example `build.rs`
///
/// ```rust,no_run
/// # use prost_types::FileDescriptorSet;
/// # use prost_build::Config;
/// fn main() -> std::io::Result<()> {
/// let mut config = Config::new();
/// let file_descriptor_set = config.load_fds(&["src/frontend.proto", "src/backend.proto"], &["src"])?;
///
/// // Add custom attributes to messages that are service inputs or outputs.
/// for file in &file_descriptor_set.file {
/// for service in &file.service {
/// for method in &service.method {
/// if let Some(input) = &method.input_type {
/// config.message_attribute(input, "#[derive(custom_proto::Input)]");
/// }
/// if let Some(output) = &method.output_type {
/// config.message_attribute(output, "#[derive(custom_proto::Output)]");
/// }
/// }
/// }
/// }
///
/// config.compile_fds(file_descriptor_set)
/// }
/// ```
pub fn load_fds(
&mut self,
protos: &[impl AsRef<Path>],
includes: &[impl AsRef<Path>],
) -> Result<FileDescriptorSet> {
let tmp;
let file_descriptor_set_path = if let Some(path) = &self.file_descriptor_set_path {
path.clone()
} else {
if self.skip_protoc_run {
return Err(Error::new(
ErrorKind::Other,
"file_descriptor_set_path is required with skip_protoc_run",
));
}
tmp = tempfile::Builder::new().prefix("prost-build").tempdir()?;
tmp.path().join("prost-descriptor-set")
};
if !self.skip_protoc_run {
let mut cmd = Command::new(&self.protoc_executable);
cmd.arg("--include_imports")
.arg("--include_source_info")
.arg("-o")
.arg(&file_descriptor_set_path);
for include in includes {
if include.as_ref().exists() {
cmd.arg("-I").arg(include.as_ref());
} else {
debug!(
"ignoring {} since it does not exist.",
include.as_ref().display()
)
}
}
// Set the protoc include after the user includes in case the user wants to
// override one of the built-in .protos.
if let Some(protoc_include) = protoc_include_from_env() {
cmd.arg("-I").arg(protoc_include);
}
for arg in &self.protoc_args {
cmd.arg(arg);
}
for proto in protos {
cmd.arg(proto.as_ref());
}
debug!("Running: {:?}", cmd);
let output = match cmd.output() {
Err(err) if ErrorKind::NotFound == err.kind() => return Err(Error::new(
err.kind(),
error_message_protoc_not_found()
)),
Err(err) => return Err(Error::new(
err.kind(),
format!("failed to invoke protoc (hint: https://docs.rs/prost-build/#sourcing-protoc): (path: {}): {}", &self.protoc_executable.display(), err),
)),
Ok(output) => output,
};
if !output.status.success() {
return Err(Error::new(
ErrorKind::Other,
format!("protoc failed: {}", String::from_utf8_lossy(&output.stderr)),
));
}
}
let buf = fs::read(&file_descriptor_set_path).map_err(|e| {
Error::new(
e.kind(),
format!(
"unable to open file_descriptor_set_path: {}, OS: {}",
file_descriptor_set_path.display(),
e
),
)
})?;
let file_descriptor_set = FileDescriptorSet::decode(buf.as_slice()).map_err(|error| {
Error::new(
ErrorKind::InvalidInput,
format!("invalid FileDescriptorSet: {}", error),
)
})?;
Ok(file_descriptor_set)
}
/// Compile `.proto` files into Rust files during a Cargo build with additional code generator
/// configuration options.
///
/// This method is like the `prost_build::compile_protos` function, with the added ability to
/// specify non-default code generation options. See that function for more information about
/// the arguments and generated outputs.
///
/// The `protos` and `includes` arguments are ignored if `skip_protoc_run` is specified.
///
/// # Example `build.rs`
///
/// ```rust,no_run
/// # use std::io::Result;
/// fn main() -> Result<()> {
/// let mut prost_build = prost_build::Config::new();
/// prost_build.btree_map(&["."]);
/// prost_build.compile_protos(&["src/frontend.proto", "src/backend.proto"], &["src"])?;
/// Ok(())
/// }
/// ```
pub fn compile_protos(
&mut self,
protos: &[impl AsRef<Path>],
includes: &[impl AsRef<Path>],
) -> Result<()> {
// TODO: This should probably emit 'rerun-if-changed=PATH' directives for cargo, however
// according to [1] if any are output then those paths replace the default crate root,
// which is undesirable. Figure out how to do it in an additive way; perhaps gcc-rs has
// this figured out.
// [1]: http://doc.crates.io/build-script.html#outputs-of-the-build-script
let file_descriptor_set = self.load_fds(protos, includes)?;
self.compile_fds(file_descriptor_set)
}
pub(crate) fn write_includes(
&self,
mut modules: Vec<&Module>,
outfile: &mut impl Write,
basepath: Option<&PathBuf>,
file_names: &HashMap<Module, String>,
) -> Result<()> {
modules.sort();
let mut stack = Vec::new();
for module in modules {
while !module.starts_with(&stack) {
stack.pop();
self.write_line(outfile, stack.len(), "}")?;
}
while stack.len() < module.len() {
self.write_line(
outfile,
stack.len(),
&format!("pub mod {} {{", module.part(stack.len())),
)?;
stack.push(module.part(stack.len()).to_owned());
}
let file_name = file_names
.get(module)
.expect("every module should have a filename");
if basepath.is_some() {
self.write_line(
outfile,
stack.len(),
&format!("include!(\"{}\");", file_name),
)?;
} else {
self.write_line(
outfile,
stack.len(),
&format!("include!(concat!(env!(\"OUT_DIR\"), \"/{}\"));", file_name),
)?;
}
}
for depth in (0..stack.len()).rev() {
self.write_line(outfile, depth, "}")?;
}
Ok(())
}
fn write_line(&self, outfile: &mut impl Write, depth: usize, line: &str) -> Result<()> {
outfile.write_all(format!("{}{}\n", (" ").to_owned().repeat(depth), line).as_bytes())
}
/// Processes a set of modules and file descriptors, returning a map of modules to generated
/// code contents.
///
/// This is generally used when control over the output should not be managed by Prost,
/// such as in a flow for a `protoc` code generating plugin. When compiling as part of a
/// `build.rs` file, instead use [`Self::compile_protos()`].
pub fn generate(
&mut self,
requests: Vec<(Module, FileDescriptorProto)>,
) -> Result<HashMap<Module, String>> {
let mut modules = HashMap::new();
let mut packages = HashMap::new();
let message_graph = MessageGraph::new(requests.iter().map(|x| &x.1), self.boxed.clone());
let extern_paths = ExternPaths::new(&self.extern_paths, self.prost_types)
.map_err(|error| Error::new(ErrorKind::InvalidInput, error))?;
for (request_module, request_fd) in requests {
// Only record packages that have services
if !request_fd.service.is_empty() {
packages.insert(request_module.clone(), request_fd.package().to_string());
}
let buf = modules
.entry(request_module.clone())
.or_insert_with(String::new);
CodeGenerator::generate(self, &message_graph, &extern_paths, request_fd, buf);
if buf.is_empty() {
// Did not generate any code, remove from list to avoid inclusion in include file or output file list
modules.remove(&request_module);
}
}
if let Some(ref mut service_generator) = self.service_generator {
for (module, package) in packages {
let buf = modules.get_mut(&module).unwrap();
service_generator.finalize_package(&package, buf);
}
}
#[cfg(feature = "format")]
if self.fmt {
for buf in modules.values_mut() {
let file = syn::parse_file(buf).unwrap();
let formatted = prettyplease::unparse(&file);
*buf = formatted;
}
}
self.add_generated_modules(&mut modules);
Ok(modules)
}
fn add_generated_modules(&mut self, modules: &mut HashMap<Module, String>) {
for buf in modules.values_mut() {
let with_generated = "// This file is @generated by prost-build.\n".to_string() + buf;
*buf = with_generated;
}
}
}
/// Write a slice as the entire contents of a file.
///
/// This function will create a file if it does not exist,
/// and will entirely replace its contents if it does. When
/// the contents is already correct, it doesn't touch to the file.
fn write_file_if_changed(path: &Path, content: &[u8]) -> std::io::Result<()> {
let previous_content = fs::read(path);
if previous_content
.map(|previous_content| previous_content == content)
.unwrap_or(false)
{
trace!("unchanged: {}", path.display());
Ok(())
} else {
trace!("writing: {}", path.display());
fs::write(path, content)
}
}
impl default::Default for Config {
fn default() -> Config {
Config {
file_descriptor_set_path: None,
service_generator: None,
map_type: PathMap::default(),
bytes_type: PathMap::default(),
type_attributes: PathMap::default(),
message_attributes: PathMap::default(),
enum_attributes: PathMap::default(),
field_attributes: PathMap::default(),
boxed: PathMap::default(),
prost_types: true,
strip_enum_prefix: true,
out_dir: None,
extern_paths: Vec::new(),
default_package_filename: "_".to_string(),
enable_type_names: false,
type_name_domains: PathMap::default(),
protoc_args: Vec::new(),
protoc_executable: protoc_from_env(),
disable_comments: PathMap::default(),
skip_debug: PathMap::default(),
skip_protoc_run: false,
include_file: None,
prost_path: None,
#[cfg(feature = "format")]
fmt: true,
}
}
}
impl fmt::Debug for Config {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct("Config")
.field("file_descriptor_set_path", &self.file_descriptor_set_path)
.field("service_generator", &self.service_generator.is_some())
.field("map_type", &self.map_type)
.field("bytes_type", &self.bytes_type)
.field("type_attributes", &self.type_attributes)
.field("field_attributes", &self.field_attributes)
.field("prost_types", &self.prost_types)
.field("strip_enum_prefix", &self.strip_enum_prefix)
.field("out_dir", &self.out_dir)
.field("extern_paths", &self.extern_paths)
.field("default_package_filename", &self.default_package_filename)
.field("enable_type_names", &self.enable_type_names)
.field("type_name_domains", &self.type_name_domains)
.field("protoc_args", &self.protoc_args)
.field("disable_comments", &self.disable_comments)
.field("skip_debug", &self.skip_debug)
.field("prost_path", &self.prost_path)
.finish()
}
}
pub fn error_message_protoc_not_found() -> String {
let error_msg = "Could not find `protoc`. If `protoc` is installed, try setting the `PROTOC` environment variable to the path of the `protoc` binary.";
let os_specific_hint = if cfg!(target_os = "macos") {
"To install it on macOS, run `brew install protobuf`."
} else if cfg!(target_os = "linux") {
"To install it on Debian, run `apt-get install protobuf-compiler`."
} else {
"Try installing `protobuf-compiler` or `protobuf` using your package manager."
};
let download_msg =
"It is also available at https://github.com/protocolbuffers/protobuf/releases";
format!(
"{} {} {} For more information: https://docs.rs/prost-build/#sourcing-protoc",
error_msg, os_specific_hint, download_msg
)
}
/// Returns the path to the `protoc` binary.
pub fn protoc_from_env() -> PathBuf {
env::var_os("PROTOC")
.map(PathBuf::from)
.unwrap_or(PathBuf::from("protoc"))
}
/// Returns the path to the Protobuf include directory.
pub fn protoc_include_from_env() -> Option<PathBuf> {
let protoc_include: PathBuf = env::var_os("PROTOC_INCLUDE")?.into();
if !protoc_include.exists() {
panic!(
"PROTOC_INCLUDE environment variable points to non-existent directory ({})",
protoc_include.display()
);
}
if !protoc_include.is_dir() {
panic!(
"PROTOC_INCLUDE environment variable points to a non-directory file ({})",
protoc_include.display()
);
}
Some(protoc_include)
}
#[cfg(test)]
mod tests {
use super::*;
macro_rules! assert_starts_with {
($left:expr, $right:expr) => {
match (&$left, &$right) {
(left_val, right_val) => {
if !(left_val.starts_with(right_val)) {
panic!(
"assertion 'starts_with` failed:\nleft: {}\nright: {}",
left_val, right_val
)
}
}
}
};
}
#[test]
fn test_error_protoc_not_found() {
let mut config = Config::new();
config.protoc_executable("path-does-not-exist");
let err = config.load_fds(&[""], &[""]).unwrap_err();
assert_eq!(err.to_string(), error_message_protoc_not_found())
}
#[test]
fn test_error_protoc_not_executable() {
let mut config = Config::new();
config.protoc_executable("src/lib.rs");
let err = config.load_fds(&[""], &[""]).unwrap_err();
assert_starts_with!(err.to_string(), "failed to invoke protoc (hint: https://docs.rs/prost-build/#sourcing-protoc): (path: src/lib.rs): ")
}
#[test]
fn test_error_incorrect_skip_protoc_run() {
let mut config = Config::new();
config.skip_protoc_run();
let err = config.load_fds(&[""], &[""]).unwrap_err();
assert_eq!(
err.to_string(),
"file_descriptor_set_path is required with skip_protoc_run"
)
}
#[test]
fn test_error_protoc_failed() {
let mut config = Config::new();
let err = config.load_fds(&[""], &[""]).unwrap_err();
assert_starts_with!(
err.to_string(),
"protoc failed: You seem to have passed an empty string as one of the arguments to "
)
}
#[test]
fn test_error_non_existing_file_descriptor_set() {
let mut config = Config::new();
config.skip_protoc_run();
config.file_descriptor_set_path("path-does-not-exist");
let err = config.load_fds(&[""], &[""]).unwrap_err();
assert_starts_with!(
err.to_string(),
"unable to open file_descriptor_set_path: path-does-not-exist, OS: "
)
}
#[test]
fn test_error_text_incorrect_file_descriptor_set() {
let mut config = Config::new();
config.skip_protoc_run();
config.file_descriptor_set_path("src/lib.rs");
let err = config.load_fds(&[""], &[""]).unwrap_err();
assert_eq!(
err.to_string(),
"invalid FileDescriptorSet: failed to decode Protobuf message: unexpected end group tag"
)
}
#[test]
fn test_error_unset_out_dir() {
let mut config = Config::new();
let err = config
.compile_fds(FileDescriptorSet::default())
.unwrap_err();
assert_eq!(err.to_string(), "OUT_DIR environment variable is not set")
}
}