Commit 1918e4dd 1918e4dd1222234ac4bcfc5ee1e4d1f1d53a674d by Alain Magloire

url_mail.c url_mail.h url_mdir.c url_mdir.h url_mmdf.c

 	url_mmdf.h url_unix.c url_unix.h
 	url_mailto.c url_mailto.h

draft support for maildir, mmdf, unix.
1 parent d8d1ab2f
......@@ -15,7 +15,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <url_mailto.h>
#include <url_mail.h>
struct url_type _url_mailto_type =
{
......
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2, 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <url_mdir.h>
#include <stdlib.h>
#include <string.h>
struct url_type _url_maildir_type =
{
"maildir://", 10,
"maildir://<full_directory_name>",
(int)&_url_maildir_type, /* uniq id */
url_maildir_init, url_maildir_destroy
};
void
url_maildir_destroy (url_t *purl)
{
if (purl && *purl)
{
url_t url = *purl;
if (url->scheme)
free (url->scheme);
if (url->path)
free (url->path);
free (url);
url = NULL;
}
}
/*
MAILDIR URL
maildir://path
*/
int
url_maildir_init (url_t *purl, const char *name)
{
url_t url;
int len;
struct url_type *utype = &_url_maildir_type;
/* reject the obvious */
if (name == NULL || strncmp (utype->scheme, name, utype->len) != 0
|| (len = strlen (name)) < (utype->len + 1) /* (scheme)+1(path)*/)
{
return -1;
}
/* do I need to decode url encoding '% hex hex' ? */
url = calloc(1, sizeof (*url));
if (url == NULL)
{
return -1;
}
/* TYPE */
url->utype = utype;
/* SCHEME */
/* strdup ("maildir://") the hard way */
url->scheme = malloc (utype->len + 1);
if (url->scheme == NULL)
{
utype->_destroy (&url);
return -1;
}
memcpy (url->scheme, utype->scheme, utype->len + 1 /* including the NULL */);
/* PATH */
name += utype->len; /* pass the scheme */
len -= utype->len; /* decremente the len */
url->path = malloc (len + 1);
if (url->path == NULL)
{
utype->_destroy (&url);
return -1;
}
memcpy (url->path, name, len + 1 /* including the NULL*/);
*purl = url;
return 0;
}
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2, 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef _URL_MDIR_H
#define _URL_MDIR_H 1
#include <url.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __P
# ifdef __STDC__
# define __P(args) args
# else
# define __P(args) ()
# endif
#endif /*!__P */
/* Maildir */
extern int url_maildir_init __P ((url_t *, const char *name));
extern void url_maildir_destroy __P ((url_t *));
extern struct url_type _url_maildir_type;
#ifndef INLINE
# ifdef __GNUC__
# define INLINE __inline__
# else
# define INLINE
# endif
#endif
#ifdef MU_URL_MACROS
#endif /* MU_URL_MACROS */
#ifdef __cplusplus
}
#endif
#endif /* URL_MDIR_H */
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2, 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <url_mmdf.h>
#include <stdlib.h>
#include <string.h>
struct url_type _url_mmdf_type =
{
"mmdf://", 7,
"mmdf://<full_path_name>",
(int)&_url_mmdf_type, /* uniq id */
url_mmdf_init, url_mmdf_destroy
};
void
url_mmdf_destroy (url_t *purl)
{
if (purl && *purl)
{
url_t url = *purl;
if (url->scheme)
free (url->scheme);
if (url->path)
free (url->path);
free (url);
url = NULL;
}
}
/*
MMDF URL
mmdf://path
*/
int
url_mmdf_init (url_t *purl, const char *name)
{
url_t url;
int len;
struct url_type *utype = &_url_mmdf_type;
/* reject the obvious */
if (name == NULL || strncmp (utype->scheme, name,
utype->len) != 0
|| (len = strlen (name)) < 8 /* 7(scheme)+1(path)*/)
{
return -1;
}
/* do I need to decode url encoding '% hex hex' ? */
url = calloc(1, sizeof (*url));
if (url == NULL)
{
return -1;
}
/* TYPE */
url->utype = utype;
/* SCHEME */
/* strdup ("mmdf://") the hard way */
url->scheme = malloc (utype->len + 1);
if (url->scheme == NULL)
{
utype->_destroy (&url);
return -1;
}
memcpy (url->scheme, utype->scheme, utype->len + 1 /* including the NULL */);
/* PATH */
name += utype->len; /* pass the scheme */
len -= utype->len; /* decremente the len */
url->path = malloc (len + 1);
if (url->path == NULL)
{
utype->_destroy (&url);
return -1;
}
memcpy (url->path, name, len + 1 /* including the NULL */);
*purl = url;
return 0;
}
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2, 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef _URL_MMDF_H
#define _URL_MMDF_H 1
#include <url.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __P
# ifdef __STDC__
# define __P(args) args
# else
# define __P(args) ()
# endif
#endif /*!__P */
/* MMDF */
extern int url_mmdf_init __P ((url_t *, const char *name));
extern void url_mmdf_destroy __P ((url_t *));
extern struct url_type _url_mmdf_type;
#ifndef INLINE
# ifdef __GNUC__
# define INLINE __inline__
# else
# define INLINE
# endif
#endif
#ifdef MU_URL_MACROS
#endif /* MU_URL_MACROS */
#ifdef __cplusplus
}
#endif
#endif /* URL_MMDF_H */
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2, 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <url_unix.h>
#include <stdlib.h>
#include <string.h>
struct url_type _url_unix_type =
{
"unix://", 7,
"unix://<full_path_name_of_unix_mbox>",
(int)&_url_unix_type, /* uniq id */
url_unix_init, url_unix_destroy
};
void
url_unix_destroy (url_t *purl)
{
if (purl && *purl)
{
url_t url = *purl;
if (url->scheme)
free (url->scheme);
if (url->path)
free (url->path);
free (url);
url = NULL;
}
}
/*
UNIX Mbox
unix://path
*/
int
url_unix_init (url_t *purl, const char *name)
{
url_t url;
int len;
struct url_type *utype = &_url_unix_type;
/* reject the obvious */
if (name == NULL || strncmp (utype->scheme, name, utype->len) != 0
|| (len = strlen (name)) < utype->len + 1 /* 7(scheme)+1(path)*/)
{
return -1;
}
/* do I need to decode url encoding '% hex hex' ? */
url = calloc(1, sizeof (*url));
if (url == NULL)
{
return -1;
}
/* TYPE */
url->utype = utype;
/* SCHEME */
/* strdup ("unix://") the hard way */
url->scheme = malloc (utype->len + 1);
if (url->scheme == NULL)
{
utype->_destroy (&url);
return -1;
}
memcpy (url->scheme, utype->scheme, utype->len + 1 /* including the NULL */);
/* PATH */
name += utype->len; /* pass the scheme */
len -= utype->len; /* decremente the len */
url->path = malloc (len + 1);
if (url->path == NULL)
{
utype->_destroy (&url);
return -1;
}
memcpy (url->path, name, len + 1 /* including the NULL*/ );
*purl = url;
return 0;
}
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2, 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef _URL_UNIX_H
#define _URL_UNIX_H 1
#include <url.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __P
# ifdef __STDC__
# define __P(args) args
# else
# define __P(args) ()
# endif
#endif /*!__P */
/* UNIX MBOX */
extern int url_unix_init __P ((url_t *, const char *name));
extern void url_unix_destroy __P ((url_t *));
extern struct url_type _url_unix_type;
#ifndef INLINE
# ifdef __GNUC__
# define INLINE __inline__
# else
# define INLINE
# endif
#endif
#ifdef MU_URL_MACROS
#endif /* MU_URL_MACROS */
#ifdef __cplusplus
}
#endif
#endif /* URL_UNIX_H */