Skip to content

Instantly share code, notes, and snippets.

@ggb
Created April 8, 2017 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ggb/c4857e0ad02e2d8b4d3ce063a2be6534 to your computer and use it in GitHub Desktop.
Save ggb/c4857e0ad02e2d8b4d3ce063a2be6534 to your computer and use it in GitHub Desktop.
%% Based on code from
%% Erlang Programming
%% Francecso Cesarini and Simon Thompson
%% O'Reilly, 2008
%% http://oreilly.com/catalog/9780596518189/
%% http://www.erlangprogramming.org/
%% (c) Francesco Cesarini and Simon Thompson
-module(frequency).
-export([start/0,allocate/0,deallocate/1,stop/0,clear/0]).
-export([init/0]).
%% These are the start functions used to create and
%% initialize the server.
start() ->
register(frequency,
spawn(frequency, init, [])).
init() ->
Frequencies = {get_frequencies(), []},
loop(Frequencies).
% Hard Coded
get_frequencies() -> [10,11,12,13,14,15].
%% The Main Loop
loop(Frequencies) ->
receive
{request, Pid, allocate} ->
{NewFrequencies, Reply} = allocate(Frequencies, Pid),
Pid ! {reply, Reply},
loop(NewFrequencies);
{request, Pid , {deallocate, Freq}} ->
{NewFrequencies, Reply} = deallocate(Frequencies, Freq, Pid),
Pid ! {reply, Reply},
loop(NewFrequencies);
{request, Pid, stop} ->
Pid ! {reply, stopped}
end.
%% Functional interface
allocate() ->
frequency ! {request, self(), allocate},
receive
{reply, Reply} -> Reply
after 1000 ->
clear()
end.
deallocate(Freq) ->
frequency ! {request, self(), {deallocate, Freq}},
receive
{reply, Reply} -> Reply
after 1000 ->
clear()
end.
stop() ->
frequency ! {request, self(), stop},
receive
{reply, Reply} -> Reply
after 1000 ->
clear()
end.
%% New clear function:
clear() ->
receive
Msg ->
io:format("~n", Msg),
clear()
after 0 ->
ok
end.
%% The Internal Help Functions used to allocate and
%% deallocate frequencies.
allocate({[], Allocated}, _Pid) ->
{{[], Allocated}, {error, no_frequency}};
allocate({[Freq|Free], Allocated}, Pid) ->
case lists:keyfind(Pid, 2, Allocated) of
false ->
{{Free, [{Freq, Pid}|Allocated]}, {ok, Freq}};
_ ->
{{[Freq|Free], Allocated}, {error, client_has_frequency}}
end.
deallocate({Free, Allocated}, Freq, Pid) ->
case lists:keyfind(Pid, 2, Allocated) of
{_F, Pid} ->
NewAllocated=lists:keydelete(Freq, 1, Allocated),
{ok, {[Freq|Free], NewAllocated}};
_ ->
{{error, not_your_frequency}, {Free, Allocated}}
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment