GithubHelp home page GithubHelp logo

coercion about jsv HOT 14 CLOSED

garycourt avatar garycourt commented on August 22, 2024
coercion

from jsv.

Comments (14)

garycourt avatar garycourt commented on August 22, 2024

That's a tough question. I believe the best place to add such a feature would be in the validator functions of each attribute. You could check the type of the instance, and locally convert as necessary.

from jsv.

dvv avatar dvv commented on August 22, 2024

I see. How do I persist coerced instance? I see there are .getType(), .getValue(), but not _set_Value()?

from jsv.

garycourt avatar garycourt commented on August 22, 2024

Yea, JSV is not designed to handle changes on the fly. If you want to change an instance, you have to create a new instance with the new value.

from jsv.

dvv avatar dvv commented on August 22, 2024

By instance you mean the whole object being validated? Couldn't you throw a gist on how do I recreate the instance given a validation error occured?

from jsv.

garycourt avatar garycourt commented on August 22, 2024

Instances can be created using:

environment.createInstance(newValue, "uri");

from jsv.

dvv avatar dvv commented on August 22, 2024

I mean if I validate {a:{b:{c:"true"}}} and during validation the current execution point has dived two levels deep and is validating {c: "true"}, and I want to coercively validate "true" to be true, how do I patch the instance being validated so that it contained {c: true}?

Possible?

--Vladimir

from jsv.

garycourt avatar garycourt commented on August 22, 2024

Not without complications. I wouldn't recommend changing the instance being validated, but perhaps attaching a new instance to the report object that is a coerced copy of the instance being validated?

from jsv.

dvv avatar dvv commented on August 22, 2024

Great idea! I'd call it request for feature. Can I ask you to implement this?

from jsv.

garycourt avatar garycourt commented on August 22, 2024

Well, it's pretty low on my priority list; and I'm quite busy till January. If some other people express interest in this, I'll look into doing it then.

from jsv.

dvv avatar dvv commented on August 22, 2024

I'll point you to one very interesting case imho. When storing hierarchical data to redis, one chooses between storing the whole JSON, or each key separately. The latter case eases querying, sorting and so on, but the stored data are always stringy.

Being able to pipe fetched set of strings be coerced to real object by simple validation by your schema opens the way to store rich objects in redis!

from jsv.

garycourt avatar garycourt commented on August 22, 2024

Could you not store the value in a JSON format? What I mean is that in the redis value, you store the JSON primitive (null, boolean, number, string) as JSON:

null,
true, false,
0.0,
"string"

Then, when you extract the value from redis you use JSON.parse(), which will properly convert.

from jsv.

dvv avatar dvv commented on August 22, 2024
  • JSON.parse() is way expensive
  • what if i want to store string "true"

from jsv.

garycourt avatar garycourt commented on August 22, 2024

JSON.parse is way faster then using JSV. And if you wanted to store that string, you surround it in quotation (") marks, like you did there.

from jsv.

dvv avatar dvv commented on August 22, 2024
  • JSV is supposed to be called once, JSON.parse() -- as much times as fields you have
  • how do I know that I want it be string? I want procedure that saves/fetches records be neutral to what it saves/fetches. The only knowledge it should have -- the schema.

Nevermind, I respect your "no".

from jsv.

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.