2008-09-29 23:35:30 +04:00
|
|
|
/*
|
2009-01-11 00:33:34 +03:00
|
|
|
* Copyright 2008-9 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-09-29 23:35:30 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "arexx.h"
|
|
|
|
#include <reaction/reaction_macros.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <proto/intuition.h>
|
|
|
|
#include "desktop/browser.h"
|
2008-10-06 21:47:31 +04:00
|
|
|
#include "amiga/gui.h"
|
2009-01-11 00:33:34 +03:00
|
|
|
#include <proto/dos.h>
|
2009-03-28 15:50:19 +03:00
|
|
|
#include <proto/exec.h>
|
|
|
|
#include "amiga/download.h"
|
2008-09-29 23:35:30 +04:00
|
|
|
|
2008-11-24 11:06:11 +03:00
|
|
|
const char * const verarexx;
|
|
|
|
const int verver;
|
|
|
|
const int verrev;
|
|
|
|
const char * const netsurf_version;
|
|
|
|
const int netsurf_version_major;
|
|
|
|
const int netsurf_version_minor;
|
|
|
|
|
2008-09-29 23:35:30 +04:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
RX_OPEN=0,
|
2008-10-06 21:47:31 +04:00
|
|
|
RX_QUIT,
|
2008-10-26 02:22:34 +03:00
|
|
|
RX_TOFRONT,
|
2008-11-24 11:06:11 +03:00
|
|
|
RX_GETURL,
|
|
|
|
RX_GETTITLE,
|
2009-01-11 00:33:34 +03:00
|
|
|
RX_VERSION,
|
|
|
|
RX_SAVE
|
2008-09-29 23:35:30 +04:00
|
|
|
};
|
|
|
|
|
2008-10-26 02:22:34 +03:00
|
|
|
STATIC char result[100];
|
|
|
|
|
2008-09-29 23:35:30 +04:00
|
|
|
STATIC VOID rx_open(struct ARexxCmd *, struct RexxMsg *);
|
2008-10-06 21:47:31 +04:00
|
|
|
STATIC VOID rx_quit(struct ARexxCmd *, struct RexxMsg *);
|
2008-10-26 02:22:34 +03:00
|
|
|
STATIC VOID rx_tofront(struct ARexxCmd *, struct RexxMsg *);
|
|
|
|
STATIC VOID rx_geturl(struct ARexxCmd *, struct RexxMsg *);
|
2008-11-24 11:06:11 +03:00
|
|
|
STATIC VOID rx_gettitle(struct ARexxCmd *, struct RexxMsg *);
|
|
|
|
STATIC VOID rx_version(struct ARexxCmd *, struct RexxMsg *);
|
2009-01-11 00:33:34 +03:00
|
|
|
STATIC VOID rx_save(struct ARexxCmd *, struct RexxMsg *);
|
2008-09-29 23:35:30 +04:00
|
|
|
|
|
|
|
STATIC struct ARexxCmd Commands[] =
|
|
|
|
{
|
2009-02-01 02:45:25 +03:00
|
|
|
{"OPEN",RX_OPEN,rx_open,"URL/A,NEW=NEWWINDOW/S,SAVEAS/K", 0, NULL, 0, 0, NULL },
|
2008-10-06 21:47:31 +04:00
|
|
|
{"QUIT",RX_QUIT,rx_quit,NULL, 0, NULL, 0, 0, NULL },
|
2008-10-26 02:22:34 +03:00
|
|
|
{"TOFRONT",RX_TOFRONT,rx_tofront,NULL, 0, NULL, 0, 0, NULL },
|
|
|
|
{"GETURL",RX_GETURL,rx_geturl,NULL, 0, NULL, 0, 0, NULL },
|
2008-11-24 11:06:11 +03:00
|
|
|
{"GETTITLE",RX_GETTITLE,rx_gettitle,NULL, 0, NULL, 0, 0, NULL },
|
|
|
|
{"VERSION",RX_VERSION,rx_version,"VERSION/N,SVN=REVISION/N,RELEASE/S", 0, NULL, 0, 0, NULL },
|
2009-01-11 00:33:34 +03:00
|
|
|
{"SAVE",RX_SAVE,rx_save,"FILENAME/A", 0, NULL, 0, 0, NULL },
|
2008-09-29 23:35:30 +04:00
|
|
|
{ NULL, 0, NULL, NULL, 0, NULL, 0, 0, NULL }
|
|
|
|
};
|
|
|
|
|
2008-11-16 17:42:40 +03:00
|
|
|
BOOL ami_arexx_init(void)
|
2008-09-29 23:35:30 +04:00
|
|
|
{
|
|
|
|
if(arexx_obj = ARexxObject,
|
|
|
|
AREXX_HostName,"NETSURF",
|
|
|
|
AREXX_Commands,Commands,
|
|
|
|
AREXX_NoSlot,TRUE,
|
|
|
|
AREXX_ReplyHook,NULL,
|
|
|
|
AREXX_DefExtension,"nsrx",
|
|
|
|
End)
|
|
|
|
{
|
|
|
|
GetAttr(AREXX_SigMask, arexx_obj, &rxsig);
|
2008-11-16 17:42:40 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-02-01 02:45:25 +03:00
|
|
|
/* Create a temporary ARexx port so we can send commands to the NetSurf which
|
2008-11-16 17:42:40 +03:00
|
|
|
* is already running */
|
|
|
|
arexx_obj = ARexxObject,
|
|
|
|
AREXX_HostName,"NETSURF",
|
|
|
|
AREXX_Commands,Commands,
|
|
|
|
AREXX_NoSlot,FALSE,
|
|
|
|
AREXX_ReplyHook,NULL,
|
|
|
|
AREXX_DefExtension,"nsrx",
|
|
|
|
End;
|
|
|
|
return false;
|
2008-09-29 23:35:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-26 15:25:26 +03:00
|
|
|
void ami_arexx_handle(void)
|
2008-09-29 23:35:30 +04:00
|
|
|
{
|
|
|
|
RA_HandleRexx(arexx_obj);
|
|
|
|
}
|
|
|
|
|
2008-10-26 15:25:26 +03:00
|
|
|
void ami_arexx_execute(char *script)
|
|
|
|
{
|
|
|
|
IDoMethod(arexx_obj, AM_EXECUTE, script, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ami_arexx_cleanup(void)
|
2008-09-29 23:35:30 +04:00
|
|
|
{
|
|
|
|
if(arexx_obj) DisposeObject(arexx_obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC VOID rx_open(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2009-03-28 15:50:19 +03:00
|
|
|
struct dlnode *dln;
|
|
|
|
|
2009-02-01 02:45:25 +03:00
|
|
|
if(cmd->ac_ArgList[2])
|
|
|
|
{
|
2009-04-14 22:51:10 +04:00
|
|
|
if(!curbw) return;
|
|
|
|
|
2009-03-28 15:50:19 +03:00
|
|
|
dln = AllocVec(sizeof(struct dlnode),MEMF_PRIVATE | MEMF_CLEAR);
|
|
|
|
dln->filename = strdup((char *)cmd->ac_ArgList[2]);
|
|
|
|
dln->node.ln_Name = strdup((char *)cmd->ac_ArgList[0]);
|
|
|
|
dln->node.ln_Type = NT_USER;
|
|
|
|
AddTail(&curbw->window->dllist,dln);
|
|
|
|
if(!curbw->download) browser_window_download(curbw,(char *)cmd->ac_ArgList[0],NULL);
|
2009-02-01 02:45:25 +03:00
|
|
|
}
|
|
|
|
else if(cmd->ac_ArgList[1])
|
2008-10-26 02:22:34 +03:00
|
|
|
{
|
|
|
|
browser_window_create((char *)cmd->ac_ArgList[0],NULL,NULL,true,false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
browser_window_go(curbw,(char *)cmd->ac_ArgList[0],NULL,true);
|
|
|
|
}
|
2008-09-29 23:35:30 +04:00
|
|
|
}
|
2008-10-06 21:47:31 +04:00
|
|
|
|
2009-01-11 00:33:34 +03:00
|
|
|
STATIC VOID rx_save(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
|
|
|
BPTR fh = 0;
|
|
|
|
ami_update_pointer(curbw->window->shared->win,GUI_POINTER_WAIT);
|
|
|
|
if(fh = FOpen(cmd->ac_ArgList[0],MODE_NEWFILE,0))
|
|
|
|
{
|
|
|
|
FWrite(fh,curbw->current_content->source_data,1,curbw->current_content->source_size);
|
|
|
|
FClose(fh);
|
|
|
|
SetComment(cmd->ac_ArgList[0],curbw->current_content->url);
|
|
|
|
}
|
|
|
|
|
|
|
|
ami_update_pointer(curbw->window->shared->win,GUI_POINTER_DEFAULT);
|
|
|
|
}
|
|
|
|
|
2008-10-06 21:47:31 +04:00
|
|
|
STATIC VOID rx_quit(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
|
|
|
ami_quit_netsurf();
|
|
|
|
}
|
2008-10-26 02:22:34 +03:00
|
|
|
|
|
|
|
STATIC VOID rx_tofront(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
|
|
|
ScreenToFront(scrn);
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC VOID rx_geturl(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
2009-03-18 00:20:15 +03:00
|
|
|
if(curbw && curbw->current_content)
|
2008-10-26 15:25:26 +03:00
|
|
|
{
|
|
|
|
strcpy(result,curbw->current_content->url);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-02-01 16:37:32 +03:00
|
|
|
strcpy(result,"");
|
2008-10-26 15:25:26 +03:00
|
|
|
}
|
|
|
|
|
2008-10-26 02:22:34 +03:00
|
|
|
cmd->ac_Result = result;
|
|
|
|
}
|
|
|
|
|
2008-11-24 11:06:11 +03:00
|
|
|
STATIC VOID rx_gettitle(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
|
|
|
if(curbw)
|
|
|
|
{
|
|
|
|
strcpy(result,curbw->window->shared->win->Title);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-02-01 16:37:32 +03:00
|
|
|
strcpy(result,"");
|
2008-11-24 11:06:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd->ac_Result = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC VOID rx_version(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
|
|
|
|
{
|
|
|
|
if(cmd->ac_ArgList[2])
|
|
|
|
{
|
|
|
|
if(cmd->ac_ArgList[1])
|
|
|
|
{
|
|
|
|
if((netsurf_version_major > *(ULONG *)cmd->ac_ArgList[0]) || ((netsurf_version_minor >= *(ULONG *)cmd->ac_ArgList[1]) && (netsurf_version_major == *(ULONG *)cmd->ac_ArgList[0])))
|
|
|
|
{
|
|
|
|
strcpy(result,"1");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,"0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(cmd->ac_ArgList[0])
|
|
|
|
{
|
|
|
|
if((netsurf_version_major >= *(ULONG *)cmd->ac_ArgList[0]))
|
|
|
|
{
|
|
|
|
strcpy(result,"1");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,"0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,netsurf_version);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(cmd->ac_ArgList[1])
|
|
|
|
{
|
|
|
|
if((verver > *(ULONG *)cmd->ac_ArgList[0]) || ((verrev >= *(ULONG *)cmd->ac_ArgList[1]) && (verver == *(ULONG *)cmd->ac_ArgList[0])))
|
|
|
|
{
|
|
|
|
strcpy(result,"1");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,"0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(cmd->ac_ArgList[0])
|
|
|
|
{
|
|
|
|
if((verver >= *(ULONG *)cmd->ac_ArgList[0]))
|
|
|
|
{
|
|
|
|
strcpy(result,"1");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,"0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
strcpy(result,verarexx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd->ac_Result = result;
|
|
|
|
}
|