//
// aegis - project change supervisor
// Copyright (C) 2003-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
void
xml_change_cstate(string_ty *project_name, long change_number,
output::pointer op)
{
project_ty *pp;
user_ty::pointer up;
change::pointer cp;
cstate_ty *cstate_data;
trace(("xml_change_cstate()\n{\n"));
//
// locate project data
//
if (!project_name)
{
nstring n = user_ty::create()->default_project();
project_name = str_copy(n.get_ref());
}
else
project_name = str_copy(project_name);
pp = project_alloc(project_name);
str_free(project_name);
pp->bind_existing();
//
// locate user data
//
up = user_ty::create();
//
// locate change data
//
if (!change_number)
change_number = up->default_change(pp);
cp = change_alloc(pp, change_number);
change_bind_existing(cp);
//
// Write out the change state data.
//
cstate_data = cp->cstate_get();
cstate_write_xml(op, cstate_data);
//
// Clean up and go home.
//
change_free(cp);
project_free(pp);
trace(("}\n"));
}