-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathlib.rs
More file actions
251 lines (214 loc) · 8.29 KB
/
Copy pathlib.rs
File metadata and controls
251 lines (214 loc) · 8.29 KB
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
#![deny(missing_docs)]
#![warn(rust_2018_idioms)]
#![allow(clippy::option_option)]
//! Crate for internal use by other graphql-client crates, for code generation.
//!
//! It is not meant to be used directly by users of the library.
use lazy_static::*;
use proc_macro2::TokenStream;
use quote::*;
mod codegen;
mod codegen_options;
/// Deprecation-related code
pub mod deprecation;
/// Contains the [Schema] type and its implementation.
pub mod schema;
mod constants;
mod generated_module;
/// Normalization-related code
pub mod normalization;
mod query;
mod type_qualifiers;
#[cfg(test)]
mod tests;
pub use crate::codegen_options::{CodegenMode, GraphQLClientCodegenOptions};
use std::{collections::BTreeMap, fmt::Display, io};
#[derive(Debug)]
struct GeneralError(String);
impl Display for GeneralError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str(&self.0)
}
}
impl std::error::Error for GeneralError {}
type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;
type CacheMap<T> = std::sync::Mutex<BTreeMap<std::path::PathBuf, T>>;
lazy_static! {
static ref SCHEMA_CACHE: CacheMap<schema::Schema> = CacheMap::default();
static ref QUERY_CACHE: CacheMap<(String, graphql_parser::query::Document<'static, String>)> =
CacheMap::default();
}
/// Generates Rust code given a query document, a schema and options.
pub fn generate_module_token_stream(
query_path: std::path::PathBuf,
schema_path: &std::path::Path,
options: GraphQLClientCodegenOptions,
) -> Result<TokenStream, BoxError> {
use std::collections::btree_map;
let schema_extension = schema_path
.extension()
.and_then(std::ffi::OsStr::to_str)
.unwrap_or("INVALID");
let schema_string;
// Check the schema cache.
let schema: schema::Schema = {
let mut lock = SCHEMA_CACHE.lock().expect("schema cache is poisoned");
match lock.entry(schema_path.to_path_buf()) {
btree_map::Entry::Occupied(o) => o.get().clone(),
btree_map::Entry::Vacant(v) => {
schema_string = read_file(v.key())?;
let schema = match schema_extension {
"graphql" | "gql" => {
let s = graphql_parser::schema::parse_schema::<&str>(&schema_string).map_err(|parser_error| GeneralError(format!("Parser error: {}", parser_error)))?;
schema::Schema::from(s)
}
"json" => {
let parsed: graphql_introspection_query::introspection_response::IntrospectionResponse = serde_json::from_str(&schema_string)?;
schema::Schema::from(parsed)
}
extension => return Err(GeneralError(format!("Unsupported extension for the GraphQL schema: {} (only .json and .graphql are supported)", extension)).into())
};
v.insert(schema).clone()
}
}
};
// We need to qualify the query with the path to the crate it is part of
let (query_string, query) = {
let mut lock = QUERY_CACHE.lock().expect("query cache is poisoned");
match lock.entry(query_path) {
btree_map::Entry::Occupied(o) => o.get().clone(),
btree_map::Entry::Vacant(v) => {
let query_string = read_file(v.key())?;
let query = graphql_parser::parse_query(&query_string)
.map_err(|err| GeneralError(format!("Query parser error: {}", err)))?
.into_static();
v.insert((query_string, query)).clone()
}
}
};
let query = crate::query::resolve(&schema, &query)?;
// Determine which operation we are generating code for. This will be used in operationName.
let operations = options
.operation_name
.as_ref()
.and_then(|operation_name| query.select_operation(operation_name, *options.normalization()))
.map(|op| vec![op]);
let operations = match (operations, &options.mode) {
(Some(ops), _) => ops,
(None, &CodegenMode::Cli) => query.operations().collect(),
(None, &CodegenMode::Derive) => {
return Err(GeneralError(derive_operation_not_found_error(
options.struct_ident(),
&query,
))
.into());
}
};
let query_strings = extract_queries(query_string.as_str(), query.get_query_string_positions());
// The generated modules.
let mut modules = Vec::with_capacity(operations.len());
for (index, operation) in operations.iter().enumerate() {
let generated = generated_module::GeneratedModule {
query_string: query_strings[index],
schema: &schema,
resolved_query: &query,
operation: &operation.1.name,
options: &options,
}
.to_token_stream()?;
modules.push(generated);
}
let modules = quote! { #(#modules)* };
Ok(modules)
}
/// extracts single query strings from the larger query string using positions which are assumed to be present
fn extract_queries<'a>(
query_string: &'a str,
positions: &[query::QueryStringPosition],
) -> Vec<&'a str> {
positions
.iter()
.map(|position| {
let start_pos = &position.start.unwrap();
let start_idx = get_string_index(query_string, start_pos.line, start_pos.column);
let end_idx = match &position.end {
Some(end_pos) => get_string_index(query_string, end_pos.line, end_pos.column),
None => query_string.len(),
};
&query_string[start_idx..end_idx]
})
.collect()
}
/// helper function for extract_queries
fn get_string_index(s: &str, line: usize, column: usize) -> usize {
let mut current_line = 1;
for (i, c) in s.char_indices() {
if current_line == line {
return i + column - 1;
}
if c == '\n' {
current_line += 1;
}
}
s.len() // Return the end of the string if the line/column isn't found
}
#[derive(Debug)]
enum ReadFileError {
FileNotFound { path: String, io_error: io::Error },
ReadError { path: String, io_error: io::Error },
}
impl Display for ReadFileError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
ReadFileError::FileNotFound { path, .. } => {
write!(f, "Could not find file with path: {}\n
Hint: file paths in the GraphQLQuery attribute are relative to the project root (location of the Cargo.toml). Example: query_path = \"src/my_query.graphql\".", path)
}
ReadFileError::ReadError { path, .. } => {
f.write_str("Error reading file at: ")?;
f.write_str(path)
}
}
}
}
impl std::error::Error for ReadFileError {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
ReadFileError::FileNotFound { io_error, .. }
| ReadFileError::ReadError { io_error, .. } => Some(io_error),
}
}
}
fn read_file(path: &std::path::Path) -> Result<String, ReadFileError> {
use std::fs;
use std::io::prelude::*;
let mut out = String::new();
let mut file = fs::File::open(path).map_err(|io_error| ReadFileError::FileNotFound {
io_error,
path: path.display().to_string(),
})?;
file.read_to_string(&mut out)
.map_err(|io_error| ReadFileError::ReadError {
io_error,
path: path.display().to_string(),
})?;
Ok(out)
}
/// In derive mode, build an error when the operation with the same name as the struct is not found.
fn derive_operation_not_found_error(
ident: Option<&proc_macro2::Ident>,
query: &crate::query::Query,
) -> String {
let operation_name = ident.map(ToString::to_string);
let struct_ident = operation_name.as_deref().unwrap_or("");
let available_operations: Vec<&str> = query
.operations()
.map(|(_id, op)| op.name.as_str())
.collect();
let available_operations: String = available_operations.join(", ");
format!(
"The struct name does not match any defined operation in the query file.\nStruct name: {}\nDefined operations: {}",
struct_ident,
available_operations,
)
}