%%%------------------------------------------------------------------- %%% File : pm_node.erl %%% Author : Ari Lerner %%% The client is a running process that will run on the master node %%% and spawn requests to the pm_nodes and compile the responses %%% for use within the poolparty network %%%------------------------------------------------------------------- -module(pm_node). -behaviour(gen_server). %% API -export([start_link/0]). %% gen_server callbacks -export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]). -record(state, {}). -define(SERVER, ?MODULE). % Client function definitions -export ([stop/0]). -export ([get_load_for_type/1, fire_cmd/1, run_reconfig/0]). %%==================================================================== %% API %%==================================================================== %%-------------------------------------------------------------------- %% Function: start_link() -> {ok,Pid} | ignore | {error,Error} %% Description: Starts the server %% %% Starts the timer to fire off a ping to the master to let the master %% know that it is alive %% %% Fires a ping every 10 seconds %%-------------------------------------------------------------------- start_link() -> utils:start_timer(10000, fun() -> net_adm:ping(master) end), gen_server:start_link({global, ?SERVER}, ?MODULE, [], []). %%==================================================================== %% gen_server callbacks %%==================================================================== %%-------------------------------------------------------------------- %% Function: init(Args) -> {ok, State} | %% {ok, State, Timeout} | %% ignore | %% {stop, Reason} %% Description: Initiates the server %%-------------------------------------------------------------------- init([]) -> process_flag(trap_exit, true), {ok, #state{}}. %%-------------------------------------------------------------------- %% Function: %% handle_call(Request, From, State) -> {reply, Reply, State} | %% {reply, Reply, State, Timeout} | %% {noreply, State} | %% {noreply, State, Timeout} | %% {stop, Reason, Reply, State} | %% {stop, Reason, State} %% Description: Handling call messages %%-------------------------------------------------------------------- handle_call(_Request, _From, State) -> Reply = ok, {reply, Reply, State}. %%-------------------------------------------------------------------- %% Function: handle_cast(Msg, State) -> {noreply, State} | %% {noreply, State, Timeout} | %% {stop, Reason, State} %% Description: Handling cast messages %%-------------------------------------------------------------------- handle_cast(_Msg, State) -> {noreply, State}. %%-------------------------------------------------------------------- %% Function: handle_info(Info, State) -> {noreply, State} | %% {noreply, State, Timeout} | %% {stop, Reason, State} %% Description: Handling all non call/cast messages %%-------------------------------------------------------------------- handle_info(_Info, State) -> io:format("Info message received from: ~p~n", [_Info]), {noreply, State}. %%-------------------------------------------------------------------- %% Function: terminate(Reason, State) -> void() %% Description: This function is called by a gen_server when it is about to %% terminate. It should be the opposite of Module:init/1 and do any necessary %% cleaning up. When it returns, the gen_server terminates with Reason. %% The return value is ignored. %%-------------------------------------------------------------------- terminate(_Reason, _State) -> utils:stop_timer(), ok. %%-------------------------------------------------------------------- %% Func: code_change(OldVsn, State, Extra) -> {ok, NewState} %% Description: Convert process state when code is changed %%-------------------------------------------------------------------- code_change(_OldVsn, State, _Extra) -> {ok, State}. %%-------------------------------------------------------------------- %%% Internal functions %%-------------------------------------------------------------------- % Get the load for the type sent... get_load_for_type(Type) -> String = string:concat(". /etc/profile && server-get-load -m ",Type), {os:cmd(String)}. % Rerun the configuration run_reconfig() -> {os:cmd(". /etc/profile && server-rerun")}. % Allows us to fire off any command (allowed by poolparty on the check) fire_cmd(Cmd) -> String = ". /etc/profile && server-fire-cmd \""++Cmd++"\"", {os:cmd(String)}. % Stop the pm_node entirely stop() -> gen_server:cast(?MODULE, stop).