📄 megaco_text_mini_decoder.erl
字号:
%% ``The contents of this file are subject to the Erlang Public License,%% Version 1.1, (the "License"); you may not use this file except in%% compliance with the License. You should have received a copy of the%% Erlang Public License along with this software. If not, it can be%% retrieved via the world wide web at http://www.erlang.org/.%% %% Software distributed under the License is distributed on an "AS IS"%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See%% the License for the specific language governing rights and limitations%% under the License.%% %% The Initial Developer of the Original Code is Ericsson Utvecklings AB.%% Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings%% AB. All Rights Reserved.''%% %% $Id$%%%%----------------------------------------------------------------------%%% Purpose: Encode PRETTY Megaco/H.248 text messages from internal form%%-----------------------------------------------------------------------module(megaco_text_mini_decoder).-export([decode_message/2]).-include("megaco_text_tokens.hrl").-include_lib("megaco/src/engine/megaco_message_internal.hrl").%%----------------------------------------------------------------------%% Convert a binary into a mini 'MegacoMessage' record%% Return {ok, MegacoMessageRecord} | {error, Reason}%%----------------------------------------------------------------------decode_message(_, Bin) when binary(Bin) -> case megaco_text_scanner:scan(Bin) of {ok, Tokens, _Vsn, _LastLine} -> decode_message(Tokens); {error, Reason, Line} -> parse_error(Reason, Line, []) end;decode_message(_EC, _BadBin) -> {error, bad_binary}.decode_message(Tokens0) -> Tokens = strip(Tokens0, []), case (catch megaco_text_mini_parser:parse(Tokens)) of {ok, MegacoMessage} -> {ok, MegacoMessage}; {error, Reason} -> parse_error(Reason, Tokens); %% OTP-4007 {'EXIT', Reason} -> parse_error(Reason, Tokens) end.strip([], Tokens) -> lists:reverse(Tokens);strip([{'TransToken', _Line, _Text}|_], Acc) -> strip_finish(Acc);strip([{'ReplyToken', _Line, _Text}|_], Acc) -> strip_finish(Acc);strip([{'PendingToken', _Line, _Text}|_], Acc) -> strip_finish(Acc);strip([{'ResponseAckToken', _Line, _Text}|_], Acc) -> strip_finish(Acc);strip([{'ErrorToken', _Line, _Text}|_], Acc) -> strip_finish(Acc);strip([H|T], Acc) -> strip(T, [H|Acc]).strip_finish(RevTokens) -> lists:reverse([{endOfMessage, 1, endOfMessage}|RevTokens]).parse_error(Reason, Tokens) -> {error, [{reason, Reason}, {token, Tokens}]}.parse_error(Reason, Line, Tokens) -> {error, [{reason, Reason, Line}, {token, Tokens}]}.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -