/*
* tclcompress.c -- part of compress.mod
* contains all tcl functions
*
* Written by Fabian Knittel <fknittel@gmx.de>
*
* $Id: tclcompress.c,v 1.13 2006-03-28 02:35:50 wcc Exp $
*/
/*
* Copyright (C) 2000 - 2006 Eggheads Development Team
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#define NEXT_ARG { curr_arg++; argc--; }
static int tcl_compress_file STDVAR
{
int mode_num = compress_level, result, curr_arg = 1;
char *fn_src = NULL, *fn_target = NULL;
BADARGS(2, 5, " ?options...? src-file ?target-file?");
while ((argc > 1) && ((argv[curr_arg])[0] == '-')) {
if (!strcmp(argv[curr_arg], "-level")) {
argc--;
if (argc <= 1) {
Tcl_AppendResult(irp, "option `-level' needs parameter", NULL);
return TCL_ERROR;
}
curr_arg++;
mode_num = atoi(argv[curr_arg]);
} else {
Tcl_AppendResult(irp, "unknown option `", argv[curr_arg], "'", NULL);
return TCL_ERROR;
}
NEXT_ARG;
}
if (argc <= 1) {
Tcl_AppendResult(irp, "expecting src-filename as parameter", NULL);
return TCL_ERROR;
}
fn_src = argv[curr_arg];
NEXT_ARG;
if (argc > 1) {
fn_target = argv[curr_arg];
NEXT_ARG;
}
if (argc > 1) {
Tcl_AppendResult(irp, "trailing, unexpected parameter to command", NULL);
return TCL_ERROR;
}
if (fn_target)
result = compress_to_file(fn_src, fn_target, mode_num);
else
result = compress_file(fn_src, mode_num);
if (result)
Tcl_AppendResult(irp, "1", NULL);
else
Tcl_AppendResult(irp, "0", NULL);
return TCL_OK;
}
static int tcl_uncompress_file STDVAR
{
int result;
BADARGS(2, 3, " src-file ?target-file?");
if (argc == 2)
result = uncompress_file(argv[1]);
else
result = uncompress_to_file(argv[1], argv[2]);
if (result)
Tcl_AppendResult(irp, "1", NULL);
else
Tcl_AppendResult(irp, "0", NULL);
return TCL_OK;
}
static int tcl_iscompressed STDVAR
{
int result;
BADARGS(2, 2, " compressed-file");
result = is_compressedfile(argv[1]);
if (result == COMPF_UNCOMPRESSED)
Tcl_AppendResult(irp, "0", NULL); /* Uncompressed. */
else if (result == COMPF_COMPRESSED)
Tcl_AppendResult(irp, "1", NULL); /* Compressed. */
else
Tcl_AppendResult(irp, "2", NULL); /* Failed to detect. */
return TCL_OK;
}
static tcl_cmds my_tcl_cmds[] = {
{"compressfile", tcl_compress_file},
{"uncompressfile", tcl_uncompress_file},
{"iscompressed", tcl_iscompressed},
{NULL, NULL}
};
syntax highlighted by Code2HTML, v. 0.9.1