2011-03-23 17:40:28 +00:00
|
|
|
%% @author Bart Van Der Meerssche <bart.vandermeerssche@flukso.net>
|
|
|
|
%% @copyright (C) 2009-2011 Bart Van Der Meerssche
|
|
|
|
%%%
|
|
|
|
%%% This program is free software: you can redistribute it and/or modify
|
|
|
|
%%% it under the terms of the GNU General Public License as published by
|
|
|
|
%%% the Free Software Foundation, either version 3 of the License, or
|
|
|
|
%%% (at your option) any later version.
|
|
|
|
%%%
|
|
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
%%% GNU General Public License for more details.
|
|
|
|
%%%
|
|
|
|
%%% You should have received a copy of the GNU General Public License
|
|
|
|
%%% along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
%%%
|
|
|
|
%% @doc Common record definitions and helper functions for the Flukso API.
|
2010-02-25 17:45:11 +00:00
|
|
|
|
2011-03-27 19:48:17 +00:00
|
|
|
-define(BASE_PATH, "var/data/base/").
|
|
|
|
-define(NIGHT_PATH, "var/data/night/").
|
|
|
|
|
2011-03-24 09:28:13 +00:00
|
|
|
-define(MINUTE, 60).
|
|
|
|
-define(QUARTER, 900).
|
|
|
|
-define(HOUR, 3600).
|
|
|
|
-define(DAY, 86400).
|
|
|
|
-define(WEEK, 604800).
|
|
|
|
-define(MONTH, 2419200).
|
|
|
|
-define(YEAR, 31536000).
|
|
|
|
|
2011-03-23 17:40:28 +00:00
|
|
|
-record(state,
|
|
|
|
{rrdSensor,
|
|
|
|
rrdStart,
|
|
|
|
rrdEnd,
|
|
|
|
rrdResolution,
|
|
|
|
rrdFactor,
|
|
|
|
token,
|
2011-03-26 22:47:42 +00:00
|
|
|
device,
|
|
|
|
digest,
|
2011-03-23 17:40:28 +00:00
|
|
|
jsonpCallback}).
|
|
|
|
|
|
|
|
%% checks
|
2011-03-24 07:31:30 +00:00
|
|
|
check_version(Version) ->
|
2011-03-23 17:40:28 +00:00
|
|
|
case Version of
|
|
|
|
"1.0" -> {Version, true};
|
|
|
|
_ -> {false, false}
|
2011-03-24 07:31:30 +00:00
|
|
|
end.
|
|
|
|
|
|
|
|
check_version(undefined, undefined) ->
|
|
|
|
{false, false};
|
|
|
|
check_version(Version, undefined) ->
|
|
|
|
check_version(Version);
|
2011-03-23 17:40:28 +00:00
|
|
|
check_version(undefined, Version) ->
|
2011-03-24 07:31:30 +00:00
|
|
|
check_version(Version);
|
2011-03-23 17:40:28 +00:00
|
|
|
check_version(_, _) ->
|
|
|
|
{false, false}.
|
|
|
|
|
|
|
|
check_sensor(Sensor) ->
|
2011-03-26 11:06:06 +00:00
|
|
|
check_hex(Sensor, 32).
|
2011-03-24 07:13:27 +00:00
|
|
|
|
2011-04-16 21:52:19 +00:00
|
|
|
check_device(Device) ->
|
|
|
|
check_hex(Device, 32).
|
|
|
|
|
2011-03-26 11:06:06 +00:00
|
|
|
check_token(undefined, undefined) ->
|
|
|
|
{false, false};
|
|
|
|
check_token(Token, undefined) ->
|
|
|
|
check_hex(Token, 32);
|
|
|
|
check_token(undefined, Token) ->
|
|
|
|
check_hex(Token, 32);
|
|
|
|
check_token(_, _) ->
|
|
|
|
{false, false}.
|
|
|
|
|
|
|
|
check_digest(Digest) ->
|
|
|
|
check_hex(Digest, 40).
|
|
|
|
|
|
|
|
check_hex(String, Length) ->
|
2011-03-24 07:13:27 +00:00
|
|
|
case re:run(String, "[0-9a-f]+", []) of
|
2011-03-26 11:06:06 +00:00
|
|
|
{match, [{0, Length}]} -> {String, true};
|
2011-03-23 17:40:28 +00:00
|
|
|
_ -> {false, false}
|
|
|
|
end.
|
|
|
|
|
|
|
|
check_time(undefined, undefined, _End, _Resolution) ->
|
|
|
|
{false, false, false, false};
|
|
|
|
check_time(Interval, undefined, undefined, undefined) ->
|
|
|
|
case default_resolution(Interval) of
|
|
|
|
false -> {false, false, false, false};
|
|
|
|
DefResolution -> check_time(Interval, undefined, undefined, DefResolution)
|
|
|
|
end;
|
|
|
|
check_time(Interval, undefined, undefined, Resolution) ->
|
|
|
|
Now = unix_time(),
|
|
|
|
case {time_to_seconds(Interval), time_to_seconds(Resolution)} of
|
|
|
|
{false, _} -> {false, false, false, false};
|
|
|
|
{_, false} -> {false, false, false, false};
|
|
|
|
{IntervalSec, ResolutionSec} ->
|
|
|
|
AlignedEnd = time_align(Now, ResolutionSec),
|
|
|
|
AlignedStart = AlignedEnd - IntervalSec,
|
|
|
|
{integer_to_list(AlignedStart), integer_to_list(AlignedEnd), integer_to_list(ResolutionSec), true}
|
|
|
|
end;
|
|
|
|
check_time(undefined, Start, undefined, Resolution) ->
|
|
|
|
check_time(undefined, Start, integer_to_list(unix_time()), Resolution);
|
|
|
|
check_time(undefined, Start, End, undefined) ->
|
|
|
|
check_time(undefined, Start, End, "minute");
|
|
|
|
check_time(undefined, Start, End, Resolution) ->
|
|
|
|
case {re:run(Start, "[0-9]+", []), re:run(End, "[0-9]+", []), time_to_seconds(Resolution)} of
|
|
|
|
{_, _, false} -> {false, false, false, false};
|
|
|
|
{{match, [{0,_}]}, {match, [{0,_}]}, ResolutionSec} ->
|
|
|
|
AlignedStart = time_align(list_to_integer(Start), ResolutionSec),
|
|
|
|
AlignedEnd = time_align(list_to_integer(End), ResolutionSec),
|
|
|
|
{integer_to_list(AlignedStart), integer_to_list(AlignedEnd), integer_to_list(ResolutionSec), true};
|
|
|
|
_ -> {false, false, false, false}
|
|
|
|
end;
|
|
|
|
check_time(_, _, _, _) ->
|
|
|
|
{false, false, false, false}.
|
|
|
|
|
|
|
|
check_unit(Unit) ->
|
|
|
|
Units = [{"watt", 3600},
|
|
|
|
{"kwhperyear", 31536},
|
|
|
|
{"eurperyear", 5676},
|
|
|
|
{"audperyear", 5991}],
|
|
|
|
|
|
|
|
case lists:keyfind(Unit, 1, Units) of
|
|
|
|
false -> {false, false};
|
|
|
|
{_Unit, RrdFactor} -> {RrdFactor, true}
|
|
|
|
end.
|
|
|
|
|
|
|
|
check_jsonp_callback(undefined) ->
|
|
|
|
{undefined, true};
|
|
|
|
check_jsonp_callback(JsonpCallback) ->
|
|
|
|
Length = string:len(JsonpCallback),
|
|
|
|
|
|
|
|
case re:run(JsonpCallback, "[0-9a-zA-Z_]+", []) of
|
|
|
|
{match, [{0, Length}]} -> {JsonpCallback, true};
|
|
|
|
_ -> {false, false}
|
|
|
|
end.
|
|
|
|
|
|
|
|
%% helper functions
|
|
|
|
unix_time() ->
|
|
|
|
{Megaseconds, Seconds, _Microseconds} = erlang:now(),
|
|
|
|
Megaseconds*1000000 + Seconds.
|
|
|
|
|
|
|
|
time_align(Time, Resolution) ->
|
|
|
|
(Time div Resolution) * Resolution.
|
|
|
|
|
|
|
|
default_resolution(Interval) ->
|
|
|
|
DefResolutions = [{"15min", "minute"},
|
|
|
|
{"hour", "minute"},
|
|
|
|
{"day", "15min"},
|
|
|
|
{"week", "day"},
|
|
|
|
{"month", "day"},
|
|
|
|
{"year", "week"},
|
|
|
|
{"night", "day"}],
|
|
|
|
|
|
|
|
case lists:keyfind(Interval, 1, DefResolutions) of
|
|
|
|
false -> false;
|
|
|
|
{_Interval, Defresolution} -> Defresolution
|
|
|
|
end.
|
|
|
|
|
|
|
|
time_to_seconds(Time) ->
|
2011-03-24 09:28:13 +00:00
|
|
|
Times = [{"minute", ?MINUTE},
|
|
|
|
{"15min", ?QUARTER},
|
|
|
|
{"hour", ?HOUR},
|
|
|
|
{"day", ?DAY},
|
|
|
|
{"week", ?WEEK},
|
|
|
|
{"month", ?MONTH},
|
|
|
|
{"year", ?YEAR},
|
|
|
|
{"night", ?MONTH}],
|
2011-03-23 17:40:28 +00:00
|
|
|
|
|
|
|
case lists:keyfind(Time, 1, Times) of
|
|
|
|
false -> false;
|
|
|
|
{_Time, TimeSec} -> TimeSec
|
|
|
|
end.
|
2011-03-29 07:45:59 +00:00
|
|
|
|
|
|
|
% severity levels
|
|
|
|
-define(EMERGENCY, 0).
|
|
|
|
-define(ALERT, 1).
|
|
|
|
-define(CRITICAL, 2).
|
|
|
|
-define(ERROR, 3).
|
|
|
|
-define(WARNING, 4).
|
|
|
|
-define(NOTICE, 5).
|
|
|
|
-define(INFO, 6).
|
|
|
|
-define(DEBUG, 7).
|
|
|
|
|
2011-03-29 10:50:25 +00:00
|
|
|
% logging severity threshold
|
|
|
|
-define(LOGLEVEL, 7).
|
|
|
|
|
2011-03-29 07:45:59 +00:00
|
|
|
% log to Drupal's watchdog table
|
2011-03-29 10:50:25 +00:00
|
|
|
logger(Uid, Type, Message, Severity, ReqData) when Severity =< ?LOGLEVEL ->
|
2011-03-29 07:45:59 +00:00
|
|
|
mysql:execute(pool, watchdog,
|
|
|
|
[Uid,
|
|
|
|
Type,
|
|
|
|
Message,
|
|
|
|
<<"a:0:{}">>,
|
|
|
|
Severity,
|
|
|
|
list_to_binary(wrq:raw_path(ReqData)),
|
|
|
|
list_to_binary(wrq:peer(ReqData)),
|
|
|
|
unix_time()
|
2011-03-29 10:50:25 +00:00
|
|
|
]);
|
|
|
|
logger(_Uid, _Type, _Message, _Severity, _ReqData) ->
|
|
|
|
true.
|
2011-03-29 08:08:09 +00:00
|
|
|
|
|
|
|
% erlrrd wrappers
|
|
|
|
rrd_fetch(Path, RrdSensor, RrdStart, RrdEnd, RrdResolution) ->
|
|
|
|
erlrrd:fetch(erlrrd:c([[Path, [RrdSensor|".rrd"]], "AVERAGE", ["-s ", RrdStart], ["-e ", RrdEnd], ["-r ", RrdResolution]])).
|
|
|
|
|
|
|
|
rrd_update(Path, RrdSensor, RrdData) ->
|
|
|
|
erlrrd:update([Path, [RrdSensor|".rrd"], " ", RrdData]).
|