claws-mail/src/recv.c

194 lines
4.1 KiB
C
Raw Normal View History

2001-04-19 14:21:46 +02:00
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999,2000 Hiroyuki Yamamoto
*
* 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.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <glib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "intl.h"
#include "recv.h"
#include "socket.h"
#include "utils.h"
#define BUFFSIZE 8192
2001-04-28 00:47:56 +02:00
static RecvUIFunc recv_ui_func;
static gpointer recv_ui_func_data;
2001-04-27 22:27:24 +02:00
gint recv_write_to_file(SockInfo *sock, const gchar *filename)
2001-04-19 14:21:46 +02:00
{
FILE *fp;
g_return_val_if_fail(filename != NULL, -1);
if ((fp = fopen(filename, "w")) == NULL) {
FILE_OP_ERROR(filename, "fopen");
recv_write(sock, NULL);
return -1;
}
if (change_file_mode_rw(fp, filename) < 0)
FILE_OP_ERROR(filename, "chmod");
if (recv_write(sock, fp) < 0) {
fclose(fp);
unlink(filename);
return -1;
}
if (fclose(fp) == EOF) {
FILE_OP_ERROR(filename, "fclose");
unlink(filename);
return -1;
}
return 0;
}
2001-04-27 22:27:24 +02:00
gint recv_bytes_write_to_file(SockInfo *sock, glong size, const gchar *filename)
2001-04-19 14:21:46 +02:00
{
FILE *fp;
g_return_val_if_fail(filename != NULL, -1);
if ((fp = fopen(filename, "w")) == NULL) {
FILE_OP_ERROR(filename, "fopen");
recv_write(sock, NULL);
return -1;
}
if (change_file_mode_rw(fp, filename) < 0)
FILE_OP_ERROR(filename, "chmod");
if (recv_bytes_write(sock, size, fp) < 0) {
fclose(fp);
unlink(filename);
return -1;
}
if (fclose(fp) == EOF) {
FILE_OP_ERROR(filename, "fclose");
unlink(filename);
return -1;
}
return 0;
}
2001-04-27 22:27:24 +02:00
gint recv_write(SockInfo *sock, FILE *fp)
2001-04-19 14:21:46 +02:00
{
gchar buf[BUFFSIZE];
gint len;
for (;;) {
2001-04-30 23:27:59 +02:00
if (sock_gets(sock, buf, sizeof(buf)) < 0) {
2001-04-19 14:21:46 +02:00
g_warning(_("error occurred while retrieving data.\n"));
return -1;
}
len = strlen(buf);
if (len > 1 && buf[0] == '.' && buf[1] == '\r') break;
2001-04-28 20:04:08 +02:00
if (recv_ui_func)
recv_ui_func(sock, len, recv_ui_func_data);
2001-04-19 14:21:46 +02:00
if (len > 1 && buf[len - 1] == '\n' && buf[len - 2] == '\r') {
buf[len - 2] = '\n';
buf[len - 1] = '\0';
2001-04-28 00:47:56 +02:00
len--;
2001-04-19 14:21:46 +02:00
}
if (buf[0] == '.' && buf[1] == '.')
2001-04-28 00:47:56 +02:00
memmove(buf, buf + 1, len--);
2001-04-19 14:21:46 +02:00
if (!strncmp(buf, ">From ", 6))
2001-04-28 00:47:56 +02:00
memmove(buf, buf + 1, len--);
2001-04-19 14:21:46 +02:00
if (fp && fputs(buf, fp) == EOF) {
perror("fputs");
g_warning(_("Can't write to file.\n"));
fp = NULL;
}
}
if (!fp) return -1;
return 0;
}
2001-04-27 22:27:24 +02:00
gint recv_bytes_write(SockInfo *sock, glong size, FILE *fp)
2001-04-19 14:21:46 +02:00
{
gchar *buf;
glong count = 0;
gchar *prev, *cur;
Xalloca(buf, size, return -1);
do {
2001-04-30 23:27:59 +02:00
gint read_count;
2001-04-19 14:21:46 +02:00
2001-04-30 23:27:59 +02:00
read_count = sock_read(sock, buf + count, size - count);
2001-05-02 20:51:12 +02:00
if (read_count < 0)
2001-04-19 14:21:46 +02:00
return -1;
count += read_count;
} while (count < size);
2001-04-30 23:27:59 +02:00
/* +------------------+----------------+--------------------------+ *
* ^buf ^prev ^cur buf+size-1^ */
2001-04-19 14:21:46 +02:00
prev = buf;
2001-04-30 23:27:59 +02:00
while ((cur = memchr(prev, '\r', size - (prev - buf))) != NULL) {
if (cur == buf + size - 1) break;
if (fwrite(prev, sizeof(gchar), cur - prev, fp) == EOF ||
fwrite("\n", sizeof(gchar), 1, fp) == EOF) {
perror("fwrite");
g_warning(_("Can't write to file.\n"));
return -1;
2001-04-19 14:21:46 +02:00
}
2001-04-30 23:27:59 +02:00
if (*(cur + 1) == '\n')
prev = cur + 2;
else
prev = cur + 1;
if (prev - buf >= size) break;
2001-04-19 14:21:46 +02:00
}
if (prev - buf < size && fwrite(buf, sizeof(gchar),
size - (prev - buf), fp) == EOF) {
perror("fwrite");
g_warning(_("Can't write to file.\n"));
return -1;
}
return 0;
}
2001-04-28 00:47:56 +02:00
void recv_set_ui_func(RecvUIFunc func, gpointer data)
{
recv_ui_func = func;
recv_ui_func_data = data;
}