Skip to content

Latest commit

 

History

History

chapter13:OrganizingAProject

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Organizing a Project

Notes and exercises while reading through Programming Elixir by Dave Thomas.

Chapter Notes

Let’s stop hacking and get serious.

Yay!

  • mix - Elixir build tool
  • external dependencies
  • ExUnit - testing framework
  • libraries, etc.

Excited to make something now! This chapter gives a small taste of OTP as well.

The Project: Fetch Issues from Github

  • command line program
  • github username, project name, count ---> program ---> issues in table format
  • access as HTTP client
  • response in JSON

Use Mix to Create Our New Project

Mix:

  • has tasks (like rake)
  • mix new creates project skeleton
mix new issues

Project Tree Conventions

Parser:

  • module Project.CLI (e.g. Issues.CLI) is the command line parser
  • def run in that module is the main entry point

Namespace:

  • /lib/_projectname_ (e.g. /lib/issues) contains cli.ex
  • /lib/issues/cli.ex
  • '/lib/issues.ex'

Transformation: Parse the Command Line

OptionParser:

  • Use Elixir's provided OptionParser methods
  • Includes support for switches (such as --help -h)

Write Tests

Thumbs up!

See issues\test\issues_test.exs for skeleton of an ExUnit test.

work:issues smeade$ mix test
Compiling 1 file (.ex)
....

Finished in 0.03 seconds
4 tests, 0 failures

Run from command line

Pass mix run an Elixir expression.

$ mix run -e 'Issues.CLI.run(["-h"])'
usage: issues <user> <project> [ count | 4 ]

Use libraries

Look for libraries in:

  • http://elixir-lang.org/docs.html
  • http://erlang.org/doc/
  • External dependencies

hex

  • package manager (like rubygems, npm, etc.)
  • https://hex.pm/
  • Add to mix.exs

def application

OTP is the framework that manages suites of running applications. The application function configures the contents of these suites.

Instead of calling Library.start, add the library to the suite of applications that is being managed by OTP. You do that by adding it to mix.exs application function.

def application do
[ applications: [ :logger, :httpoison ] ]
end

Transformation: Sort Data

So far...

  def process({user, project, count}) do
    Issues.GithubIssues.fetch(user, project)
    |> decode_response
    |> sort_into_ascending_order
  end

Transformation: Take First n Items

Use built-in Enum.take.

  def process({user, project, count}) do
    Issues.GithubIssues.fetch(user, project)
    |> decode_response
    |> sort_into_ascending_order
    |> Enum.take(count)
  end

Transformation: Format the Table

  def process({user, project, count}) do
    Issues.GithubIssues.fetch(user, project)
    |> decode_response
    |> sort_into_ascending_order
    |> Enum.take(count)
    |> print_table_for_columns(["number", "created_at", "title"])
  end
work:issues smeade$ mix test
.........

Finished in 0.04 seconds
9 tests, 0 failures

Task: Make a Command-Line Executable

Mix can package our code, along with its dependencies, into a single file that can be run on any Unix-based platform

  • mix can package the app into an executable file
  • leverages Erlang's escript
  • and main_module escript configuration setting
  • where main_module is a module containing a main function.

After adding configuration information and renaming run to main, generate executable like so:

work:issues smeade$ mix escript.build
Compiling 4 files (.ex)
Generated issues app
Generated escript issues with MIX_ENV=dev

Task: Add Some Logging

  • Four levels of messages: debug, info, warn, error.
  • compile-time config in config.exs
  • run-time config via Logger.configure

Task: Create Project Documentation

  • ex_doc - documentation tool
  • earmark - output formatter

Add these dependencies and any additional project information into mix.exs, then:

work:issues smeade$ mix deps.get
Running dependency resolution
Dependency resolution completed
  earmark: 1.0.2
  ex_doc: 0.14.3
* Getting ex_doc (Hex package)
  Checking package (https://repo.hex.pm/tarballs/ex_doc-0.14.3.tar)
  Fetched package
* Getting earmark (Hex package)
  Checking package (https://repo.hex.pm/tarballs/earmark-1.0.2.tar)
  Fetched package

and to generate docs:

work:issues smeade$ mix docs
Docs successfully generated.
View them at "doc/index.html".