Giter Club home page Giter Club logo

Comments (19)

solnic avatar solnic commented on August 23, 2024

I wonder if this is even possible without dm-validations having knowledge about what objects are instantiated, so that it knows how to handle uniqueness checking. Outside of a repository block it would be mostly impossible for it to be able to find all initialized objects of a specific type.

by Dan Kubb (dkubb)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

It would be impossible outside a repository block. It would probably be hard even with one!

Could you make validations use this process on #save?

  • check if the property is unique among in-memory resources
  • check if the property is unique among persisted resources not in memory
  • save if both conditions are true

One problem I can see is that if this is RDBMS-backed, and the uniqueness is enforced there too, you’d need to have the whole thing run in a transaction, and make the check deferred.

Actually, I think this makes more sense in the context of Repository#save rather than Resource#save.

Just out of curiosity - if this problem was solved, what architectural improvements would come from making DataMapper capable of this kind of deferred/distributed checking?

by Ashley Moran

from dm-validations.

solnic avatar solnic commented on August 23, 2024

You can handle that by using special validation context. This is pretty much an edge case, I think it is not worth tweaking DM to address that at least at this point. There are more important things piled up.

May I close this ticket?

by Michael Klishin (antares)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

I’m not sure it represents an edge case. To me, it represents the class of situations where a new state of the repository is valid but can’t be determined by inspecting each resource against the repository individually. A similar one might be allowing only three "favourite" items, but the first save might temporarily put 4 in the repository.

Can you explain your context-based workaround though?

by Ashley Moran

from dm-validations.

solnic avatar solnic commented on August 23, 2024

And is there a way of marking tickets "deferred" or some such, so they are not marked closed but will not show up as noise in the current list of open, active tickets? It would be a shame to lose this. (And I don’t really want to have to use a separate system to track it later.)

by Ashley Moran

from dm-validations.

solnic avatar solnic commented on August 23, 2024

Sure. If you add validations context with all the same validations except for uniqueness, you then can swap unique value in that context. This may help in some cases.

In example used in original post this probably won’t work well, it is true. However, to keep track of all instantiated resources we’d need to override the constructor for DataMapper::Resources, and DM already has cumbersome logic of record instantiation (at least it was the case in 0.9 days): loaded resources are instantiated with .allocate, so constructor did not even get called.

by Michael Klishin (antares)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

I put it on hold for now

by Michael Klishin (antares)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

The point about new resources is a good one. You don’t want checks running against objects you don’t intend to save. I’ve also noticed the way constructors are not called with loaded resources - in fact I rely on it.

by Ashley Moran

from dm-validations.

solnic avatar solnic commented on August 23, 2024

Noticed the "hold" status - we can consider this one low priority for now and maybe I will revisit it when more important work is done.

by Ashley Moran

from dm-validations.

solnic avatar solnic commented on August 23, 2024

Normally what I do to "defer" a ticket is change the milestone to the next version after the one we’re working on. Other than reviewing new tickets, I mostly just look at the tickets for the next milestone to avoid getting overwhelmed :)

Just because something is for the next milestone doesn’t mean it’ll be done for that one, just that it will be reviewed and accepted or deferred out longer if it’s low priority or if it’s dependent on architectural changes (like this one.

I usually use hold to indicate that we am waiting on some piece of information from the submitter before proceeding.. like a failing test case if we can’t reproduce it, or a stacktrace or something.

by Dan Kubb (dkubb)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

Thanks for explaining this. I’m not aware of the conventions on LightHouse/with DataMapper’s use of LightHouse.

by Ashley Moran

from dm-validations.

solnic avatar solnic commented on August 23, 2024

I dunno if the way we’re doing it is optimal, but we’re evolving the approach and it seems to be working relatively well with a few tweaks here and there :)

by Dan Kubb (dkubb)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

[project:id#20609 not-tagged:"0.10.0" not-tagged:"0.10.1" milestone:id#51895 bulk edit command]

by Dan Kubb (dkubb)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

[bulk edit]

by Dan Kubb (dkubb)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

I haven’t seen any activity my antares on this in a while, so I am removing it from the 1.0.0 milestone.

I am also removing antares from the assignee since he hasn’t been around in a while and I don’t want this ticket sitting in limbo too long.. others in the community may want to take it on, but may not if it looks like it’s assigned to someone else.

by Dan Kubb (dkubb)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

I imagine more people would be put off by the fact the spec uses Bluebell Farm and a cow called Daisy as example data.

Now what I’d really like to do is write a Unit of Work engine, which might give an opportunity to solve this elegantly...

by Ashley Moran

from dm-validations.

solnic avatar solnic commented on August 23, 2024

@ashley: I have a uow branch under my personal fork of dm-core:

http://github.com/dkubb/dm-core/commits/uow

I wasn’t able to finish it in time for DM 1.0, and about ~50 specs currently fail with dm-core. I’m pretty confident it’s the right approach though.

It builds up a DAG of resources, then uses a topological sort to order them so that dependencies can be saved in the correct order. It’s much cleaner than the way we currently handle saving inside DM::Resource. This approach is how SQL Alchemy handles saving an object graph properly.

For now, the UoW is meant to be hidden behind a Resource#save call, but in the future I could see it becoming part of the public API. The goal for DM2 will be to allow persistence of normal ruby objects and I think a nice UoW API will be a big part of this.

I will probably resume work on this after 1.0. Hopefully I can get the issues ironed out in time for 1.1

by Dan Kubb (dkubb)

from dm-validations.

solnic avatar solnic commented on August 23, 2024

Had no idea you were working on that! I’m excited :-) I have some stuff to work through first but I will hopefully look over the code at some point.

by Ashley Moran

from dm-validations.

solnic avatar solnic commented on August 23, 2024

Although it’s DBMS-specific, the "Deferrable unique constraints, now permit mass updates to unique keys" feature of PostgreSQL 9 may be of use here:

http://developer.postgresql.org/pgdocs/postgres/release-9-0.html

Don’t take my word for it, though - I didn’t think about it too hard :)

by Ashley Moran

from dm-validations.

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.