Giter Site home page Giter Site logo

Comments (2)

gkorland avatar gkorland commented on June 15, 2024 1

thanks that is how we ended up implementing it :)
https://github.com/RedisLabsModules/RedisDoc/blob/4dc407d4682ce4b5569342c7136e7cffec68c153/src/redisjson.rs#L70

from jsonpath.

freestrings avatar freestrings commented on June 15, 2024

This is not possible with SelectorMut. If necessary, you can implement as follows. and i am still thinking whether to support the built-in count-aware delete function or not.

extern crate jsonpath_lib as jsonpath;
extern crate serde;
extern crate serde_json;

fn delete(json: serde_json::Value, path: &str) -> Result<(usize, Option<serde_json::Value>), jsonpath::JsonPathError> {
	let mut count = 0;
	let mut selector = jsonpath::SelectorMut::default();

	let ret = selector
		.value(json)
		.str_path(path)?
		.replace_with(&mut |_| {
			count = count + 1;
			serde_json::Value::Null
		})?
		.take();

	Ok((count, ret))
}

fn main() -> Result<(), jsonpath::JsonPathError> {
	let json = serde_json::from_str(r#"
	{
		"a": {
			"b": 2
		}
	}
	"#).unwrap();

	let (count, ret) = delete(json, "$.a.b")?;

	println!("{}, {:?}", count, ret);
	Ok(())
}

from jsonpath.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.