//
// aegis - project change supervisor
// Copyright (C) 2004-2006, 2008 Peter Miller
//
// 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 3 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, see
// .
//
//
// Update-existing
// /
// /////
//
//
//
//
// This is just like Updated and takes the same additional data, but is
// used only if a Entry, Modified, or Unchanged request has been sent
// for the file in question.
//
// This response, or Merged, indicates that the server has determined
// that it is OK to overwrite the previous contents of the file specified
// by pathname. Provided that the client has correctly sent Modified
// or Is-modified requests for a modified file, and the file was not
// modified while CVS was running, the server can ensure that a user's
// modifications are not lost.
//
//
// The output looks something like this...
//
// S: M U supermunger/mungeall.c
// S: Update-existing supermunger/
// S: /u/cvsroot/supermunger/mungeall.c
// S: /mungeall.c/1.1///
// S: u=rw,g=r,o=r
// S: 26
// S: int mein () { abort (); }
//
#include
#include
#include
#include
#include
response_update_existing::~response_update_existing()
{
str_free(client_side);
client_side = 0;
str_free(server_side);
server_side = 0;
str_free(version);
version = 0;
}
response_update_existing::response_update_existing(string_ty *arg1,
string_ty *arg2, input &arg3, int arg4, string_ty *arg5) :
client_side(str_copy(arg1)),
server_side(str_copy(arg2)),
source(arg3),
mode(arg4),
version(str_copy(arg5))
{
}
void
response_update_existing::write(output::pointer op)
{
//
// The output looks something like this...
//
// S: M U supermunger/mungeall.c
// S: Update-existing supermunger/
// S: /u/cvsroot/supermunger/mungeall.c
// S: /mungeall.c/1.1///
// S: u=rw,g=r,o=r
// S: 26
// S: int main () { abort (); }
//
string_ty *short_dir_name = os_dirname_relative(client_side);
string_ty *short_file_name = os_entryname_relative(client_side);
op->fprintf("M U %s\n", short_file_name->str_text);
op->fprintf("Update-existing %s/\n", short_dir_name->str_text);
op->fprintf("/aegis/%s\n", server_side->str_text);
op->fprintf
(
"/%s/%s///\n",
short_file_name->str_text,
version->str_text
);
output_mode_string(op, mode);
os_become_orig();
long length = source->length();
if (length > 0)
{
//
// There is the ability to compress the file contents, but the
// client has to ask for it. Slightly difficult: we have to
// send the *compressed* file size first, which isn't easy using
// a naive usage of output_gzip(). Just say no.
//
op->fprintf("%ld\n", length);
op << source;
}
else
{
op->fputs("0\n");
}
os_become_undo();
str_free(short_dir_name);
str_free(short_file_name);
}
response_code_ty
response_update_existing::code_get()
const
{
return response_code_Update_existing;
}
bool
response_update_existing::flushable()
const
{
return true;
}