improve error message

This commit is contained in:
freestrings 2019-06-19 15:09:42 +09:00
parent 6a270c9456
commit fff0e869cb
8 changed files with 21 additions and 11 deletions

View File

@ -198,7 +198,7 @@
/******/ promises.push(installedWasmModuleData); /******/ promises.push(installedWasmModuleData);
/******/ else { /******/ else {
/******/ var importObject = wasmImportObjects[wasmModuleId](); /******/ var importObject = wasmImportObjects[wasmModuleId]();
/******/ var req = fetch(__webpack_require__.p + "" + {"../all_pkg/jsonpath_wasm_bg.wasm":"936e94ea88fa30f5750a"}[wasmModuleId] + ".module.wasm"); /******/ var req = fetch(__webpack_require__.p + "" + {"../all_pkg/jsonpath_wasm_bg.wasm":"d60993d3a441db221b47"}[wasmModuleId] + ".module.wasm");
/******/ var promise; /******/ var promise;
/******/ if(importObject instanceof Promise && typeof WebAssembly.compileStreaming === 'function') { /******/ if(importObject instanceof Promise && typeof WebAssembly.compileStreaming === 'function') {
/******/ promise = Promise.all([WebAssembly.compileStreaming(req), importObject]).then(function(items) { /******/ promise = Promise.all([WebAssembly.compileStreaming(req), importObject]).then(function(items) {

Binary file not shown.

2
docs/bootstrap.js vendored
View File

@ -198,7 +198,7 @@
/******/ promises.push(installedWasmModuleData); /******/ promises.push(installedWasmModuleData);
/******/ else { /******/ else {
/******/ var importObject = wasmImportObjects[wasmModuleId](); /******/ var importObject = wasmImportObjects[wasmModuleId]();
/******/ var req = fetch(__webpack_require__.p + "" + {"../all_pkg/jsonpath_wasm_bg.wasm":"936e94ea88fa30f5750a"}[wasmModuleId] + ".module.wasm"); /******/ var req = fetch(__webpack_require__.p + "" + {"../all_pkg/jsonpath_wasm_bg.wasm":"d60993d3a441db221b47"}[wasmModuleId] + ".module.wasm");
/******/ var promise; /******/ var promise;
/******/ if(importObject instanceof Promise && typeof WebAssembly.compileStreaming === 'function') { /******/ if(importObject instanceof Promise && typeof WebAssembly.compileStreaming === 'function') {
/******/ promise = Promise.all([WebAssembly.compileStreaming(req), importObject]).then(function(items) { /******/ promise = Promise.all([WebAssembly.compileStreaming(req), importObject]).then(function(items) {

Binary file not shown.

View File

@ -1,4 +1,3 @@
use std::io::Write;
use std::result::Result; use std::result::Result;
use super::path_reader::{PathReader, ReaderError}; use super::path_reader::{PathReader, ReaderError};
@ -368,13 +367,7 @@ impl<'a> TokenReader<'a> {
} }
pub fn err_msg_with_pos(&self, pos: usize) -> String { pub fn err_msg_with_pos(&self, pos: usize) -> String {
let mut w = Vec::new(); format!("{}\n{}", self.origin_input, "^".repeat(pos))
writeln!(&mut w, "{}", self.origin_input).unwrap();
writeln!(&mut w, "{}", "^".repeat(pos)).unwrap();
match std::str::from_utf8(&w[..]) {
Ok(s) => s.to_owned(),
Err(_) => panic!("Invalid UTF-8"),
}
} }
pub fn err_msg(&self) -> String { pub fn err_msg(&self) -> String {

View File

@ -1,4 +1,5 @@
use std::collections::HashSet; use std::collections::HashSet;
use std::fmt;
use array_tool::vec::{Intersect, Union}; use array_tool::vec::{Intersect, Union};
use indexmap::IndexMap; use indexmap::IndexMap;
@ -514,7 +515,6 @@ enum FilterKey {
All, All,
} }
#[derive(Debug)]
pub enum JsonPathError { pub enum JsonPathError {
EmptyPath, EmptyPath,
EmptyValue, EmptyValue,
@ -522,6 +522,23 @@ pub enum JsonPathError {
Serde(String), Serde(String),
} }
impl fmt::Debug for JsonPathError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self)
}
}
impl fmt::Display for JsonPathError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
JsonPathError::EmptyPath => f.write_str("path not set"),
JsonPathError::EmptyValue => f.write_str("json value not set"),
JsonPathError::Path(msg) => f.write_str(&format!("path error: \n{}\n", msg)),
JsonPathError::Serde(msg) => f.write_str(&format!("serde error: \n{}\n", msg)),
}
}
}
#[derive(Debug)] #[derive(Debug)]
pub struct Selector<'a, 'b> { pub struct Selector<'a, 'b> {
node: Option<Node>, node: Option<Node>,