-
-
Notifications
You must be signed in to change notification settings - Fork 705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add functional style regex pattern-matching #9969
Labels
Comments
bearophile_hugs commented on 2013-04-07T04:43:15ZAnother way to do this is with the unapply() of Issue 596 |
GenericNPC commented on 2013-04-08T10:22:37Z(In reply to comment #1)
> Another way to do this is with the unapply() of Issue 596
Yes, it looks like it is possible to do this with unapply(which should be opUnapply to be compatible with D's naming conventions). However:
1) In the GitHub pull request, Dmitry Olshansky suggests to combine all patterns to a single, big pattern, to improve performance. I have no idea how to do it, but it might be done in the future, and it can't be done with the switch+opUnapply version.
2) switch in D is a statement, not an expressions - it does not return a value.
3) Scala's unapply for regular expressions does not convert data types. I don't know if it can be done in D's version - it's too early to tell, seeing that opUnapply has not been implemented yet.
4) opUnapply is not in D yet - it's still an enhancement suggestion. We don't know what complications we are gonna have when we try to use it for regular expressions. |
dmitry.olsh (@DmitryOlshansky) commented on 2013-04-08T13:03:10ZOnly to add:
5) We can always add better abstraction if/when we are confident it's actualy better.
P.S. Doing minor correction - I'm reopening this untill the pull gets in. Let's do it pedantically in order ;)
@IdanArye
What we've unofficially all came to is a 3 step procedure:
1. Report
2. Pull posted there and keyword _pull_ is set.
3. Commits get posted automatically by post-commit hook, then somebody takes time to check and close it.
For the moment we are (sort of) at the stage 2. |
dmitry.olsh (@DmitryOlshansky) commented on 2013-04-08T13:03:43Zhttps://github.com/D-Programming-Language/phobos/pull/1241 |
GenericNPC commented on 2013-04-08T13:10:03Z(In reply to comment #3)
> Only to add:
> 5) We can always add better abstraction if/when we are confident it's actualy
> better.
>
> P.S. Doing minor correction - I'm reopening this untill the pull gets in. Let's
> do it pedantically in order ;)
>
> @IdanArye
>
> What we've unofficially all came to is a 3 step procedure:
> 1. Report
> 2. Pull posted there and keyword _pull_ is set.
> 3. Commits get posted automatically by post-commit hook, then somebody takes
> time to check and close it.
>
> For the moment we are (sort of) at the stage 2.
Oh, sorry. Had no idea about needing the `pull` keyword, or auto-closing when the request is pulled. My previous contribution to Phobos was done entirely on GitHub...
Just to be clear - the rule is still to use a single commit message for the contribution, using git's history rewriting functionality to make fixes, right? |
dmitry.olsh (@DmitryOlshansky) commented on 2013-04-08T13:33:32Z(In reply to comment #5)
> (In reply to comment #3)
> > For the moment we are (sort of) at the stage 2.
>
> Oh, sorry. Had no idea about needing the `pull` keyword, or auto-closing when
> the request is pulled. My previous contribution to Phobos was done entirely on
> GitHub...
>
> Just to be clear - the rule is still to use a single commit message for the
> contribution, using git's history rewriting functionality to make fixes, right?
Yup, all the same. Plus this new idea of issue pre new stuff too.
I've seen cases where it the hook doesn't do closing. Could be a glitch or that an issue was mentioned but not as "fix issue xyz" but rather simply "issue xyz". |
GenericNPC commented on 2013-04-08T14:30:50Z(In reply to comment #6)
> (In reply to comment #5)
> > (In reply to comment #3)
> > > For the moment we are (sort of) at the stage 2.
> >
> > Oh, sorry. Had no idea about needing the `pull` keyword, or auto-closing when
> > the request is pulled. My previous contribution to Phobos was done entirely on
> > GitHub...
> >
> > Just to be clear - the rule is still to use a single commit message for the
> > contribution, using git's history rewriting functionality to make fixes, right?
>
> Yup, all the same. Plus this new idea of issue pre new stuff too.
>
> I've seen cases where it the hook doesn't do closing. Could be a glitch or that
> an issue was mentioned but not as "fix issue xyz" but rather simply "issue
> xyz".
I used the GitHub syntax and wrote "fix #9895". I've changed it now to "fix issue 9895" to avoid problems... |
dmitry.olsh (@DmitryOlshansky) commented on 2016-04-06T13:18:16ZThe key building block has arrived:
https://github.com/D-Programming-Language/phobos/pull/4158 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
GenericNPC reported this on 2013-04-07T04:25:10Z
Transfered from https://issues.dlang.org/show_bug.cgi?id=9895
CC List
Description
Based on Scala's pattern-matching with regular expressions syntax, I created the function std.regex.regexSwitch(formerly switchRegex). It's main use-case is for reading textual input fields that can be in multiple formats: enum WeekDay { Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday } struct Schedule { WeekDay day; int hour; } assert(equal( [ Schedule(WeekDay.Sunday, 1), Schedule(WeekDay.Monday, 14), Schedule(WeekDay.Tuesday, 3), Schedule(WeekDay.Wednesday, 4), Schedule(WeekDay.Thursday, 17), Schedule(WeekDay.Friday, 6), ], [ "Sunday 1AM", "Monday 2PM", "Tuesday 3", "4AM Wednesday", "5PM Thursday", "6 Friday", ].map!(regexSwitch!( `(\w+) (\d+)AM`, (WeekDay day, int hour) => Schedule(day, hour % 12), `(\w+) (\d+)PM`, (WeekDay day, int hour) => Schedule(day, hour % 12 + 12), `(\w+) (\d+)`, (WeekDay day, int hour) => Schedule(day, hour), `(\d+)AM (\w+)`, (int hour, WeekDay day) => Schedule(day, hour % 12), `(\d+)PM (\w+)`, (int hour, WeekDay day) => Schedule(day, hour % 12 + 12), `(\d+) (\w+)`, (int hour, WeekDay day) => Schedule(day, hour), ))())); See https://github.com/D-Programming-Language/phobos/pull/1241The text was updated successfully, but these errors were encountered: