Skip to content

Commit 7337535

Browse files
author
Markus Westerlind
committedNov 23, 2021
fix: Ensure that the pascal_case_name is evaluated at compile time
1 parent 19b85cf commit 7337535

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed
 

‎src/lib.rs

+17-14
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,16 @@ able to parse any URI, such as `urn:isbn:0451450523`.
1919
#[macro_use]
2020
extern crate bitflags;
2121

22-
use serde::{Deserialize, Serialize};
23-
use std::fmt::Debug;
24-
pub use url::Url;
25-
26-
use std::collections::HashMap;
22+
use std::{collections::HashMap, fmt::Debug};
2723

28-
use serde::de;
29-
use serde::de::Error as Error_;
24+
use serde::{de, de::Error as Error_, Deserialize, Serialize};
3025
use serde_json::Value;
26+
pub use url::Url;
3127

32-
const fn fmt_pascal_case_const(name: &str) -> ([u8; 128], usize) {
33-
let mut buf = [0; 128];
28+
// Large enough to contain any enumeration name defined in this crate
29+
type PascalCaseBuf = [u8; 32];
30+
const fn fmt_pascal_case_const(name: &str) -> (PascalCaseBuf, usize) {
31+
let mut buf = [0; 32];
3432
let mut buf_i = 0;
3533
let mut name_i = 0;
3634
let name = name.as_bytes();
@@ -90,9 +88,13 @@ macro_rules! lsp_enum {
9088
impl std::convert::TryFrom<&str> for $typ {
9189
type Error = &'static str;
9290
fn try_from(value: &str) -> Result<Self, Self::Error> {
93-
match value {
91+
match () {
9492
$(
95-
_ if { let (buf, len) = crate::fmt_pascal_case_const(stringify!($name)); &buf[..len] == value.as_bytes() } => Ok(Self::$name),
93+
_ if {
94+
const X: (crate::PascalCaseBuf, usize) = crate::fmt_pascal_case_const(stringify!($name));
95+
let (buf, len) = X;
96+
&buf[..len] == value.as_bytes()
97+
} => Ok(Self::$name),
9698
)*
9799
_ => Err("unknown enum variant"),
98100
}
@@ -706,10 +708,10 @@ pub struct ConfigurationItem {
706708
}
707709

708710
mod url_map {
709-
use super::*;
710-
711711
use std::fmt;
712712

713+
use super::*;
714+
713715
pub fn deserialize<'de, D>(
714716
deserializer: D,
715717
) -> Result<Option<HashMap<Url, Vec<TextEdit>>>, D::Error>
@@ -2453,9 +2455,10 @@ impl SymbolTag {
24532455

24542456
#[cfg(test)]
24552457
mod tests {
2456-
use super::*;
24572458
use serde::{Deserialize, Serialize};
24582459

2460+
use super::*;
2461+
24592462
pub(crate) fn test_serialization<SER>(ms: &SER, expected: &str)
24602463
where
24612464
SER: Serialize + for<'de> Deserialize<'de> + PartialEq + std::fmt::Debug,

0 commit comments

Comments
 (0)
Please sign in to comment.