Current section
Files
Jump to
Current section
Files
src/erlang_term.erl
%-*-Mode:erlang;coding:utf-8;tab-width:4;c-basic-offset:4;indent-tabs-mode:()-*-
% ex: set ft=erlang fenc=utf-8 sts=4 ts=4 sw=4 et nomod:
%%%
%%%------------------------------------------------------------------------
%%% @doc
%%% ==Erlang Term Info==
%%% @end
%%%
%%% BSD LICENSE
%%%
%%% Copyright (c) 2014-2015, Michael Truog <mjtruog at gmail dot com>
%%% All rights reserved.
%%%
%%% Redistribution and use in source and binary forms, with or without
%%% modification, are permitted provided that the following conditions are met:
%%%
%%% * Redistributions of source code must retain the above copyright
%%% notice, this list of conditions and the following disclaimer.
%%% * Redistributions in binary form must reproduce the above copyright
%%% notice, this list of conditions and the following disclaimer in
%%% the documentation and/or other materials provided with the
%%% distribution.
%%% * All advertising materials mentioning features or use of this
%%% software must display the following acknowledgment:
%%% This product includes software developed by Michael Truog
%%% * The name of the author may not be used to endorse or promote
%%% products derived from this software without specific prior
%%% written permission
%%%
%%% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
%%% CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
%%% INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
%%% OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
%%% DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
%%% CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
%%% SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
%%% BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
%%% SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
%%% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
%%% WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
%%% NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
%%% OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
%%% DAMAGE.
%%%
%%% @author Michael Truog <mjtruog [at] gmail (dot) com>
%%% @copyright 2014-2015 Michael Truog
%%% @version 1.5.1 {@date} {@time}
%%%------------------------------------------------------------------------
-module(erlang_term).
-author('mjtruog [at] gmail (dot) com').
%% external interface
-export([byte_size/1,
byte_size/2]).
-compile({no_auto_import,
[byte_size/1,
byte_size/2]}).
-define(HEAP_BINARY_LIMIT, 64).
-ifdef(ERLANG_OTP_VERSION_16).
-else.
-define(ERLANG_OTP_VERSION_17_FEATURES, undefined).
-endif.
-ifdef(ERLANG_OTP_VERSION_17_FEATURES).
-define(BYTE_SIZE_TERMS_MAP,
;
byte_size_terms(Term)
when is_map(Term) ->
maps:fold(fun(K, V, Bytes) ->
byte_size_terms(K) + byte_size_terms(V) + Bytes
end, 0, Term)
;).
-define(INTERNAL_TEST_MAP,
88 = byte_size(#{1=>1, 2=>2, 3=>3}, 8),
136 = byte_size(#{1=>RefcBinary, 2=>2, 3=>3}, 8) -
erlang:byte_size(RefcBinary),
).
-else.
-define(BYTE_SIZE_TERMS_MAP,
;).
-define(INTERNAL_TEST_MAP,
ok,
).
-endif.
%%%------------------------------------------------------------------------
%%% External interface functions
%%%------------------------------------------------------------------------
byte_size(Term) ->
byte_size(Term, erlang:system_info(wordsize)).
byte_size(Term, WordSize) ->
byte_size_term_local(Term, WordSize) +
byte_size_terms(Term).
%%%------------------------------------------------------------------------
%%% Private functions
%%%------------------------------------------------------------------------
byte_size_terms(Term)
when is_list(Term) ->
byte_size_terms_in_list(Term);
byte_size_terms(Term)
when is_tuple(Term) ->
if
Term == {} ->
0;
true ->
byte_size_terms_in_tuple(1, erlang:tuple_size(Term), Term)
end
?BYTE_SIZE_TERMS_MAP
byte_size_terms(Term) ->
byte_size_term(Term).
byte_size_terms_in_list([]) ->
0;
byte_size_terms_in_list([Term | L]) ->
byte_size_terms(Term) +
byte_size_terms_in_list(L);
byte_size_terms_in_list(Term) ->
byte_size_terms(Term). % element of improper list
byte_size_terms_in_tuple(Size, Size, Term) ->
byte_size_terms(erlang:element(Size, Term));
byte_size_terms_in_tuple(I, Size, Term) ->
byte_size_terms(erlang:element(I, Term)) +
byte_size_terms_in_tuple(I + 1, Size, Term).
byte_size_term(Term) ->
byte_size_term_global(Term).
byte_size_term_local(Term, WordSize) ->
% stack/register size + heap size
(1 + erts_debug:flat_size(Term)) * WordSize.
byte_size_term_global(Term)
when is_binary(Term) ->
% global data storage within allocators
BinarySize = erlang:byte_size(Term),
if
BinarySize > ?HEAP_BINARY_LIMIT ->
% refc binary
BinarySize;
true ->
% heap binary
0
end;
byte_size_term_global(_) ->
0.
-ifdef(TEST).
-include_lib("eunit/include/eunit.hrl").
internal_test() ->
RefcBinary = <<1:((?HEAP_BINARY_LIMIT + 1) * 8)>>,
HeapBinary = <<1:(?HEAP_BINARY_LIMIT * 8)>>,
true = (7 == (1 + erts_debug:flat_size(RefcBinary))),
% doesn't work in console shell
% (process heap size of binary is excluded
% when executed in the console shell)
true = (11 == (1 + erts_debug:flat_size(HeapBinary))),
true = (4 == (1 + erts_debug:flat_size(<<1:8>>))),
24 = byte_size(<<>>, 8),
32 = byte_size(<<"abc">>, 8),
32 = byte_size(<<$a, $b, $c>>, 8),
8 = byte_size([], 8),
24 = byte_size([0|[]], 8),
24 = byte_size([1|2], 8), % improper list
16 = byte_size({}, 8),
24 = byte_size({0}, 8),
8 = byte_size(0, 8),
8 = byte_size(erlang:self(), 8),
8 = byte_size(atom, 8),
?INTERNAL_TEST_MAP
ok.
-endif.