Тёмный

Functional Parsing - Computerphile 

Computerphile
Подписаться 2,4 млн
Просмотров 133 тыс.
50% 1

Functional or Combinator Parsing explained by Professor Graham Hutton.
Professor Hutton's Functional Parsing Library: bit.ly/C_FunctParsLib
/ computerphile
/ computer_phile
This video was filmed and edited by Sean Riley.
Computer Science at the University of Nottingham: bit.ly/nottscomputer
Computerphile is a sister project to Brady Haran's Numberphile. More at www.bradyharan.com

Опубликовано:

 

4 фев 2020

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 359   
4 года назад
Types 20+ lines of Haskell program in a single breath, then gets 0 warnings or errors from GHC, then goes on as if it is totally normal...
@jeremiahglover7562
@jeremiahglover7562 4 года назад
Profile picture checks out.
@petros_adamopoulos
@petros_adamopoulos 4 года назад
Because it is normal. He's done this kind of code many times before.
@warpmonkey
@warpmonkey 4 года назад
And no StackOverflow screen up!
@maxtaylor3531
@maxtaylor3531 4 года назад
The Graham Haskell Compiler
@akoppela
@akoppela 4 года назад
That's totally normal
@ruskiikoshka
@ruskiikoshka 4 года назад
The videos of this guy are a treasure, thanks a lot!
@PaxiKaksi
@PaxiKaksi 4 года назад
So glad my university teaches Haskell. Even if you dont ever use it in your work, learning to program in that language makes you a better programmer and writing a compiler is usually a thing that Haskell will be used for.
@sebastiangudino9377
@sebastiangudino9377 7 месяцев назад
Yup, compilers are one of the more functionally pure things you can program. They are VERY complex, but they just are fancy "String input, string output" machines when you look at the big picture
@nanthilrodriguez
@nanthilrodriguez 5 месяцев назад
Now go learn apl
@StephenFarthing
@StephenFarthing 4 года назад
Thanks, that was very illuminating. And it’s nice to see Haskell being used in a practical setting.
@JobvanderZwan
@JobvanderZwan 4 года назад
Regarding the "list of results" remark, maybe a fun example would be a parser that can handle all possible interpretations of "time flies like an arrow, fruit flies like a banana"
@ais4185
@ais4185 4 года назад
That's a cool one.
@maxclifford937
@maxclifford937 4 года назад
Had to pause the video say, after studying parsers a lot recently I think the beginning explanation is on of the best of what a parser actually is
@petros_adamopoulos
@petros_adamopoulos 4 года назад
I think it sounds like an ideal explanation, when you know the subject well beforehand, interesting.
@olamarvin
@olamarvin 4 года назад
"It doesn't matter if you know any Haskell, because I'll be explaining everything as I go along. So you won't understand a thing either way."
@JNCressey
@JNCressey 4 года назад
> claims we don't need to know Haskell > isn't explicit about which words are imported from his module and which are keywords.
@doublex85
@doublex85 4 года назад
As of the finished module in 19:35:   The import declaration allows use of the exported definitions from module Parsing. There's also a standard library module Prelude which is imported by default if not mentioned.   Equals= defines values.   Do and >=) operator, i.e.: do { b >= (\b -> c)   Module Prelude exports typeclass methods add(+), multiply(*), alternate(), bind(>>=), and return, and also exports the implementations of (+) and (*) for whichever of the various number types the end program might use. The defaulting rules in the REPL session seem to select the Integer type.   Module Parsing defines type Parse, function char, and method implementations for (), (>>=), and return. The bind(>>=) method does all the heavy lifting of combining two parsers into one larger parser.   The main module defines functions expr, term, and factor.
@BrankoDimitrijevic021
@BrankoDimitrijevic021 4 года назад
The key (which IMHO was not so well explained in the video) is that you have a function (parser combinator) that takes other functions (parsers) as input, and produces a function (more complex parser) as a result. This is rather similar to "normal" recursive-descent parsing, except you don't do the combining yourself, and instead let the parser combinator do it for you.
@Dan-gs3kg
@Dan-gs3kg 4 года назад
That's one of the key takeaways of Functional programming, "Higher-Order Functions", or functions that use other functions as parameters. A short and sweet paper is the Functional Pearl about Sixth-Order Functions. Why would you need a Sixth-Order Function? When you are using parser combinators!
@Verrisin
@Verrisin Год назад
Doesn't sound like something I would need a video for. It's clear from the name "parser combinator". It's clearly something that combines parsers into a parser, and then it's obvious those are then combined by further combinators and that's how you can build the whole root parser. - This video shows how to do that with monadic combinators, and the which I guess is just a concat function for the lists.
@cparks1000000
@cparks1000000 9 месяцев назад
The operator is most likely a custom operator definited in the package.
@AndreasEDM
@AndreasEDM 4 года назад
What an excellent complement to the material found in his book! Hope to see more
@jkhsjdhjs
@jkhsjdhjs 4 года назад
Excellent explanation, very interesting to watch!
@gi70st
@gi70st 4 года назад
say it takes a string as an input and returns a tree as an output one...more...time
@PauxloE
@PauxloE 4 года назад
... and then the example parser doesn't even return a tree, but just an integer.
@cheaterman49
@cheaterman49 4 года назад
@@PauxloE Agreed - I guess the video couldn't get much longer though, but I'd have loved to see his parser return an AST and then implement the logic to interpret it!
@WorBlux
@WorBlux 4 года назад
@@PauxloE It evaluates the tree as it goes along., and it is walking the tree even though we're not seeing it. To get a tree, you'd modify the grammar to so that the do block returns a tree, rather than the the result of evaluating the math expression. The biggest problem I see with this toy example is there's no error handling. Malformed input can just get lost without affecting the tree or warning the user.
@casperes0912
@casperes0912 4 года назад
gi70st I can fix that for you... It takes an array of chars and gives back an AST
@JNCressey
@JNCressey 4 года назад
It was so confusing how he did that switcheroo. I was there thinking "how does `return (x+y)` make it produce a node `"+"` with branches `x` and `y`?" And even after acknowledging that this is really evaluation, he kept calling it a parser, even though the beginning of the video he insisted that what a parser is to him is something that produces a tree as output.
@photojournalists
@photojournalists 4 года назад
WOW! Anyone saw the beautiful recursion in the definition of these expression parsers? I don't have the kind of brain to quickly think recursively like this
@elgalas
@elgalas 4 года назад
Graham Hutton. Your Haskell book was incredibly useful!! Never clicked so fast on a computerphile video. Parsing in Haskell was a bit hard in the beginning though.
@keestv3116
@keestv3116 4 года назад
what is the name of the book? okok i just google it. =D
@elgalas
@elgalas 4 года назад
@@keestv3116 Programming in Haskell :)
@AlexKavanagh29x
@AlexKavanagh29x 4 года назад
I, too, used the book. Excellent resource for starting Haskell.
@DutchmanDavid
@DutchmanDavid 4 года назад
> Parsing in Haskell was a bit hard in the beginning though. Getting used to all those new operators (, , , among others) was brain-breaking, initially.
@TheSpacecraftX
@TheSpacecraftX 4 года назад
Oh he wrote that book. That book got me through first year in uni. I bought it in desperation for my resit. It was the only module I had to resit and I still harbour a special hatred of Haskell.
@robertbrummayer4908
@robertbrummayer4908 2 года назад
Awesome and excellent video as usual
@harleyspeedthrust4013
@harleyspeedthrust4013 3 года назад
I did this with Java, I wrote a postfix expression parser that could do symbolic differentiation and simplification. I used polymorphism to implement the tree structure
@procactus9109
@procactus9109 4 года назад
This should be a whole series on its own channel... I think a channel dedicated to programming the simple things. Things like this video, but things like... Graphics, calculate a line, circle, plasma, transparncy, sprites, theres heaps and heaps of things like that, 3D rotation vertex and bitmap.. processing raw data by a microphone is another 100 videos. I could go on... Maybe
@canacourse
@canacourse 2 года назад
Excellent tutorial.
@dmitryplatonov
@dmitryplatonov Год назад
One thing here is that parser he implemented does binary opetator evaluation right-to left. Left-to-right binary operators are more involving.
@SleepyFracture
@SleepyFracture 4 года назад
Where was this video for my Language Engineering unit at university?! This would've been so useful to refer to!
@RawPeds
@RawPeds 4 года назад
Wow! So cool how much you can do in a few lines of Haskell. Like defining a grammar, and a parser for it!
@MarkusBurrer
@MarkusBurrer 3 года назад
It is a bit annoying that the camera switches from head to laptop to screen constantly
@MrMuchoscojones
@MrMuchoscojones 4 года назад
Having trouble parsing Grahams accent. Sounds like its from everywhere in the UK at once! Fascinating
@iliakorvigo7341
@iliakorvigo7341 4 года назад
He sounds unambiguously Irish to me, but as far as I know, he is actually Scottish.
@quintium1
@quintium1 2 месяца назад
Shouldn't (some digit) return multiple results, parsing 1, 2 or 3 digits? Otherwise the parser wouldn't return all possibilities right?
@dragolov
@dragolov 5 месяцев назад
Beautiful! Respect!
@SB-co5el
@SB-co5el 4 года назад
Is Hascal some sort of hybrid language?
@JanKowalski-oq6ie
@JanKowalski-oq6ie 4 года назад
More videos with prof Hutton and functional programming. My favorite topic
@davidm.johnston8994
@davidm.johnston8994 4 года назад
So interesting! Thank you so much! That is quality teaching.
@kevin_b
@kevin_b 4 года назад
Great video! I've written some parsers in Haskell, but Prof. Hutton makes it look easy.
@Michael-rc5ks
@Michael-rc5ks 2 года назад
How would one use this with left recursion and left associativity?
@haskellhutt
@haskellhutt 2 года назад
One of the limitations of top-down parsing methods such as functional parsing is that left recursion results in parsers that loop. One possible solution is to transform the grammar first to eliminate the left recursion. Another is to define special-purpose combinators to parse operators that associate to the left.
@manantank
@manantank 4 года назад
"4 and half screen fulls and is full fledged and can basically implement any parser you like" - mic drop
@dvikauglaumishrauca
@dvikauglaumishrauca 4 года назад
WOW... I just had to wrote a parser and evaluator, in Kotlin and I had 3 classes, working in conjunction to get final answer. While this feels like magic.
@nilp0inter2
@nilp0inter2 4 года назад
More of this, please! Graham is an outstanding teacher.
@TVSuchty
@TVSuchty 3 года назад
13:39 what happens if there is no "-", how does Haskell know that it has now to use the nat parser?
@rastislavsvoboda4363
@rastislavsvoboda4363 3 года назад
instance Alternative Parser where empty = P (\inp -> []) p q = P (\inp -> case parse p inp of [] -> parse q inp [(v, out)] -> [(v, out)]) this special 'or' operator executes left side parsing (in this case '-' char followed by natural number), if it succeeds it returns result, if not it will return right side parsing result (in this case just natural number)
@Mike-qt4fr
@Mike-qt4fr 4 года назад
Just wrote an abstract syntax tree in my utils package for tokenizing symbolic math expressions, would be cool if you guys went over how ASTs are used in compilers / interpreters as well
@Dan-gs3kg
@Dan-gs3kg 4 года назад
That gets into recursion schemes. Instead of consuming strings, you consume and rebuild trees. There's quite a bit involved there as different schemes have drastically different capabilities. The important bit is that those pieces compose well, and have some very nice optimisations.
@taylorallred6208
@taylorallred6208 4 года назад
Brilliant! Thank you!
@glaxmattbas
@glaxmattbas 4 года назад
Maybe it's because I don't know haskell but it's unclear to me how expr chooses whether to do the '+' branch or not
@johngibson4874
@johngibson4874 2 года назад
It backtracks. It tries to do the '+' case and if it can't it backtracks and does just the term case.
@cheaterman49
@cheaterman49 4 года назад
It's funny, it feels like Haskell makes a lot more sense to me when used in this context? I don't know, I usually cringe a bit when seeing the syntax but this example falls beautifully into place and feels very elegant? Also, the stdlib Parsing library being likes a hundred lines is pretty interesting too, probably both this and the example in the video play very well with the strengths of the language?
@JobvanderZwan
@JobvanderZwan 4 года назад
It's not just you - there's a reason quite a few experimental compilers are implemented in Haskell.
@cheaterman49
@cheaterman49 4 года назад
@@JobvanderZwan Thanks for the info - makes a lot more sense to me than people pushing Haskell as a general-purpose programming language. At least that's how I feel right now (I do Python for a living), but I might revise my judgement in the future :-)
@samm7334
@samm7334 4 года назад
Agreed. In my current lecture we're implementing a parser in OCaml (close enough I guess). The thing is that parser/compiler need a lot of things that are close to theory (recursion, trees etc...) and pattern matching, all of which is at home in any functional language.
@TheRedPython
@TheRedPython 4 года назад
Where did the tree go? At 5:02 he deletes the tree and I didn’t see it again!
@bingloveskoki
@bingloveskoki 4 года назад
He replaced the Tree-type with an arbitrary Type 'a'. So a parser can now calculate anything you want. You might want to keep calculating a tree, then a would be equal to Tree or you want to calculate something different like e.g. an integer (a=Int).
@doublex85
@doublex85 4 года назад
To be specific, the 'a' is a type variable. In Java, C++, Rust, or similar syntaxes it would be the T in Parser. In Haskell syntax, types and their parameters are written one after the other without brackets, just like Haskell values. Some examples and their C-like equivalents: List (Pair Int Char) = List Pair (List Int) Char = Pair List Pair Int Char = List (this is probably an error.) Parser a = Parser In C-like syntax type variables have to be introduced explicitly, such as with the template keyword in C++, but in Haskell you know any name that starts with a lowercase letter is a variable. Again, just like in term-level expressions.
@kkloikok
@kkloikok 4 года назад
So if we wrote some code that ran parsers in an infinite loop and then buried that computer would it produce infinite trees and thus solve deforestation?
@monke5100
@monke5100 4 года назад
More haskell please, I love it
@praveenperera
@praveenperera 4 года назад
That was awesome. Thank you!
@qm3ster
@qm3ster 2 года назад
12:56 "And then I'm gonna *simply* return it" Ah yes, that's what happens there, no magic at play at all :v Yeees :v
@vitorvitali
@vitorvitali 4 года назад
oh, do more haskell please :DDDD
@jaggis4914
@jaggis4914 4 года назад
I’am try to write a functional parser in Scheme!
@ACCPhil
@ACCPhil Год назад
Sorry, but back in the day, I used Lex and YACC. This takes all the fun out of it
@monadstack
@monadstack 3 года назад
why this sir doesn't have a single playlist at all? do computerphile forgot to make one? "The functional programming series maybe" ?
@m.z.2466
@m.z.2466 4 года назад
I'm wondering, is a parser a function that takes a string as an input and gives a tree as an output?
@charlescox290
@charlescox290 4 года назад
So, your definition of parser includes both the tokenizer and the syntax checker?
@Dan-gs3kg
@Dan-gs3kg 4 года назад
You can say that a tokeniser is a parser from a String to a List of Tokens. Rinse and repeat with the List of Tokens until you have what you want.
@mdmenzel
@mdmenzel 4 года назад
I very much like using functional programming for translator writing. It's explicit and elegant.
@luisalejandrohernandezmaya254
@luisalejandrohernandezmaya254 10 месяцев назад
Why don't you use Maybe monad instead of List monad? I think it would be better and more intuitive. I mean: type Parser a=String->Maybe (a,String)
@citizenphnix
@citizenphnix 4 года назад
I feel like I need to take a ten week course on this.
@gabe_owner
@gabe_owner 4 года назад
I felt that way when I first saw Haskell, too. I've been learning it as a hobby since August and it's totally revitalized my interest in computer science on the whole.
@tomyamahito
@tomyamahito 4 года назад
Interesting. How do combinator parsers compare with table parsers like Earley parsers? Is it possible yo combine approaches?
@tomyamahito
@tomyamahito 4 года назад
s/yo/to/ !
@mindiff
@mindiff 2 года назад
Pleased to observe that he uses the vi editor - a REAL man :-)
@lepidoptera9337
@lepidoptera9337 Год назад
That's not a sign of manhood. It's a sign that he has a clinical case of needing to be different. ;-)
@sebastiangudino9377
@sebastiangudino9377 7 месяцев назад
​@@lepidoptera9337Yeah, "different". Because he uses the text editor that comes with every computer ever. He is so quirky :/
@lepidoptera9337
@lepidoptera9337 7 месяцев назад
@@sebastiangudino9377 It doesn't come with Windows, child. Why would it? Windows has specialized IDEs of all sorts for all kinds of R&D. I am currently using Eclipse with an embedded microcontroller environment. The hardware debugger is fully integrated with the code editor and I can step through my program line by line. I could never do that with vi. OK, now you got your two minutes of attention. I hope your basement has gotten a little warmer. ;-)
@sebastiangudino9377
@sebastiangudino9377 7 месяцев назад
@@lepidoptera9337 WSL is a POSIX system that comes with windows from Windows 10 onwards. It includes vi
@NoNameAtAll2
@NoNameAtAll2 4 года назад
amazing speaker
@ghsgz3011
@ghsgz3011 4 года назад
BTW what is the font you used in this video?
@ancbi
@ancbi 4 года назад
I already know Haskell and quite a number of monads already but haven't got time to learn parser as a monad. So this video is perfect for me.
@Dan-gs3kg
@Dan-gs3kg 4 года назад
It's effectively the State Monad.
@ancbi
@ancbi 4 года назад
@@Dan-gs3kg If all parsers always produce singleton list, then parser monad = state monad as you said. So parser monad could be used as state monad. *But can you show the converse?* because that is what it means for me to say 'parser monad is effectively state monad' and I don't yet see how.
@Dan-gs3kg
@Dan-gs3kg 4 года назад
@@ancbi I'm a bit fast and loose here, but you can see the correspondence between say: > Parser a = P (String -> (a, String)) > State s a = S (s -> (a, s)) Where (s ~ String), and (~) is Type Equality The more general statement: > Parses a = P (String -> [(a, String)]) Is a bit different, but then we can also make a more general statement about what the State effect is. > StateT s m a = S (s -> m (a, s)) Where (s ~ String, m ~ List), we get (Parses) Where (s ~ String, m ~ Identity), we get (Parser) If we want zero or one parse results, we replace List with Maybe, if we want literate parse errors, then we use Either. All of this hinges off of the initial State Effect.
@ancbi
@ancbi 4 года назад
@@Dan-gs3kg Hey. Thanks for making it clear. It was my ignorance of StateT making me say what I said.
@Dan-gs3kg
@Dan-gs3kg 4 года назад
@@ancbi you're welcome. If you want to look at how "stacked" a parser combinator library gets look for the packages: megaparsec, parser-combinators, and yoctoparsec. The first is a fully featured library that generally dominates in performance, and expressiveness in both passing and error reporting. Yet it operates on the same principle seen previously. The second is a library that can interface with any parser combinator library. This is possible because of the algebraic structure of parser combinators. In other words, those principles are very permissive. And the third is very reductive of what a parser combinator library is. It's effectively a pile of free theorems (invariants) and one primitive: The single token matching primitive. At some point you figure out that a principled outlook is the most constructive.
@cparks1000000
@cparks1000000 9 месяцев назад
Cutting back and forth between the computer, the screen, and the speaker is not the best decision. It's very frustrating.
@BAITHOVEN_
@BAITHOVEN_ 4 года назад
Nice video. Would like it if you'd switch screens less to make it feel more "dynamic" while there's code being shown.
@MidnighterClub
@MidnighterClub 4 года назад
This is neat but a little too simple to be useful, imo. For example, how do you also parse subtraction ("-") and division ("/") and also allow any term to be negated (for example "2 + 3 * 4 / -(-10/5)" -- Note the "-" in front of the compound term. Just a bit more complexity would allow us to see how the parser source code scales as the number of terms increase.
@samm7334
@samm7334 4 года назад
Of course it's not useful. It's an example for explanation no industry standard parser. Subtraction and division are incredible similar to their counterparts. A negation would be a different rule like "-" expr but this introduces a parse conflict since the "-" can be subtraction or negation (so called "shift/reduce conflict). That needs to be handled but suddenly the video would be 1hr long and way harder to follow.
@JNCressey
@JNCressey 4 года назад
> parse expr "2 + 3 * 4 / -(-10/5)" *Drake nah meme > 2 + 3 * 4 / -(-10/5) *Drake yeah meme
@samm7334
@samm7334 4 года назад
@@JNCressey I just realized that I want all my compiler errors to be presented as memes
@gabe_owner
@gabe_owner 4 года назад
I think you're referring to the difference between a binary and unary minus operator. / has essentially the same precedence as multiplication so it shouldn't be hard.
@MidnighterClub
@MidnighterClub 4 года назад
@@gabe_owner Well partially, yes, I'd like to see how both unary and binary operators get handled. But I'm also not seeing exactly how operators with equal precedence (like +- and */) get handled with this scheme as well, so an example of that would be helpful.
@Petertronic
@Petertronic 4 года назад
I wrote a text adventure game in the mid 80's, so I guess the programming that interprets the English commands is a parser :)
@petros_adamopoulos
@petros_adamopoulos 4 года назад
It is, but more of a stone tool than this kind of weapon.
@juryk666
@juryk666 4 года назад
Thanks for such visual and enlightening video. Next time, however, I'd rather see this kind of video (coding) as a screen cast, rather than camera jumping back and forth. Professors head talking just obscured the point he wanted to make about the primitives library. Overall, it was surprising how the parsing library neatly applied to the problem.
@Eagle-jo8cx
@Eagle-jo8cx 4 года назад
Thank you for this video. but why do I get this exception? I'm running it on GHCi 7.6.3 *Parsing> parse (some digit) "123" *** Exception: Parsing.hs:38:10-21: No instance nor default method for class operation GHC.Base.return I also get this warning when I load Parsing.hs [1 of 1] Compiling Parsing ( Parsing.hs, interpreted ) Parsing.hs:38:10: Warning: No explicit method or default declaration for `return' In the instance declaration for `Monad Parser' Ok, modules loaded: Parsing.
@qzbnyv
@qzbnyv 4 года назад
Apple, definitely upgrade your GHC. Try not to use the versions of GHC that come with the package managers of various OS choices as they tend to be quite out of date. Use the curl (or wget) install scripts that you’ll find on the websites for either of the things I’m about to mention in quotes. Either install the Haskell “Stack” tool for managing isolated sandboxed versions of GHC on your system (so you can have different projects operating with different GHC versions) or use “ghcup” to install Cabal for you to do something similar. But yeah, avoid whatever is in your package manager like the plague. And GHC 7.6.3 is pretty out of date with how monads are implemented. There’s been some significant language shifts since then.
@qzbnyv
@qzbnyv 4 года назад
Apple also add the line “return = pure” within the Monad instance declaration (...just above the definition for (>>=) is where you’d normally put it).
@Eagle-jo8cx
@Eagle-jo8cx 4 года назад
NWN thank you very much! Unfortunately I need to use specifically this version for my university coursework
@qzbnyv
@qzbnyv 4 года назад
Apple that’s a shame. What university/subject is this? Lectures should really update their course materials + backend. In GHC 7.10 the “Functor-Applicative-Monad Proposal” was implemented that made all Monads have Applicative as a superclass, which is a pretty big change and something that should be part of your learning ecosystem.
@no_more_free_nicks
@no_more_free_nicks 4 года назад
Thanks for sharing the link to the library, I will drink a beer now, and try to write my own parser.
@Tramontano_T
@Tramontano_T 3 года назад
There is a Channel on RU-vid called low-level-javascript and the guy has a series building a parsing combinator from scratch. It is super interesting and o highly recommend, he's helping me a Lot with my parsing studies
@kartikdeepsagar
@kartikdeepsagar Год назад
Yes that guy is a genious
@TarasMazepa
@TarasMazepa 4 года назад
What is the Haskell parsing library without IO, Maybe, Option and Exceptions?
@bingloveskoki
@bingloveskoki 4 года назад
Well, the same I guess.
@TarasMazepa
@TarasMazepa 4 года назад
@@bingloveskoki Nah, this one is just a toy :)
@gabe_owner
@gabe_owner 4 года назад
painful
@JmanNo42
@JmanNo42 4 года назад
So it you have a structure of sort with leveled information and break out thing that meet specific conditions, is that parsing your explanation is so filled with lingo? I hear you talk aaout returning trees and pairs is that a request for being a parser. What about if you split up a string consisting of a leveled record tree" maybe first into substrings knowing which type of information in each string and the sub iterate the record structures within them using the record brackets and identifiers isn't that parsing top down?
@JmanNo42
@JmanNo42 4 года назад
What is the main definition of a parser, i thought it was breaking out information from structured data using rules?
@framegrace1
@framegrace1 4 года назад
@@JmanNo42 Yep, and the structured data is always a tree when calculating expressions. Operations always return a single result.
@redjr242
@redjr242 4 года назад
Professor Hutton looks like Moby.
@lostwizard
@lostwizard 4 года назад
Looks rather like recursive descent parsing to me.
@_aullik
@_aullik 4 года назад
its a variation of it. Basically a functional/monadic version of it. Solves some problems like running out of Stack. It also makes backtracking a lot easier and the syntax smoother (but more complex). It also means that you can skip the lexer part. recursive descent rarely works well in imperative languages and it has a lot of boilerplate. It works a lot better in functional and is a lot compacter. EDIT: The correct term is "parser combinator" when you wanna lookup more on google/wikipedia.
@Ceelvain
@Ceelvain 4 года назад
@@_aullik Backtracking? Wouldn't one want his grammar deterministic? So that, you know, parsing time is linear in the length of the input.
@_aullik
@_aullik 4 года назад
​@@Ceelvain Yes and no. Specially if you are context sensitive (which is completely possible here) backtracking can give you some nice advantages. Obviously for the cost of performance. That being said, if you keep the parts where you use backtracking short and/or use mnemonics. This way the performance overhead is pretty slim. If you make mistakes with this, it will cost you performance. The big advantage however is fast prototyping and relatively easy unit testing and that you can do things you cant with regular parser generators. Best case performance is close to parser generators as you can skip lexing. What I have seen in the real world however is usually quite a bit worse. However if I only have to build parser for smaller (max 1k lines) Inputs I prefer this option.
@frabert
@frabert 4 года назад
One way that parser combinators differ from recursive descent parsers is that they are declarative, rather than imperative. This means that, for example, you might choose to implement the resulting parser as a LR(1) parser, or maybe using CYK, because the parser itself does not describe the implementation, but only the grammar. Of course, all the actual parser combinator libraries I know use recursive descent in the end :)
@lhpl
@lhpl 4 года назад
​@@_aullik Recursive descent has worked very well in imperative languages for many decades. As for skipping lexing, that is a matter of optimisation, as I understand it.
@PRiKoL1ST1
@PRiKoL1ST1 Месяц назад
Strange instance of applicative where he uses only head of the list
@Delta8Raven
@Delta8Raven 4 года назад
Neat but you lost me when you started implementing the grammar. Also would have liked to see the tree before it was evaluated.
@Dan-gs3kg
@Dan-gs3kg 4 года назад
The implementation reflects the grammar. Alternative parse paths are separated by (), where alternate expressions of the same term are separated by (|).
@Lightn0x
@Lightn0x 4 года назад
Does this kind of parser run in O(n), assuming an unambiguous grammar? n being the length of the input string.
@DutchmanDavid
@DutchmanDavid 4 года назад
I don't think it does, but that's because this is a pretty naive implementation (which is totally fine BTW - that way more people can understand what roughly happens behind the screen). If you want O(n), take a look at a full parser implementation like Parsec, Megaparsec or Attoparsec (just to name a few).
@Lttlemoi
@Lttlemoi 4 года назад
No. It may have to do a bit of backtracking when the parser should take the second possibility in the sub-parsers. This means re-parsing some stuff, making it non-linear in complexity. For example, consider the simple case "2" and the parser from the video. First, it tries to parse this string as 'term+expr', which expands to 'factor*term+expr' and ultimately '(expr)*term+expr'. The '(expr)' fails, so it tries the second alternative of 'factor', which is 'int'. This succeeds, so it goes back up the tree to parse '*term+expr' out of (2, ""), which fails. Therefore, it tries the second alternative of 'term' in 'term+expr'. This ends up parsing (2, "") again, with '+expr' left over to parse out of the empty string. This again fails, so the second case of the 'expr' parser is used, which eventually succeeds after another round of backtracking in the 'term' and 'factor' parsers to produce the final result: (2, "")
@sdsdfdu4437
@sdsdfdu4437 4 года назад
List of results? Wouldn't an Either be better? Then you either get the tree, or an error back
@bikerbyron
@bikerbyron 4 года назад
No Tripod?
@glorytoarstotzka330
@glorytoarstotzka330 4 года назад
can anyone tell me a practical use for parsers? like I watched the entire video and know what they do, but I feel a little unguided, in what common situation you'd use specifically a parser and not just a for loop
@DavidJCobb
@DavidJCobb 4 года назад
I mean, a parser could be built on a for-loop. Parsing is basically just the process of reading some data, like a mathematical expression, and understanding it. Math expressions can't always be calculated left-to-right (i.e. in the order you or your program would read them), like (1 + 3 * (7 - 1)), so one approach you may take is to decode the expression into objects -- a tree structure -- and then, after you've read and understood the whole expression, you'd use that data to calculate it in the right order. The video's approach is to use functions that are chained in sequence, and those functions could in theory use a for loop. For example, we may have a parser function for variable names, which would want to use a for-loop to read until it sees a character that can't be a variable name. We may have a parser function for whole numbers rather than single digits, which would take the same approach.
@johngibson4874
@johngibson4874 2 года назад
Programming language interpreters and compilers. JSON parsers, syntax highlighters, linters, transpilers (like Babel) web browsers that parse html and css, web scrapers all use parsers. Whether the average working programmer uses them is another story. Another example would be if you find yourself making a DSL for adding content to your video game and would rather not write the content in C#, you might consider writing a parser. Anytime you take input and transform it to produce some for of structured output, you are in essence writing or using a parser
@rahzaelfoe3288
@rahzaelfoe3288 5 месяцев назад
According to LangSec, all input should be parsed into a well defined structure (i.e. a type that represents only the set of valid input) before being processed. That way you aren't making assumptions about your input that can be exploited by attackers. The type of parser used should match the complexity of the Grammer used to define valid input, following Chomsky's hierarchy of Grammers.
@qm3ster
@qm3ster 2 года назад
Nooo, the list scares me 😭 Why couldn't you just use a normal Maybe
@Ceelvain
@Ceelvain 4 года назад
It looks like a complex grammar and a carefully crafted example could cause the parser to generate a list of trees exponential in the string length. Which would be very bad.
@Dan-gs3kg
@Dan-gs3kg 4 года назад
Either don't return a list of possible results, return a proper stream of possible results, or something else. Eg "Parser a = String -> (a, String)" which only returns the one. The grammar is very literate, though the snag is learning what the combinators mean initially.
@catlas_
@catlas_ 4 года назад
Idear
@JNCressey
@JNCressey 4 года назад
parzer
@andrew_ray
@andrew_ray 4 года назад
So Parser is just ReadS?
@christopherbird5520
@christopherbird5520 4 года назад
The tricky part for me is how it knew how to sequence the execution. How is the priority of * over + understood?
@johngibson4874
@johngibson4874 2 года назад
It uses recursion. Higher precedence operators appear lower in the stack. It does multiplication before adding because in the grammer and parser multiplication has to be parsed and evaluated before addition. Look up Jack Crenshaw's series Let's Build A Compiler for another explanation. His approach uses recursive descent parsing instead of parser combinators but it is the same idea
@rickmisk
@rickmisk 4 года назад
Using C could to implement a separate lexer, and parser using the shunting yard algorithm for infix expressions is more didactic IMO
@johngibson4874
@johngibson4874 2 года назад
You should make a video. I would like to see how it works
@pierreabbat6157
@pierreabbat6157 4 года назад
vdisj ::= "either" vp "or" vp ndisj ::= "either" np "or" np "An expression can either be a term plus an expression or a term." Parse error!
@alainterieur5004
@alainterieur5004 3 года назад
haskell is so much like black magic lol I should learn it
@GTGTRIK
@GTGTRIK Год назад
Again with the haskell! Why do you keep inviting this guy?!
@0bhi
@0bhi 2 года назад
Okay so now let's build this in C
@AI7KTD
@AI7KTD 4 года назад
I thought I was having a stroke at 1:40!
@bogeangles
@bogeangles 4 года назад
at the last example, I was expecting to either have something parsed or get the "unconsumed" string... but the result was nothing with nothing "unconsumed"
@iabervon
@iabervon 4 года назад
It's giving a list of all the ways the input can match an expr with something left over. The last example gives the answer "it can't be an expr with anything left over". In a context where you could have an expr or something else, it would first pass the whole string to the expr parser, then pass the whole string to the other parser; choices remember the original string, and pass that to each parser, rather than passing the unconsumed part to the next parser like sequences do. If the expr parser gave [(nothing,"(2+4")], that would mean it was okay for an expr to consist of nothing.
@josephwong2832
@josephwong2832 4 года назад
Thanks
@AlexanderWeixelbaumer
@AlexanderWeixelbaumer 4 года назад
My parser in php is just a function with string_replace() and preg_replace_callback() in it. I think a parser is pretty easy stuff until you have nested matches.
@rahzaelfoe3288
@rahzaelfoe3288 5 месяцев назад
I'm not going to lie, this seems like a terrible idea. Using repeated string replace is a great way to turn your parser (anything that fills the ROLE of a parser, no matter the mechanism) into a turing machine that treats malformed/malicious input as a turing-complete programming language. I'd recommend looking into the LangSec approach to parsing. The computational power of the automaton you use to parse input should match the complexity of Grammer required to describe the set of valid inputs. No more and no less.
@lhpl
@lhpl 4 года назад
Okay, so expr ::= term + expr | term. Right. Now, lets add minus, will we? expr::= term + expr | term - expr | term. Whoops, now what? Oh. And, btw, is the order of operands to significant? How about left recursion?
@elmersbalm5219
@elmersbalm5219 4 года назад
A thousand upvotes! I'm building a simple parser in SCSS of all languages. Let's say it's an interesting adventure. Especially considering that my programming skills are rusty.
@steve1978ger
@steve1978ger 4 года назад
Haskell can be a bit of a 'culture shock' to people like me who are used to procedural programming, but I definitely want to learn more about it.
@KamillaMirabelle
@KamillaMirabelle 3 года назад
I know it is a simplification of what a parser is. A parser is a map that take som sequence of "ordered elements" and return some transformation of the sequence into another structure given that the sequence Withhold the parsing scheme. To dump it a little Down, a parser can also be used on other types og input both simple and complex types as long as the data can be ordered.
@grainfrizz
@grainfrizz 4 года назад
The Haskell dude
@RawPeds
@RawPeds 4 года назад
> has got a Mac > codes on Vi
@ZachBora
@ZachBora 4 года назад
I had to google the pronounciation of parsing. I didn't know that there were words pronounced differently in en-US and en-GB.
@randomizednamme
@randomizednamme 4 года назад
There are all kinds of words that are pronounced differently in each dialect
@user-zu1ix3yq2w
@user-zu1ix3yq2w 4 года назад
But can it divide by zero?
@lepidoptera9337
@lepidoptera9337 Год назад
Graham Hutton wasn't even born when the early papers on parsing were written. Is this dude even real?????
@SuperSparkLight
@SuperSparkLight 4 года назад
Is that vim running
@henrituhola
@henrituhola 4 года назад
Terminal + vim & ghci
@gerardwalsh4724
@gerardwalsh4724 4 года назад
import argparse
@nanthilrodriguez
@nanthilrodriguez 5 месяцев назад
Hascal
Далее
Parsing Explained - Computerphile
14:58
Просмотров 238 тыс.
Lambda Calculus - Computerphile
12:40
Просмотров 1 млн
JSON Parser 100% From Scratch in Haskell (only 111 lines)
1:50:07
Just In Time (JIT) Compilers - Computerphile
10:41
Просмотров 259 тыс.
Rust and RAII Memory Management - Computerphile
24:22
Просмотров 214 тыс.
Tail Recursion Explained - Computerphile
16:05
Просмотров 168 тыс.
Erlang Programming Language - Computerphile
16:05
Просмотров 247 тыс.
Lambda Calculus!
9:51
Просмотров 48 тыс.
Recursive Descent Parsing
29:02
Просмотров 64 тыс.
Programming Loops vs Recursion - Computerphile
12:32
Просмотров 1,4 млн