Skip to content

Commit 1284c0f

Browse files
authored
Merge pull request #96 from codecrafters-io/add-elixir
Add elixir
2 parents f478870 + c70483a commit 1284c0f

30 files changed

+561
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
#
3+
# This script is used to compile your program on CodeCrafters
4+
#
5+
# This runs before .codecrafters/run.sh
6+
#
7+
# Learn more: https://codecrafters.io/program-interface
8+
9+
set -e # Exit on failure
10+
11+
mix escript.build
12+
mv codecrafters_http_server /tmp/codecrafters-build-http-server-elixir
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
#
3+
# This script is used to run your program on CodeCrafters
4+
#
5+
# This runs after .codecrafters/compile.sh
6+
#
7+
# Learn more: https://codecrafters.io/program-interface
8+
9+
set -e # Exit on failure
10+
11+
exec /tmp/codecrafters-build-http-server-elixir "$@"
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Used by "mix format"
2+
[
3+
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
4+
]
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

compiled_starters/elixir/.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Ignore the compiled binary
2+
/codecrafters_http_server
3+
4+
# The directory Mix will write compiled artifacts to.
5+
/_build/
6+
7+
# If you run "mix test --cover", coverage assets end up here.
8+
/cover/
9+
10+
# The directory Mix downloads your dependencies sources to.
11+
/deps/
12+
13+
# Where third-party dependencies like ExDoc output generated docs.
14+
/doc/
15+
16+
# Ignore .fetch files in case you like to edit your project deps locally.
17+
/.fetch
18+
19+
# If the VM crashes, it generates a dump, let's ignore it too.
20+
erl_crash.dump
21+
22+
# Also ignore archive artifacts (built via "mix archive.build").
23+
*.ez
24+
25+
# Ignore package tarball (built via "mix hex.build").
26+
app-*.tar
27+

