mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
443 lines
11 KiB
C
443 lines
11 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* 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 Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
/* mimefilt.c --- test harness for libmime.a
|
|
Created: Jamie Zawinski <jwz@netscape.com>, 15-May-96.
|
|
|
|
This program reads a message from stdin and writes the output of the MIME
|
|
parser on stdout.
|
|
|
|
Parameters can be passed to the parser through the usual URL mechanism:
|
|
|
|
mimefilt BASE-URL?headers=all&rot13 < in > out
|
|
|
|
Some parameters can't be affected that way, so some additional switches
|
|
may be passed on the command line after the URL:
|
|
|
|
-fancy whether fancy headers should be generated (default)
|
|
|
|
-no-fancy opposite; this uses the headers used in the cases of
|
|
FO_SAVE_AS_TEXT or FO_QUOTE_MESSAGE
|
|
|
|
-html whether we should convert to HTML (like FO_PRESENT);
|
|
this is the default if no ?part= is specified.
|
|
|
|
-raw don't convert to HTML (FO_SAVE_AS);
|
|
this is the default if a ?part= is specified.
|
|
|
|
-outline at the end, print a debugging overview of the MIME structure
|
|
|
|
Before any output comes a blurb listing the content-type, charset, and
|
|
various other info that would have been put in the generated URL struct.
|
|
It's printed to the beginning of the output because otherwise this out-
|
|
of-band data would have been lost. (So the output of this program is,
|
|
in fact, a raw HTTP response.)
|
|
*/
|
|
|
|
#include "rosetta.h"
|
|
#include "mimemsg.h"
|
|
#if 0
|
|
#include "prglobal.h"
|
|
#endif
|
|
|
|
#ifdef MOZ_SECURITY
|
|
#include "key.h"
|
|
#include "cert.h"
|
|
#include "secrng.h"
|
|
#include "secmod.h"
|
|
#include "pk11func.h"
|
|
#endif /* MOZ_SECURITY */
|
|
|
|
|
|
#ifndef XP_UNIX
|
|
ERROR! This is a unix-only file for the "mimefilt" standalone program.
|
|
This does not go into libmime.a.
|
|
#endif
|
|
|
|
|
|
static char *
|
|
test_file_type (const char *filename, void *stream_closure)
|
|
{
|
|
const char *suf = XP_STRRCHR(filename, '.');
|
|
if (!suf)
|
|
return 0;
|
|
suf++;
|
|
|
|
if (!XP_STRCASECMP(suf, "txt") ||
|
|
!XP_STRCASECMP(suf, "text"))
|
|
return XP_STRDUP("text/plain");
|
|
else if (!XP_STRCASECMP(suf, "htm") ||
|
|
!XP_STRCASECMP(suf, "html"))
|
|
return XP_STRDUP("text/html");
|
|
else if (!XP_STRCASECMP(suf, "gif"))
|
|
return XP_STRDUP("image/gif");
|
|
else if (!XP_STRCASECMP(suf, "jpg") ||
|
|
!XP_STRCASECMP(suf, "jpeg"))
|
|
return XP_STRDUP("image/jpeg");
|
|
else if (!XP_STRCASECMP(suf, "pjpg") ||
|
|
!XP_STRCASECMP(suf, "pjpeg"))
|
|
return XP_STRDUP("image/pjpeg");
|
|
else if (!XP_STRCASECMP(suf, "xbm"))
|
|
return XP_STRDUP("image/x-xbitmap");
|
|
else if (!XP_STRCASECMP(suf, "xpm"))
|
|
return XP_STRDUP("image/x-xpixmap");
|
|
else if (!XP_STRCASECMP(suf, "xwd"))
|
|
return XP_STRDUP("image/x-xwindowdump");
|
|
else if (!XP_STRCASECMP(suf, "bmp"))
|
|
return XP_STRDUP("image/x-MS-bmp");
|
|
else if (!XP_STRCASECMP(suf, "au"))
|
|
return XP_STRDUP("audio/basic");
|
|
else if (!XP_STRCASECMP(suf, "aif") ||
|
|
!XP_STRCASECMP(suf, "aiff") ||
|
|
!XP_STRCASECMP(suf, "aifc"))
|
|
return XP_STRDUP("audio/x-aiff");
|
|
else if (!XP_STRCASECMP(suf, "ps"))
|
|
return XP_STRDUP("application/postscript");
|
|
|
|
HG43290
|
|
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
static char *
|
|
test_type_icon(const char *type, void *stream_closure)
|
|
{
|
|
if (!XP_STRNCASECMP(type, "text/", 5))
|
|
return XP_STRDUP("internal-gopher-text");
|
|
else if (!XP_STRNCASECMP(type, "image/", 6))
|
|
return XP_STRDUP("internal-gopher-image");
|
|
else if (!XP_STRNCASECMP(type, "audio/", 6))
|
|
return XP_STRDUP("internal-gopher-sound");
|
|
else if (!XP_STRNCASECMP(type, "video/", 6))
|
|
return XP_STRDUP("internal-gopher-movie");
|
|
else if (!XP_STRNCASECMP(type, "application/", 12))
|
|
return XP_STRDUP("internal-gopher-binary");
|
|
else
|
|
return XP_STRDUP("internal-gopher-unknown");
|
|
}
|
|
|
|
static int
|
|
test_output_fn(char *buf, int32 size, void *closure)
|
|
{
|
|
FILE *out = (FILE *) closure;
|
|
if (out)
|
|
return fwrite(buf, sizeof(*buf), size, out);
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
test_output_init_fn (const char *type,
|
|
const char *charset,
|
|
const char *name,
|
|
const char *x_mac_type,
|
|
const char *x_mac_creator,
|
|
void *stream_closure)
|
|
{
|
|
FILE *out = (FILE *) stream_closure;
|
|
fprintf(out, "CONTENT-TYPE: %s", type);
|
|
if (charset)
|
|
fprintf(out, "; charset=\"%s\"", charset);
|
|
if (name)
|
|
fprintf(out, "; name=\"%s\"", name);
|
|
if (x_mac_type || x_mac_creator)
|
|
fprintf(out, "; x-mac-type=\"%s\"; x-mac-creator=\"%s\"",
|
|
x_mac_type ? x_mac_type : "",
|
|
x_mac_creator ? x_mac_type : "");
|
|
fprintf(out, CRLF CRLF);
|
|
return 0;
|
|
}
|
|
|
|
|
|
static int
|
|
test_set_html_state_fn (void *stream_closure,
|
|
XP_Bool layer_encapsulate_p,
|
|
XP_Bool start_p,
|
|
XP_Bool abort_p)
|
|
{
|
|
char random_close_tags[] =
|
|
"</TABLE></TABLE></TABLE></TABLE></TABLE></TABLE>"
|
|
"</DL></DL></DL></DL></DL></DL></DL></DL></DL></DL>"
|
|
"</DL></DL></DL></DL></DL></DL></DL></DL></DL></DL>"
|
|
"</B></B></B></B></B></B></B></B></B></B></B></B>"
|
|
"</PRE></PRE></PRE></PRE></PRE></PRE></PRE></PRE>"
|
|
"<BASEFONT SIZE=3></SCRIPT>";
|
|
return test_output_fn(random_close_tags, XP_STRLEN(random_close_tags),
|
|
stream_closure);
|
|
}
|
|
|
|
static void *
|
|
test_image_begin(const char *image_url, const char *content_type,
|
|
void *stream_closure)
|
|
{
|
|
return ((void *) XP_STRDUP(image_url));
|
|
}
|
|
|
|
static void
|
|
test_image_end(void *image_closure, int status)
|
|
{
|
|
char *url = (char *) image_closure;
|
|
if (url) XP_FREE(url);
|
|
}
|
|
|
|
static char *
|
|
test_image_make_image_html(void *image_data)
|
|
{
|
|
char *url = (char *) image_data;
|
|
#if 0
|
|
const char *prefix = "<P><CENTER><IMG SRC=\"";
|
|
const char *suffix = "\"></CENTER><P>";
|
|
#else
|
|
const char *prefix = ("<P><CENTER><TABLE BORDER=2 CELLPADDING=20"
|
|
" BGCOLOR=WHITE>"
|
|
"<TR><TD ALIGN=CENTER>"
|
|
"an inlined image would have gone here for<BR>");
|
|
const char *suffix = "</TD></TR></TABLE></CENTER><P>";
|
|
#endif
|
|
char *buf;
|
|
buf = (char *) XP_ALLOC (XP_STRLEN (prefix) + XP_STRLEN (suffix) +
|
|
XP_STRLEN (url) + 20);
|
|
if (!buf) return 0;
|
|
*buf = 0;
|
|
XP_STRCAT (buf, prefix);
|
|
XP_STRCAT (buf, url);
|
|
XP_STRCAT (buf, suffix);
|
|
return buf;
|
|
}
|
|
|
|
static int test_image_write_buffer(char *buf, int32 size, void *image_closure)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#ifdef MOZ_SECURITY
|
|
static char *
|
|
test_passwd_prompt (PK11SlotInfo *slot, void *wincx)
|
|
{
|
|
char buf[2048], *s;
|
|
fprintf(stdout, "#### Password required: ");
|
|
s = fgets(buf, sizeof(buf)-1, stdin);
|
|
if (!s) return s;
|
|
if (s[strlen(s)-1] == '\r' ||
|
|
s[strlen(s)-1] == '\n')
|
|
s[strlen(s)-1] = '\0';
|
|
return s;
|
|
}
|
|
#endif /* MOZ_SECURITY */
|
|
|
|
|
|
int
|
|
test(FILE *in, FILE *out,
|
|
const char *url,
|
|
XP_Bool fancy_headers_p,
|
|
XP_Bool html_p,
|
|
XP_Bool outline_p,
|
|
XP_Bool decrypt_p,
|
|
XP_Bool variable_width_plaintext_p)
|
|
{
|
|
int status = 0;
|
|
MimeObject *obj = 0;
|
|
MimeDisplayOptions *opt = XP_NEW(MimeDisplayOptions);
|
|
XP_MEMSET(opt, 0, sizeof(*opt));
|
|
|
|
if (decrypt_p) html_p = FALSE;
|
|
|
|
opt->fancy_headers_p = fancy_headers_p;
|
|
opt->headers = MimeHeadersSome;
|
|
opt->no_inline_p = FALSE;
|
|
opt->rot13_p = FALSE;
|
|
|
|
status = mime_parse_url_options(url, opt);
|
|
if (status < 0)
|
|
{
|
|
XP_FREE(opt);
|
|
return MK_OUT_OF_MEMORY;
|
|
}
|
|
|
|
opt->url = url;
|
|
opt->write_html_p = html_p;
|
|
opt->decrypt_p = decrypt_p;
|
|
opt->output_init_fn = test_output_init_fn;
|
|
opt->output_fn = test_output_fn;
|
|
opt->set_html_state_fn = test_set_html_state_fn;
|
|
opt->charset_conversion_fn= 0;
|
|
opt->rfc1522_conversion_fn= 0;
|
|
opt->reformat_date_fn = 0;
|
|
opt->file_type_fn = test_file_type;
|
|
opt->type_description_fn = 0;
|
|
opt->type_icon_name_fn = test_type_icon;
|
|
opt->stream_closure = out;
|
|
|
|
opt->image_begin = test_image_begin;
|
|
opt->image_end = test_image_end;
|
|
opt->make_image_html = test_image_make_image_html;
|
|
opt->image_write_buffer = test_image_write_buffer;
|
|
|
|
opt->variable_width_plaintext_p = variable_width_plaintext_p;
|
|
|
|
obj = mime_new ((MimeObjectClass *)&mimeMessageClass,
|
|
(MimeHeaders *) NULL,
|
|
MESSAGE_RFC822);
|
|
if (!obj)
|
|
{
|
|
XP_FREE(opt);
|
|
return MK_OUT_OF_MEMORY;
|
|
}
|
|
obj->options = opt;
|
|
|
|
status = obj->class->initialize(obj);
|
|
if (status >= 0)
|
|
status = obj->class->parse_begin(obj);
|
|
if (status < 0)
|
|
{
|
|
XP_FREE(opt);
|
|
XP_FREE(obj);
|
|
return MK_OUT_OF_MEMORY;
|
|
}
|
|
|
|
while (1)
|
|
{
|
|
char buf[255];
|
|
int size = fread(buf, sizeof(*buf), sizeof(buf), stdin);
|
|
if (size <= 0) break;
|
|
status = obj->class->parse_buffer(buf, size, obj);
|
|
if (status < 0)
|
|
{
|
|
mime_free(obj);
|
|
XP_FREE(opt);
|
|
return status;
|
|
}
|
|
}
|
|
|
|
status = obj->class->parse_eof(obj, FALSE);
|
|
if (status >= 0)
|
|
status = obj->class->parse_end(obj, FALSE);
|
|
if (status < 0)
|
|
{
|
|
mime_free(obj);
|
|
XP_FREE(opt);
|
|
return status;
|
|
}
|
|
|
|
if (outline_p)
|
|
{
|
|
fprintf(out, "\n\n"
|
|
"###############################################################\n");
|
|
obj->class->debug_print(obj, stderr, 0);
|
|
fprintf(out,
|
|
"###############################################################\n");
|
|
}
|
|
|
|
mime_free (obj);
|
|
XP_FREE(opt);
|
|
return 0;
|
|
}
|
|
|
|
|
|
static char *
|
|
test_cdb_name_cb (void *arg, int vers)
|
|
{
|
|
static char f[1024];
|
|
HG09845
|
|
return f;
|
|
}
|
|
|
|
static char *
|
|
test_kdb_name_cb (void *arg, int vers)
|
|
{
|
|
static char f[1024];
|
|
if (vers <= 2)
|
|
sprintf(f, "%s/%s/key.db", getenv("HOME"),MOZ_USER_DIR);
|
|
else
|
|
sprintf(f, "%s/%s/key%d.db", getenv("HOME"), MOZ_USER_DIR, vers);
|
|
return f;
|
|
}
|
|
|
|
extern void SEC_Init(void);
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
int32 i = 1;
|
|
char *url = "";
|
|
XP_Bool fancy_p = TRUE;
|
|
XP_Bool html_p = TRUE;
|
|
XP_Bool outline_p = FALSE;
|
|
XP_Bool decrypt_p = FALSE;
|
|
char filename[1000];
|
|
|
|
#ifdef MOZ_SECURITY
|
|
HG09846
|
|
#endif /* MOZ_SECURITY */
|
|
|
|
if (i < argc)
|
|
{
|
|
if (argv[i][0] == '-')
|
|
url = XP_STRDUP("");
|
|
else
|
|
url = argv[i++];
|
|
}
|
|
|
|
if (url &&
|
|
(XP_STRSTR(url, "?part=") ||
|
|
XP_STRSTR(url, "&part=")))
|
|
html_p = FALSE;
|
|
|
|
while (i < argc)
|
|
{
|
|
if (!XP_STRCMP(argv[i], "-fancy"))
|
|
fancy_p = TRUE;
|
|
else if (!XP_STRCMP(argv[i], "-no-fancy"))
|
|
fancy_p = FALSE;
|
|
else if (!XP_STRCMP(argv[i], "-html"))
|
|
html_p = TRUE;
|
|
else if (!XP_STRCMP(argv[i], "-raw"))
|
|
html_p = FALSE;
|
|
else if (!XP_STRCMP(argv[i], "-outline"))
|
|
outline_p = TRUE;
|
|
HG09847
|
|
else
|
|
{
|
|
fprintf(stderr,
|
|
HG09848 ,
|
|
" < message/rfc822 > output\n",
|
|
(XP_STRRCHR(argv[0], '/') ?
|
|
XP_STRRCHR(argv[0], '/') + 1 :
|
|
argv[0]));
|
|
i = 1;
|
|
goto FAIL;
|
|
}
|
|
i++;
|
|
}
|
|
|
|
i = test(stdin, stdout, url, fancy_p, html_p, outline_p, decrypt_p, TRUE);
|
|
fprintf(stdout, "\n");
|
|
fflush(stdout);
|
|
|
|
FAIL:
|
|
|
|
HG09849
|
|
|
|
exit(i);
|
|
}
|