From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/debugger/src/dbg_wx_break.erl | 102 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 lib/debugger/src/dbg_wx_break.erl (limited to 'lib/debugger/src/dbg_wx_break.erl') diff --git a/lib/debugger/src/dbg_wx_break.erl b/lib/debugger/src/dbg_wx_break.erl new file mode 100644 index 0000000000..a19203f7d0 --- /dev/null +++ b/lib/debugger/src/dbg_wx_break.erl @@ -0,0 +1,102 @@ +%% +%% %CopyrightBegin% +%% +%% Copyright Ericsson AB 2008-2009. All Rights Reserved. +%% +%% 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 online 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. +%% +%% %CopyrightEnd% +%% + +%% +-module(dbg_wx_break). + +%% External exports +-export([start/3, start/4, start/5]). + +%% Internal exports +-export([init/6]). + +%%==================================================================== +%% External exports +%%==================================================================== + +%%-------------------------------------------------------------------- +%% start(Wx, Pos, Type) +%% start(Wx, Pos, Type, Module, Line) +%% Wx = Parent Window +%% Pos = {X, Y} +%% X = Y = integer() +%% Type = line | conditional | function +%% Module = atom() +%% Line = integer() +%%-------------------------------------------------------------------- +start(Wx, Pos, Type) -> + start(Wx, Pos, Type, "", ""). +start(Wx, Pos, Type, Mod) -> + start(Wx, Pos, Type, Mod, ""). +start(Wx, Pos, Type, Mod, Line) -> + Env = wx:get_env(), + spawn_link(?MODULE, init, [Wx, Env, Pos, Type, Mod, Line]). + + +%%==================================================================== +%% Internal exports +%%==================================================================== + +init(Wx, Env, Pos, Type, Mod, Line) -> + wx:set_env(Env), + Win = wx:batch(fun() -> dbg_wx_break_win:create_win(Wx, Pos, Type, Mod, Line) end), + if + Type==function, is_atom(Mod) -> + Win2 = gui_cmd({module, Mod}, Win), + loop(Win2); + true -> + loop(Win) + end. + +loop(Win) -> + receive + + %% From the GUI + GuiEvent when element(1, GuiEvent)==gs; element(1, GuiEvent)==wx -> + Cmd = wx:batch(fun() -> dbg_wx_break_win:handle_event(GuiEvent, Win) end), + Win2 = gui_cmd(Cmd, Win), + loop(Win2) + end. + +gui_cmd(ignore, Win) -> + Win; +gui_cmd(stopped, _Win) -> + exit(normal); +gui_cmd({win, Win2}, _Win) -> + Win2; +gui_cmd({module, Mod}, Win) -> + Funcs = int:functions(Mod), + dbg_wx_break_win:update_functions(Win, Funcs); +gui_cmd({break, DataL, Action}, _Win) -> + Fun = + fun(Data) -> + case Data of + [Mod, Line] -> + int:break(Mod, Line), + int:action_at_break(Mod, Line, Action); + [Mod, Line, CMod, CFunc] -> + int:break(Mod, Line), + int:test_at_break(Mod, Line, {CMod, CFunc}), + int:action_at_break(Mod, Line, Action); + [Mod, Func, Arity] -> + int:break_in(Mod, Func, Arity) + end + end, + lists:foreach(Fun, DataL), + exit(normal). -- cgit v1.2.3