1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
% Copyright (C) 2024 Eric Ludlam (and others)
% 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/>.
function nso = emacsnetshell(cmd, data)
% Create a connection to an EMACS editor server.
%
% emacsnetshell('init') - Initialize the connection with Emacs.
% emacs will send commands to MATLAB with additional connectivity
% information.
%
% emacsnetshell('ack') - Send ack to Emacs, it should echo back.
%
% emacsnetshell('output',data) - Send DATA as output to display in Emacs.
% emacsnetshell('error',data) - Send DATA as error description to Emacs.
% emacsnetshell('eval',data) - Send DATA - a string containing an Emacs
% lisp form which will be evaluated in Emacs.
EMACSSERVER = getappdata(groot, 'EmacsNetShell');
if nargin == 0
if isempty(EMACSSERVER)
cmd = 'init';
else
cmd = 'fetch';
end
end
if strcmp(cmd, 'fetch')
% Fetch means to get the server and return it. Do not create
% the server on fetch - otherwise no way to know if a server was started
% or not.
nso = EMACSSERVER;
return;
elseif strcmp(cmd, 'shutdown')
% Shutdown our connection to emacs.
setappdata(groot, 'EmacsNetShell', []);
if ~isempty(EMACSSERVER)
delete(EMACSSERVER);
end
else
if ~isempty(EMACSSERVER) && ~isvalid(EMACSSERVER)
EMACSSERVER = [];
setappdata(groot, 'EmacsNetShell', EMACSSERVER);
end
if isempty(EMACSSERVER)
EMACSSERVER = emacs.EmacsServer();
setappdata(groot, 'EmacsNetShell', EMACSSERVER);
sendinit = false;
else
sendinit = true;
end
if ~ischar(cmd)
error('Command must be a char vector.');
end
if ~strcmp(cmd,'init') || sendinit
if nargin == 2
EMACSSERVER.SendCommand(cmd, data);
else
EMACSSERVER.SendCommand(cmd);
end
end
end
if nargout == 1
nso = EMACSSERVER;
end
end
|