/* * aegis - project change supervisor * Copyright (C) 1999-2001 Peter Miller; * All rights reserved. * * 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 2 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, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. * * MANIFEST: functions to manipulate gets */ #include #include #include /* for assert */ #include string_ty * change_development_directory_get(cp, resolve) change_ty *cp; int resolve; { string_ty *result; trace(("change_development_directory_get(cp = %8.8lX)\n{\n", cp)); assert(cp->reference_count >= 1); if (!resolve) { if (!cp->development_directory_unresolved) { result = change_top_path_get(cp, 0); if (change_was_a_branch(cp)) result = str_format("%S/baseline", result); else result = str_copy(result); cp->development_directory_unresolved = result; } result = cp->development_directory_unresolved; } else { if (!cp->development_directory_resolved) { result = change_top_path_get(cp, 1); if (change_was_a_branch(cp)) result = str_format("%S/baseline", result); else result = str_copy(result); cp->development_directory_resolved = result; } result = cp->development_directory_resolved; } trace(("result = \"%s\"\n", result->str_text)); trace(("}\n")); return result; }