GithubHelp home page GithubHelp logo

Comments (4)

zslayton avatar zslayton commented on July 17, 2024

I'm in favor of this change. 👍

Lastly If you expose ScheduleFields (and add a getter to Schedule), it can be used for equality. This means that you can use the Schedule::source for a quick equality check of Schedules, and if you have a use case where you need to check for equivalence, you can manually choose to use the more "expensive" ScheduleFields equality check.

I'd like to offer this functionality, but rather than exposing ScheduleFields I'd have something like a pub fn ordinals_eq(&self, other: Schedule) -> bool method. This keeps the ScheduleFields type internal, allowing us to do other refactoring in the future if we need to. The Schedule type already allows you to access the TimeUnitSpec of each field. Thoughts?

from cron.

koenichiwa avatar koenichiwa commented on July 17, 2024

A use case to expose the fields would be that you can use them as a key for a map. See: #62 (comment)

from cron.

zslayton avatar zslayton commented on July 17, 2024

This may be a naming problem, but the distinction between a Schedule and a ScheduleFields isn't very useful to an end-user. The primary difference would be their definition of traits like PartialEq; there wouldn't be much reason for the user to request the ScheduleFields beyond that. They could achieve the same thing with a wrapper type, something like:

struct OrdinalsEqSchedule(Schedule);
//...impl PartialEq to use `ordinals_eq`

let my_schedule: Schedule = /*...*/;
let tasks: Vec<ExecuteOnSchedule> = /*...*/;
let mut tasks_to_execute: HashMap<OrdinalsEqSchedule, Vec<ExecuteOnSchedule>> = HashMap::new();
tasks_to_execute.insert(OrdinalsEqSchedule(my_schedule), tasks);

This makes me think that the comparatively expensive ordinals check should be Schedule's go-to definition of equality and that someone concerned with performance would instead do schedule1.expression() == schedule2.expression() or use schedule.expression() as their map key.

from cron.

koenichiwa avatar koenichiwa commented on July 17, 2024

Checking only on the TimeSpecs checks for equivalence though, not complete equality. The less expensive check on only the string checks for complete equality of two Schedules.

I can stand behind exposing a wrapper that checks equality on just the TimeSpecs, but I would keep Schedule's standard equality check as a check on just the string.

But maybe that's for another PR. I see you prefer not exposing ScheduleFields, and I can understand why🙂

from cron.

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.