//
// 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_fstate(struct string_ty *project_name, long change_number,
output::pointer op)
{
project_ty *pp;
user_ty::pointer up;
change::pointer cp;
size_t j;
trace(("xml_change_fstate()\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);
//
// We don't actually use chanfe_fstate_get() because very soon it
// is going to be broken up into one-file-per-file and this will no
// longer exist. So we synthesize it.
//
op->fputs("\n\n");
for (j = 0; ; ++j)
{
fstate_src_ty *src;
src = change_file_nth(cp, j, view_path_first);
if (!src)
break;
fstate_src_write_xml(op, "fstate_src", src);
}
op->fputs("\n\n");
change_free(cp);
project_free(pp);
trace(("}\n"));
}