// // aegis - project change supervisor // Copyright (C) 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 // for assert #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include void list_project_files(change_identifier &cid, string_list_ty *) { trace(("list_project_files()\n{\n")); // // create the columns // col::pointer colp = col::open((string_ty *)0); if (cid.set()) { string_ty *line1 = str_format ( "Project \"%s\" Change %ld", cid.get_pp()->name_get()->str_text, magic_zero_decode(cid.get_cp()->number) ); colp->title(line1->str_text, "List of Project's Files"); str_free(line1); } else { string_ty *line1 = str_format ( "Project \"%s\"", cid.get_pp()->name_get()->str_text ); colp->title(line1->str_text, "List of Project's Files"); str_free(line1); } int left = 0; output::pointer usage_col; output::pointer edit_col; symtab_ty *attr_col_stp = 0; if (!option_terse_get()) { usage_col = colp->create(left, left + USAGE_WIDTH, "Type\n-------"); left += USAGE_WIDTH + 1; attr_col_stp = symtab_alloc(5); for (int j = 0; ; ++j) { fstate_src_ty *src_data = cid.get_pp()->file_nth(j, view_path_simple); if (!src_data) break; if (!src_data->attribute) continue; if (src_data->deleted_by && !option_verbose_get()) continue; if ( cid.set() && change_file_find(cid.get_cp(), src_data, view_path_first) ) continue; for (size_t k = 0; k < src_data->attribute->length; ++k) { attributes_ty *ap = src_data->attribute->list[k]; if (ael_attribute_listable(ap)) { string_ty *lc_name = str_downcase(ap->name); void *p = symtab_query(attr_col_stp, lc_name); if (!p) { string_ty *s = ael_build_header(ap->name); output::pointer op = colp->create(left, left + ATTR_WIDTH, s->str_text); str_free(s); symtab_assign ( attr_col_stp, lc_name, new output::pointer(op) ); left += ATTR_WIDTH + 1; } str_free(lc_name); } } } edit_col = colp->create(left, left + EDIT_WIDTH, "Edit\n-------"); left += EDIT_WIDTH + 1; } output::pointer file_name_col = colp->create(left, 0, "File Name\n-----------"); // // list the project's files // for (int j = 0;; ++j) { trace(("j = %ld\n", long(j))); fstate_src_ty *src_data = cid.get_pp()->file_nth(j, view_path_simple); if (!src_data) break; trace(("src_data = %08lX\n", long(src_data))); if (src_data->deleted_by && !option_verbose_get()) continue; if ( cid.set() && change_file_find(cid.get_cp(), src_data, view_path_first) ) continue; if (option_terse_get()) { if (src_data->deleted_by) continue; } else { usage_col->fputs(file_usage_ename(src_data->usage)); list_format_edit_number(edit_col, src_data); if ( !cid.get_pp()->is_a_trunk() && change_is_a_branch(cid.get_pp()->change_get()) && !change_file_up_to_date(cid.get_pp()->parent_get(), src_data) ) { fstate_src_ty *psrc_data = project_file_find ( cid.get_pp()->parent_get(), src_data->file_name, view_path_extreme ); if (psrc_data && psrc_data->edit) { assert(psrc_data->edit->revision); edit_col->fprintf ( " (%s)", psrc_data->edit->revision->str_text ); } } } assert(src_data->file_name); file_name_col->fputs(src_data->file_name); if (src_data->about_to_be_created_by) { file_name_col->end_of_line(); file_name_col->fprintf ( "About to be created by change %ld.", magic_zero_decode(src_data->about_to_be_created_by) ); } if (src_data->deleted_by) { file_name_col->end_of_line(); file_name_col->fprintf ( "Deleted by change %ld.", magic_zero_decode(src_data->deleted_by) ); } if (src_data->locked_by) { file_name_col->end_of_line(); file_name_col->fprintf ( "Locked by change %ld.", magic_zero_decode(src_data->locked_by) ); } if (src_data->about_to_be_copied_by) { file_name_col->end_of_line(); file_name_col->fprintf ( "About to be copied by change %ld.", magic_zero_decode(src_data->about_to_be_copied_by) ); } if (src_data->move) { switch (src_data->action) { case file_action_create: file_name_col->end_of_line(); file_name_col->fputs("Moved from "); file_name_col->fputs(src_data->move->str_text); break; case file_action_remove: file_name_col->end_of_line(); file_name_col->fputs("Moved to "); file_name_col->fputs(src_data->move->str_text); break; case file_action_modify: case file_action_insulate: case file_action_transparent: assert(0); break; } } if (attr_col_stp && src_data->attribute) { for (size_t k = 0; k < src_data->attribute->length; ++k) { attributes_ty *ap = src_data->attribute->list[k]; assert(ap); assert(ap->name); assert(ap->value); if (ap->name && ap->value) { string_ty *lc_name = str_downcase(ap->name); void *vp = symtab_query(attr_col_stp, lc_name); if (vp) { output::pointer op = *(output::pointer *)vp; assert(op); if (op) op->fputs(ap->value); } str_free(lc_name); } } } colp->eoln(); } // // clean up and go home // if (attr_col_stp) symtab_free(attr_col_stp); trace(("}\n")); }