gcc/libgrust/libproc_macro/bridge/literal.rs
Sahil Yeole 767698ff6c Update copyright years.
Signed-off-by: Sahil Yeole <sahilyeole93@gmail.com>
2024-02-21 13:51:26 +01:00

264 lines
7.1 KiB
Rust

// Copyright (C) 2023-2024 Free Software Foundation, Inc.
//
// This file is part of the GNU Proc Macro Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.
// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
// <http://www.gnu.org/licenses/>.
use bridge::{ffistring::FFIString, span::Span};
use std::fmt;
use std::str::FromStr;
use LexError;
extern "C" {
fn Literal__from_string(str: FFIString, lit: *mut Literal) -> bool;
}
#[repr(C)]
#[derive(Debug, Clone, Copy)]
pub enum LitKind {
Byte,
Char,
Integer,
Float,
Str,
StrRaw(u8),
ByteStr,
ByteStrRaw(u8),
Err,
}
#[repr(C)]
#[derive(Debug, Clone)]
pub struct Literal {
kind: LitKind,
text: FFIString,
suffix: FFIString,
span: Span,
}
macro_rules! suffixed_int_literals {
($($name: ident => $kind: ident,)*) => ($(
pub fn $name(n : $kind) -> Literal {
Literal {
kind : LitKind::Integer,
text: FFIString::from(&n.to_string()),
suffix: FFIString::from(stringify!($kind)),
span: Span::default(),
}
}
)*)
}
macro_rules! unsuffixed_int_literals {
($($name: ident => $kind: ident,)*) => ($(
pub fn $name(n : $kind) -> Literal {
Literal {
kind : LitKind::Integer,
text: FFIString::from(&n.to_string()),
suffix: FFIString::from(""),
span: Span::default(),
}
}
)*)
}
impl Literal {
suffixed_int_literals! {
u8_suffixed => u8,
u16_suffixed => u16,
u32_suffixed => u32,
u64_suffixed => u64,
u128_suffixed => u128,
usize_suffixed => usize,
i8_suffixed => i8,
i16_suffixed => i16,
i32_suffixed => i32,
i64_suffixed => i64,
i128_suffixed => i128,
isize_suffixed => isize,
}
unsuffixed_int_literals! {
u8_unsuffixed => u8,
u16_unsuffixed => u16,
u32_unsuffixed => u32,
u64_unsuffixed => u64,
u128_unsuffixed => u128,
usize_unsuffixed => usize,
i8_unsuffixed => i8,
i16_unsuffixed => i16,
i32_unsuffixed => i32,
i64_unsuffixed => i64,
i128_unsuffixed => i128,
isize_unsuffixed => isize,
}
pub fn f32_unsuffixed(n: f32) -> Self {
let mut repr = n.to_string();
if !repr.contains('.') {
repr.push_str(".0");
}
Literal {
kind: LitKind::Float,
text: FFIString::from(&repr),
suffix: FFIString::from(""),
span: Span::default(),
}
}
pub fn f32_suffixed(n: f32) -> Self {
Literal {
kind: LitKind::Float,
text: FFIString::from(&n.to_string()),
suffix: FFIString::from("f32"),
span: Span::default(),
}
}
pub fn f64_unsuffixed(n: f64) -> Self {
let mut repr = n.to_string();
if !repr.contains('.') {
repr.push_str(".0");
}
Literal {
kind: LitKind::Float,
text: FFIString::from(&repr),
suffix: FFIString::from(""),
span: Span::default(),
}
}
pub fn f64_suffixed(n: f64) -> Self {
Literal {
kind: LitKind::Float,
text: FFIString::from(&n.to_string()),
suffix: FFIString::from("f64"),
span: Span::default(),
}
}
pub fn string(string: &str) -> Self {
Literal {
kind: LitKind::Str,
text: FFIString::from(string),
suffix: FFIString::from(""),
span: Span::default(),
}
}
pub fn character(c: char) -> Self {
Literal {
kind: LitKind::Char,
text: FFIString::from(&c.to_string()),
suffix: FFIString::from(""),
span: Span::default(),
}
}
pub fn byte_string(bytes: &[u8]) -> Self {
Literal {
kind: LitKind::ByteStr,
text: FFIString::from(&bytes.escape_ascii().to_string()),
suffix: FFIString::from(""),
span: Span::default(),
}
}
pub fn span(&self) -> Span {
self.span
}
pub fn set_span(&mut self, span: Span) {
self.span = span;
}
}
impl fmt::Display for Literal {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let text = &self.text.to_string();
match self.kind {
LitKind::Byte => {
f.write_str("b'")?;
f.write_str(text)?;
f.write_str("'")?;
}
LitKind::Char => {
f.write_str("'")?;
f.write_str(text)?;
f.write_str("'")?;
}
LitKind::Str => {
f.write_str("\"")?;
f.write_str(text)?;
f.write_str("\"")?;
}
LitKind::StrRaw(n) => {
f.write_str("r")?;
for _ in 0..n {
f.write_str("#")?;
}
f.write_str("\"")?;
f.write_str(text)?;
f.write_str("\"")?;
}
LitKind::ByteStr => {
f.write_str("b\"")?;
f.write_str(text)?;
f.write_str("\"")?;
}
LitKind::ByteStrRaw(n) => {
f.write_str("br")?;
for _ in 0..n {
f.write_str("#")?;
}
f.write_str("\"")?;
f.write_str(text)?;
f.write_str("\"")?;
}
_ => f.write_str(text)?,
}
f.write_str(&self.suffix.to_string())?;
Ok(())
}
}
impl FromStr for Literal {
type Err = LexError;
fn from_str(string: &str) -> Result<Self, LexError> {
// Structure that will be filled in by the cpp
let mut lit = Literal {
kind: LitKind::Err,
text: FFIString::from(""),
suffix: FFIString::from(""),
span: Span::default(),
};
// TODO: We might want to pass a LexError by reference to retrieve
// error information
if unsafe { Literal__from_string(string.into(), &mut lit as *mut Literal) } {
Err(LexError)
} else {
Ok(lit)
}
}
}