mirror of
https://github.com/ejwa/gitinspector.git
synced 2024-11-16 00:28:25 +01:00
37c4260149
The Outputable class is now the base class of all the classes that want to output formatted text. This is more object oriented and cleaner solution compared to the previous implementation.
67 lines
2 KiB
Python
67 lines
2 KiB
Python
# coding: utf-8
|
|
#
|
|
# Copyright © 2012 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 <http://www.gnu.org/licenses/>.
|
|
|
|
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_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<message>" + __filtering_info_text__ + "</message>\n"
|
|
filtering_xml = ""
|
|
|
|
for i in __filtered_files__:
|
|
filtering_xml += "\t\t\t<file>" + i + "</file>\n"
|
|
|
|
print("\t<filering>\n" + message_xml + "\t\t<files>\n" + filtering_xml + "\t\t</files>\n\t</filtering>")
|