compiled_starters/elixir/README.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
![progress-banner](https://codecrafters.io/landing/images/default_progress_banners/http-server.png)
2+
3+
This is a starting point for Elixir solutions to the
4+
["Build Your Own HTTP server" Challenge](https://app.codecrafters.io/courses/http-server/overview).
5+
6+
[HTTP](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol) is the
7+
protocol that powers the web. In this challenge, you'll build a HTTP/1.1 server
8+
that is capable of serving multiple clients.
9+
10+
Along the way you'll learn about TCP servers,
11+
[HTTP request syntax](https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html),
12+
and more.
13+
14+
**Note**: If you're viewing this repo on GitHub, head over to
15+
[codecrafters.io](https://codecrafters.io) to try the challenge.
16+
17+
# Passing the first stage
18+
19+
The entry point for your HTTP server implementation is in `lib/main.ex`. Study
20+
and uncomment the relevant code, and push your changes to pass the first stage:
21+
22+
```sh
23+
git add .
24+
git commit -m "pass 1st stage" # any msg
25+
git push origin master
26+
```
27+
28+
Time to move on to the next stage!
29+
30+
# Stage 2 & beyond
31+
32+
Note: This section is for stages 2 and beyond.
33+
34+
1. Ensure you have `mix` installed locally
35+
1. Run `./your_program.sh` to run your program, which is implemented in
36+
`lib/main.ex`.
37+
1. Commit your changes and run `git push origin master` to submit your solution
38+
to CodeCrafters. Test output will be streamed to your terminal.
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Set this to true if you want debug logs.
2+
#
3+
# These can be VERY verbose, so we suggest turning them off
4+
# unless you really need them.
5+
debug: false
6+
7+
# Use this to change the Elixir version used to run your code
8+
# on Codecrafters.
9+
#
10+
# Available versions: elixir-1.17
11+
language_pack: elixir-1.17

compiled_starters/elixir/lib/main.ex

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
defmodule Server do
2+
use Application
3+
4+
def start(_type, _args) do
5+
Supervisor.start_link([{Task, fn -> Server.listen() end}], strategy: :one_for_one)
6+
end
7+
8+
def listen() do
9+
# You can use print statements as follows for debugging, they'll be visible when running tests.
10+
IO.puts("Logs from your program will appear here!")
11+
12+
# Uncomment this block to pass the first stage
13+
#
14+
# # Since the tester restarts your program quite often, setting SO_REUSEADDR
15+
# # ensures that we don't run into 'Address already in use' errors
16+
# {:ok, socket} = :gen_tcp.listen(4221, [:binary, active: false, reuseaddr: true])
17+
# {:ok, _client} = :gen_tcp.accept(socket)
18+
end
19+
end
20+
21+
defmodule CLI do
22+
def main(_args) do
23+
# Start the Server application
24+
{:ok, _pid} = Application.ensure_all_started(:codecrafters_http_server)
25+
26+
# Run forever
27+
Process.sleep(:infinity)
28+
end
29+
end

compiled_starters/elixir/mix.exs

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
defmodule App.MixProject do
2+
# NOTE: You do not need to change anything in this file.
3+
use Mix.Project
4+
5+
def project do
6+
[
7+
app: :codecrafters_http_server,
8+
version: "1.0.0",
9+
elixir: "~> 1.17",
10+
start_permanent: Mix.env() == :prod,
11+
deps: deps(),
12+
escript: [main_module: CLI]
13+
]
14+
end
15+
16+
# Run "mix help compile.app" to learn about applications.
17+
def application do
18+
[
19+
extra_applications: [:logger],
20+
mod: {Server, []}
21+
]
22+
end
23+
24+
# Run "mix help deps" to learn about dependencies.
25+
defp deps do
26+
[
27+
# {:dep_from_hexpm, "~> 0.3.0"},
28+
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
29+
]
30+
end
31+
end
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/bin/sh
2+
#
3+
# Use this script to run your program LOCALLY.
4+
#
5+
# Note: Changing this script WILL NOT affect how CodeCrafters runs your program.
6+
#
7+
# Learn more: https://codecrafters.io/program-interface
8+
9+
set -e # Exit early if any commands fail
10+
11+
# Copied from .codecrafters/compile.sh
12+
#
13+
# - Edit this to change how your program compiles locally
14+
# - Edit .codecrafters/compile.sh to change how your program compiles remotely
15+
(
16+
cd "$(dirname "$0")" # Ensure compile steps are run within the repository directory
17+
mix escript.build
18+
mv codecrafters_http_server /tmp/codecrafters-build-http-server-elixir
19+
)
20+
21+
# Copied from .codecrafters/run.sh
22+
#
23+
# - Edit this to change how your program runs locally
24+
# - Edit .codecrafters/run.sh to change how your program runs remotely
25+
exec /tmp/codecrafters-build-http-server-elixir "$@"

dockerfiles/elixir-1.17.Dockerfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# syntax=docker/dockerfile:1.7-labs
2+
FROM elixir:1.17.2-alpine
3+
4+
# Ensures the container is re-built if dependency files change
5+
ENV CODECRAFTERS_DEPENDENCY_FILE_PATHS="mix.exs"
6+
7+
WORKDIR /app
8+
9+
# .git & README.md are unique per-repository. We ignore them on first copy to prevent cache misses
10+
COPY --exclude=.git --exclude=README.md . /app
11+
12+
# Install & cache deps
13+
RUN .codecrafters/compile.sh
14+
15+
# If _build directory exists, move it to /app-cached
16+
RUN mkdir -p /app-cached
17+
RUN if [ -d "/app/_build" ]; then mv /app/_build /app-cached; fi
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
#
3+
# This script is used to compile your program on CodeCrafters
4+
#
5+
# This runs before .codecrafters/run.sh
6+
#
7+
# Learn more: https://codecrafters.io/program-interface
8+
9+
set -e # Exit on failure
10+
11+
mix escript.build
12+
mv codecrafters_http_server /tmp/codecrafters-build-http-server-elixir
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
#
3+
# This script is used to run your program on CodeCrafters
4+
#
5+
# This runs after .codecrafters/compile.sh
6+
#
7+
# Learn more: https://codecrafters.io/program-interface
8+
9+
set -e # Exit on failure
10+
11+
exec /tmp/codecrafters-build-http-server-elixir "$@"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Used by "mix format"
2+
[
3+
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
4+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Ignore the compiled binary
2+
/codecrafters_http_server
3+
4+
# The directory Mix will write compiled artifacts to.
5+
/_build/
6+
7+
# If you run "mix test --cover", coverage assets end up here.
8+
/cover/
9+
10+
# The directory Mix downloads your dependencies sources to.
11+
/deps/
12+
13+
# Where third-party dependencies like ExDoc output generated docs.
14+
/doc/
15+
16+
# Ignore .fetch files in case you like to edit your project deps locally.
17+
/.fetch
18+
19+
# If the VM crashes, it generates a dump, let's ignore it too.
20+
erl_crash.dump
21+
22+
# Also ignore archive artifacts (built via "mix archive.build").
23+
*.ez
24+
25+
# Ignore package tarball (built via "mix hex.build").
26+
app-*.tar
27+
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
![progress-banner](https://codecrafters.io/landing/images/default_progress_banners/http-server.png)
2+
3+
This is a starting point for Elixir solutions to the
4+
["Build Your Own HTTP server" Challenge](https://app.codecrafters.io/courses/http-server/overview).
5+
6+
[HTTP](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol) is the
7+
protocol that powers the web. In this challenge, you'll build a HTTP/1.1 server
8+
that is capable of serving multiple clients.
9+
10+
Along the way you'll learn about TCP servers,
11+
[HTTP request syntax](https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html),
12+
and more.
13+
14+
**Note**: If you're viewing this repo on GitHub, head over to
15+
[codecrafters.io](https://codecrafters.io) to try the challenge.
16+
17+
# Passing the first stage
18+
19+
The entry point for your HTTP server implementation is in `lib/main.ex`. Study
20+
and uncomment the relevant code, and push your changes to pass the first stage:
21+
22+
```sh
23+
git add .
24+
git commit -m "pass 1st stage" # any msg
25+
git push origin master
26+
```
27+
28+
Time to move on to the next stage!
29+
30+
# Stage 2 & beyond
31+
32+
Note: This section is for stages 2 and beyond.
33+
34+
1. Ensure you have `mix` installed locally
35+
1. Run `./your_program.sh` to run your program, which is implemented in
36+
`lib/main.ex`.
37+
1. Commit your changes and run `git push origin master` to submit your solution
38+
to CodeCrafters. Test output will be streamed to your terminal.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Set this to true if you want debug logs.
2+
#
3+
# These can be VERY verbose, so we suggest turning them off
4+
# unless you really need them.
5+
debug: false
6+
7+
# Use this to change the Elixir version used to run your code
8+
# on Codecrafters.
9+
#
10+
# Available versions: elixir-1.17
11+
language_pack: elixir-1.17
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
defmodule Server do
2+
use Application
3+
4+
def start(_type, _args) do
5+
Supervisor.start_link([{Task, fn -> Server.listen() end}], strategy: :one_for_one)
6+
end
7+
8+
def listen() do
9+
# Since the tester restarts your program quite often, setting SO_REUSEADDR
10+
# ensures that we don't run into 'Address already in use' errors
11+
{:ok, socket} = :gen_tcp.listen(4221, [:binary, active: false, reuseaddr: true])
12+
{:ok, _client} = :gen_tcp.accept(socket)
13+
end
14+
end
15+
16+
defmodule CLI do
17+
def main(_args) do
18+
# Start the Server application
19+
{:ok, _pid} = Application.ensure_all_started(:codecrafters_http_server)
20+
21+
# Run forever
22+
Process.sleep(:infinity)
23+
end
24+
end

solutions/elixir/01-at4/code/mix.exs

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
defmodule App.MixProject do
2+
# NOTE: You do not need to change anything in this file.
3+
use Mix.Project
4+
5+
def project do
6+
[
7+
app: :codecrafters_http_server,
8+
version: "1.0.0",
9+
elixir: "~> 1.17",
10+
start_permanent: Mix.env() == :prod,
11+
deps: deps(),
12+
escript: [main_module: CLI]
13+
]
14+
end
15+
16+
# Run "mix help compile.app" to learn about applications.
17+
def application do
18+
[
19+
extra_applications: [:logger],
20+
mod: {Server, []}
21+
]
22+
end
23+
24+
# Run "mix help deps" to learn about dependencies.
25+
defp deps do
26+
[
27+
# {:dep_from_hexpm, "~> 0.3.0"},
28+
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
29+
]
30+
end
31+
end

0 commit comments

Comments
 (0)