//
// aegis - project change supervisor
// Copyright (C) 1999, 2003-2008, 2012, 2014 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
// .
//
#include
#include
#include
#include
#include
#include
#include
void
change_run_diff3_command(change::pointer cp, user_ty::pointer up,
string_ty *original, string_ty *most_recent, string_ty *input_file_name,
string_ty *output_filename)
{
sub_context_ty *scp;
pconf_ty *pconf_data;
string_ty *the_command;
string_ty *dd;
//
// Run the diff3_command - or the merge_command.
// All of the substitutions described in aesub(5) are available.
// In addition
//
// ${Original}
// absolute path of original file copied from the baseline
// usually somewhere in /tmp
//
// ${Most_Recent}
// absolute path of original file currently in the baseline
// usually, but not always
//
// ${Input}
// absolute path of current file in the development directory
// usually, but not always
//
// ${Output}
// absolute path of file in which to write the difference listing
// usually in the development diretcory
//
trace
((
"change_run_diff3_command(cp = %p, up = %p, "
"original = \"%s\", most_recent = \"%s\", "
"input_file_name = \"%s\", output_filename = \"%s\")\n{\n",
cp.get(),
up.get(),
original->str_text,
most_recent->str_text,
input_file_name->str_text,
output_filename->str_text
));
pconf_data = change_pconf_get(cp, 1);
dd = cp->development_directory_get(0);
scp = sub_context_new();
sub_var_set_string(scp, "ORiginal", original);
sub_var_set_string(scp, "Most_Recent", most_recent);
sub_var_set_string(scp, "Input", input_file_name);
sub_var_set_string(scp, "Output", output_filename);
the_command = pconf_data->diff3_command;
if (!the_command)
{
sub_context_ty *scp2;
assert(pconf_data->errpos);
scp2 = sub_context_new();
sub_var_set_string(scp2, "File_Name", pconf_data->errpos);
sub_var_set_charstar(scp2, "FieLD_Name", "diff3_command");
change_fatal
(
cp,
scp2,
i18n("$filename: contains no \"$field_name\" field")
);
// NOTREACHED
sub_context_delete(scp2);
}
the_command = substitute(scp, cp, the_command);
sub_context_delete(scp);
change_env_set(cp, 0);
user_ty::become scoped(up);
if (os_exists(output_filename))
os_unlink(output_filename);
os_execute(the_command, OS_EXEC_FLAG_NO_INPUT, dd);
str_free(the_command);
trace(("}\n"));
}
// vim: set ts=8 sw=4 et :