through the lens of haskell
play

Through the lens of Haskell Exploring new ideas for library design - PowerPoint PPT Presentation

Through the lens of Haskell Exploring new ideas for library design @georgesdubus Haskell, the language Haskell, the ecosystem Design space There should be one and preferably only one obvious way to do it. (Python) There should be


  1. Through the lens of Haskell Exploring new ideas for library design

  2. @georgesdubus

  3. Haskell, the language

  4. Haskell, the ecosystem

  5. Design space

  6. There should be one — and preferably only one — obvious way to do it. (Python)

  7. There should be one — and preferably only one — obvious way to do it. (Python) Let’s keep looking for it! (Haskell)

  8. Some Haskell libraries

  9. JSON Packaging HTTP

  10. JSON ??? ??? Packaging HTTP ???

  11. Some Haskell libraries Part 1: attoparsec

  12. “Real life” use case : A slack bot that answers movie quotes

  13. subtitleParser Name Type Full package definition

  14. subtitleParser All I need

  15. attoparsec All I need to know : parseOnly :: Parser Subtitles -> ByteString -> Either ErrorMessage Subtitles

  16. attoparsec All I need to know : parseOnly :: Parser Subtitles -> ByteString -> Either ErrorMessage Subtitles parseOnly :: Parser a -> ByteString -> Either ErrorMessage a

  17. attoparsec Or : incremental parsing parse :: Parser a -> ByteString -> Result a feed :: Result a -> ByteString -> Result a (Result can be Partial, Failed or Done)

  18. attoparsec Part of a bigger parser many :: Parser a -> Parser [a] or :: Parser a -> Parser b -> Parser (Either a b)

  19. Parsers everywhere parseCSV :: Parser CSV in attoparsec-csv json :: Parser JSONValue in aeson crontab :: Parser Crontab in cron emailAddress :: Parser String in email-header toml :: Parser TOMLValue in toml ...

  20. A good library simplifies the implementation

  21. A good library simplifies the interface

  22. General solution Specific building blocks

  23. attoparsec General solution Specific building blocks all parsers

  24. Some Haskell libraries Part 2: conduit

  25. Conduit Streaming library Producers Consumers Conduits that both consume and produce

  26. Lot of libraries sourceSocket socket =$= ungzip =$= sinkFile "/tmp/output" producer from Data.Conduit.Network conduit from Data.Conduit.Zlib consumer from Data.Conduit.Binary

  27. conduit + attoparsec = � Parser ➡ Conduit sourceFile “something.srt” =$= conduitParser parseSubtitleLine =$= ircConsumer Parser of Subtitle Lines High-performance subtitles streaming for free !

  28. conduit General solution Specific building blocks all conduits

  29. Some Haskell libraries Part 3: lens

  30. Data manipulation BlogPost { title = “Made-up examples considered harmful” , author = Person {name=“Alice”} , comments = [ Comment { author = “Bob” , content = “Great insight!” } , Comment { author = “Carol” , content = “I completely disagree” } ] }

  31. Getters Lens >>> view title blogpost “Made-up examples considered harmful”

  32. Getters Lens Lens Lens >>> view title blogpost >>> view (author . name) blogpost “Made-up examples considered harmful” "Alice"

  33. Getters Lens Lens Lens >>> view title blogpost >>> view (author . name) blogpost “Made-up examples considered harmful” "Alice" Setters >>> set (speaker . name) “Alicia” blogpost BlogPost { title = “Made-up examples considered harmful” , author = “Alicia” , ... }

  34. Getters/setters with multiple values ?!? Lens Traversal Lens >>> toListOf (comments . each . author) blogpost [“Bob”, “Carol”]

  35. Getter / setter pairs are values >>> let commentContents = comments . each . content >>> toListOf commentContents blogpost [“Great insight!”, “I completely disagree”] >>> set commentContents “Blah blah blah” blogpost BlogPost { comments = [ Comment { author = “Bob” , content = “Blah blah blah” } , Comment { author = “Carol” , content = “Blah blah blah” } ] , ... }

  36. Libraries provide lenses: JSON [{“id”: “1”, “name”: “georges”}, {“id”: “2”, “name”: “lucie”}] >>> input & (values . key “name”) %~ capitalize [{“id”: “1”, “name”: “Georges”}, {“id”: “2”, “name”: “Lucie”}]

  37. Libraries provide lenses: HTML titles = allNamed (only "h2") . contents Traversal into all tags with a given name Their content

  38. lens General solution Specific building blocks all lenses

  39. “Borrowing” ideas

  40. Python ➡ Haskell wreq = requests + lens

  41. Haskell ➡ Python hypothesis

  42. Conclusion

  43. Explore the design space

  44. Explore the design space Factorize library interfaces

  45. Explore the design space Factorize library interfaces Bonus : DIY conclusion

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend