# coding: utf-8 # # Copyright © 2012-2013 Ejwa Software. All rights reserved. # # This file is part of gitinspector. # # gitinspector 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. # # gitinspector 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 gitinspector. If not, see . from __future__ import print_function from outputable import Outputable import terminal import textwrap __filters__ = [] __filtered_files__ = set() def get(): return __filters__ def add(string): __filters__.append(string) def get_filered(): return __filtered_files__ def set_filtered(file_name): string = file_name.strip() if len(string) > 0: for i in __filters__: if string.find(i) != -1: __filtered_files__.add(string) return True return False __filtering_info_text__ = ("The following files were excluded from the statistics due to the" "specified exclusion patterns") class Filtering(Outputable): def output_html(self): if __filtered_files__: filtering_xml = "
" filtering_xml += "

" + __filtering_info_text__ + "."+ "

" for i in __filtered_files__: filtering_xml += "

" + i + "

" filtering_xml += "
" print(filtering_xml) def output_text(self): if __filtered_files__: print("\n" + textwrap.fill(__filtering_info_text__ + ":", width=terminal.get_size()[0])) for i in __filtered_files__: (width, _) = terminal.get_size() print("...%s" % i[-width+3:] if len(i) > width else i) def output_xml(self): if __filtered_files__: message_xml = "\t\t" + __filtering_info_text__ + "\n" filtering_xml = "" for i in __filtered_files__: filtering_xml += "\t\t\t" + i + "\n" print("\t\n" + message_xml + "\t\t\n" + filtering_xml + "\t\t\n\t")