//
// aegis - project change supervisor
// Copyright (C) 1991-1999, 2001-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
// .
//
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
static void
develop_end_undo_usage(void)
{
const char *progname;
progname = progname_get();
fprintf(stderr, "usage: %s -Undo_Develop_End [ ... ]\n", progname);
fprintf
(
stderr,
" %s -Undo_Develop_End -List [ ... ]\n",
progname
);
fprintf(stderr, " %s -Undo_Develop_End -Help\n", progname);
quit(1);
}
static void
develop_end_undo_help(void)
{
help("aedeu", develop_end_undo_usage);
}
static void
develop_end_undo_list(void)
{
trace(("develop_end_undo_list()\n{\n"));
arglex();
change_identifier cid;
cid.command_line_parse_rest(develop_end_undo_usage);
list_changes_in_state_mask
(
cid,
(
(1 << cstate_state_awaiting_review)
|
(1 << cstate_state_being_reviewed)
|
(1 << cstate_state_awaiting_integration)
)
);
trace(("}\n"));
}
static void
develop_end_undo_main(void)
{
cstate_ty *cstate_data;
cstate_history_ty *history_data;
int j;
string_ty *project_name;
project_ty *pp;
long change_number;
change::pointer cp;
trace(("develop_end_undo_main()\n{\n"));
arglex();
project_name = 0;
change_number = 0;
string_ty *reason = 0;
while (arglex_token != arglex_token_eoln)
{
switch (arglex_token)
{
default:
generic_argument(develop_end_undo_usage);
continue;
case arglex_token_change:
arglex();
// fall through...
case arglex_token_number:
arglex_parse_change
(
&project_name,
&change_number,
develop_end_undo_usage
);
continue;
case arglex_token_project:
arglex();
// fall through...
case arglex_token_string:
arglex_parse_project(&project_name, develop_end_undo_usage);
continue;
case arglex_token_wait:
case arglex_token_wait_not:
user_ty::lock_wait_argument(develop_end_undo_usage);
break;
case arglex_token_reason:
if (reason)
duplicate_option(develop_end_undo_usage);
switch (arglex())
{
default:
option_needs_string
(
arglex_token_reason,
develop_end_undo_usage
);
// NOTREACHED
case arglex_token_string:
case arglex_token_number:
reason = str_from_c(arglex_value.alv_string);
break;
}
break;
}
arglex();
}
//
// locate project data
//
if (!project_name)
{
nstring n = user_ty::create()->default_project();
project_name = str_copy(n.get_ref());
}
pp = project_alloc(project_name);
str_free(project_name);
pp->bind_existing();
//
// locate user data
//
user_ty::pointer up = user_ty::create();
user_ty::pointer up_admin;
//
// locate change data
//
if (!change_number)
change_number = up->default_change(pp);
cp = change_alloc(pp, change_number);
change_bind_existing(cp);
//
// lock the change for writing
//
pp->pstate_lock_prepare();
change_cstate_lock_prepare(cp);
up->ustate_lock_prepare();
lock_take();
cstate_data = cp->cstate_get();
//
// Project administrators are allowed to undo end the development
// of a branch, no matter who created it.
//
if
(
change_was_a_branch(cp)
&&
nstring(change_developer_name(cp)) != up->name()
&&
project_administrator_query(pp, up->name())
)
{
up_admin = up;
up = user_ty::create(nstring(change_developer_name(cp)));
}
//
// If the change is in the being_reviewed state, and the project
// has been configured to use the awaiting_review state, then nobody
// may use the aedeu command.
//
assert(cstate_data->history->length >= 3);
if
(
cstate_data->history->list[cstate_data->history->length - 1]->what
==
cstate_history_what_review_begin
)
{
assert(cstate_data->state == cstate_state_being_reviewed);
change_fatal(cp, 0, i18n("bad deu state"));
}
//
// It is an error if the change is not in one of the 'being_reviewed'
// or 'awaiting_integration' states.
// It is an error if the current user did not develop the change.
//
if
(
cstate_data->state != cstate_state_awaiting_review
&&
cstate_data->state != cstate_state_being_reviewed
&&
cstate_data->state != cstate_state_awaiting_integration
)
change_fatal(cp, 0, i18n("bad deu state"));
if (nstring(change_developer_name(cp)) != up->name())
change_fatal(cp, 0, i18n("was not developer"));
//
// Change the state.
// Add to the change's history.
//
cstate_data->state = cstate_state_being_developed;
history_data = change_history_new(cp, up);
history_data->what = cstate_history_what_develop_end_undo;
if (up_admin)
{
string_ty *r2 =
str_format
(
"Forced by administrator %s.",
up_admin->name().quote_c().c_str()
);
if (reason)
{
string_ty *r1 = reason;
reason = str_format("%s\n%s", r1->str_text, r2->str_text);
str_free(r1);
str_free(r2);
}
else
reason = r2;
}
history_data->why = reason;
//
// add it back into the user's change list
//
up->own_add(pp, change_number);
//
// go through the files in the change and unlock them
// in the baseline
//
for (j = 0;; ++j)
{
fstate_src_ty *c_src_data;
fstate_src_ty *p_src_data;
c_src_data = change_file_nth(cp, j, view_path_first);
if (!c_src_data)
break;
p_src_data =
project_file_find(pp, c_src_data->file_name, view_path_none);
if (!p_src_data)
{
// this is really a corrupted file
continue;
}
p_src_data->locked_by = 0;
//
// Remove the file if it is about_to_be_created
// by the change we are rescinding.
//
if
(
p_src_data->about_to_be_created_by
||
p_src_data->about_to_be_copied_by
)
{
assert(!p_src_data->about_to_be_created_by ||
p_src_data->about_to_be_created_by==change_number);
assert(!p_src_data->about_to_be_copied_by ||
p_src_data->about_to_be_copied_by==change_number);
if (p_src_data->deleted_by)
{
assert(!p_src_data->about_to_be_copied_by);
p_src_data->about_to_be_created_by = 0;
}
else
project_file_remove(pp, c_src_data->file_name);
}
}
//
// Make the development directory writable again.
//
// This is actually conditional upon project_protect_development_
// directory_get(pp) but the test is inside the change_
// development_directory_chmod_read_write(cp) function, because it
// also makes sure the source files are readable and writable by the
// developer.
//
change_development_directory_chmod_read_write(cp);
//
// write out the data and release the locks
//
change_cstate_write(cp);
pp->pstate_write();
up->ustate_write();
commit();
lock_release();
//
// run the notify command
//
cp->run_develop_end_undo_notify_command();
//
// Update the RSS feed file if necessary.
//
rss_add_item_by_change(pp, cp);
//
// verbose success message
//
change_verbose(cp, 0, i18n("develop end undo complete"));
change_free(cp);
project_free(pp);
trace(("}\n"));
}
void
develop_end_undo(void)
{
static arglex_dispatch_ty dispatch[] =
{
{ arglex_token_help, develop_end_undo_help, 0 },
{ arglex_token_list, develop_end_undo_list, 0 },
};
trace(("develop_end_undo()\n{\n"));
arglex_dispatch(dispatch, SIZEOF(dispatch), develop_end_undo_main);
trace(("}\n"));
}