File: copy.c

package info (click to toggle)
gnome-network 1.0.2-5
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,968 kB
  • ctags: 1,007
  • sloc: ansic: 8,129; sh: 6,837; objc: 961; makefile: 251
file content (144 lines) | stat: -rw-r--r-- 4,342 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* copy.c - copy one file to another.

   Copyright (C) 1998 Tom Tromey

   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, 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.  */

#include <config.h>

#include <assert.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>

#include "sync.h"



/* Copy some data from the input file's buffer to the output file.  */
static void
write_chunk (gpointer client_data, gint fd, GdkInputCondition cond)
{
  struct reader *reader;
  struct file *input;
  int ret;

  assert (cond == GDK_INPUT_WRITE);

  reader = (struct reader *) client_data;
  assert (fd == reader->local->fd || fd == reader->remote->fd);

  input = (reader->local->fd == fd) ? reader->remote : reader->local;

  ret = write (fd, &input->buffer[input->slot], input->size - input->slot);
  if (ret == -1)
    {
      char *u;
      struct file *output;

      /* Certain errors are ok.  */
      if (errno == EINTR || errno == EAGAIN)
	return;

      output = (reader->local->fd == fd) ? reader->local : reader->remote;
      if (input == reader->local)
	u = _("Error while writing to remote file");
      else
	u = _("Error while writing to local file");
      display_posix_error (reader->database, reader->local->name,
			   reader->remote->name, u);
      free_reader (reader);

      return;
    }

  input->slot += ret;

  if (input->slot == input->size)
    {
      /* Done writing.  */

      if (update_entry (reader->database->database, reader->local->name,
			reader->remote->name, input->checksum) == -1)
	db_posix_error (_("Error while writing to database file"),
			reader->database->filename);

      display_message (reader->database, reader->local->name,
		       reader->remote->name, "");
      free_reader (reader);
    }
}

/* Copy one file to the other.  We have a separate DIRECTION argument
   so that we can report errors and preserve the information about
   which file is "local". */
void
copy (struct reader *reader, int direction)
{
  struct file *from, *to;

  from = (direction == COPY_FROM_LOCAL) ? reader->local : reader->remote;
  to = (direction == COPY_FROM_LOCAL) ? reader->remote : reader->local;

  display_message (reader->database, reader->local->name,
		   reader->remote->name,
		   (direction == COPY_FROM_LOCAL)
		   ? _("Copying from local to remote")
		   : _("Copying from remote to local"));

  /* FIXME: make backup of TO here.
     Really should read into temp file and then rename at the end.  */

  to->fd = open (to->name, O_WRONLY | O_CREAT | O_TRUNC, from->mode);
  if (to->fd == -1)
    {
      display_posix_error (reader->database, reader->local->name,
			   reader->remote->name,
			   _("Couldn't open file for writing: "));
      free_reader (reader);
      return;
    }

  /* Set this separately because we want open() to block until ready.
     Don't check failure here -- it isn't fatal if this fails.  */
  fcntl (to->fd, F_SETFL, O_NONBLOCK);

  if ((from->flags & FLAG_FULL))
    {
      /* We have the full input file already.  So just start writing
	 immediately.  If we're writing to a local file, this will
	 just grind away without giving time to the UI -- but that
	 doesn't really matter.  */
      if (! (from->flags & FLAG_MAPPED))
	{
	  from->size = from->slot;
	  from->slot = 0;
	}
      to->state = STATE_WRITING;
      to->tag = gdk_input_add (to->fd, GDK_INPUT_WRITE, write_chunk,
			       (gpointer) reader);
    }
  else
    {
      /* FIXME: must open input file for reading, and write results to
	 output.  This requires a bit of synchronization: we don't
	 want the input to overrun the output, so we must disable the
	 input when the output is blocked and the input buffer is too
	 full.  */
      assert (0);
    }
}