Exemplo n.º 1
0
	def create(self, data, path):
		ReportCreator.create(self, data, path)
		self.title = self.data.projectname

		# copy static files. Looks in the binary directory, ../share/gitstats and /usr/share/gitstats
		binarypath = os.path.dirname(os.path.abspath(__file__))
		secondarypath = os.path.join(binarypath, '..', 'share', 'gitstats')
		basedirs = [binarypath, secondarypath, '/usr/share/gitstats']
		for file in ('gitstats.css', 'sortable.js', 'arrow-up.gif', 'arrow-down.gif', 'arrow-none.gif'):
			for base in basedirs:
				src = base + '/' + file
				if os.path.exists(src):
					shutil.copyfile(src, self.path + '/' + file)
					break
			else:
				print 'Warning: "%s" not found, so not copied (searched: %s)' % (file, basedirs)

		self.createIndex()

		self.createActivityReport()
		
		self.createAuthorsReport()

		self.createFilesReport()

		self.createLinesReport()

		self.createTagsReport()

		# TODO: Choose the correct graph creator

		graph_creator = GnuplotGraphCreator(path, self.conf)
		graph_creator.createAll()
Exemplo n.º 2
0
def main(argv):
    """"Main application.

	Generates a list of random instructions.

	With this sample instructiones creates a report that shows:

		Amount in USD settled incoming everyday
		Amount in USD settled outgoing everyday

		Ranking of entities based on incoming and outgoing amount.

	Positional arguments:

		start_date				Earliest possible instruction date
								Format: %Y-%m-%d

		end_date				Latest possible instruction date
								Format: %Y-%m-%d

	Optional arguments:

		number_of_instructions	if argument is provided:
									instructions to be generated
								otherwise (no value is provided): 
									10 instructions will be generated
	"""

    #################### (0) Arguments management #####################

    try:
        opts, args = getopt.getopt(argv, "h", ["help"])
    except getopt.GetoptError:
        usage()
        sys.exit(2)

    for opt, arg in opts:
        if opt in ("-h", "--help"):
            usage()
            sys.exit()

    if len(argv) < 2:
        usage()
        sys.exit(2)

    try:
        start_date, end_date = datetime.datetime.strptime(
            argv[0],
            '%Y-%m-%d'), datetime.datetime.strptime(argv[1], '%Y-%m-%d')
    except Exception as exception:
        print(exception)

    if start_date > end_date:
        tmp_date = start_date
        start_date = end_date
        end_date = tmp_date

    if len(argv) >= 3:
        nInstructions = int(argv[2])
    else:
        nInstructions = 5

    #################### (1) Generate random instructions #####################

    instructions = InstructionsGenerator.generate_instructions(
        start_date, end_date, nInstructions)

    rows = []

    for instruction in instructions:
        rows.append(instruction.get_row())

    Screen.print_section(ReportSection.Instructions, rows)

    c = ReportCreator(instructions)

    #################### (2.1) Report: Incomings / Outgoings (per day) #####################

    rows = []
    d = start_date
    delta = datetime.timedelta(days=1)
    while d <= (end_date + datetime.timedelta(2)):

        week_day = d.weekday()

        if (week_day != Weekday.Saturday):
            incomings, outgoings = c.get_amounts_per_day(d)
            rows.append((d.strftime('%Y-%m-%d'), '%.2f' % incomings,
                         '%.2f' % outgoings))

        d += delta

    Screen.print_section(ReportSection.IncomingOutgoingsPerDay, rows)

    #################### (2.2) Report: Ranking (The whole instructions) #####################

    ranking_incomings, ranking_outgoings = c.get_ranking()

    len_incomings = len(ranking_incomings)
    len_outgoings = len(ranking_outgoings)

    diff = abs(len_incomings - len_outgoings)
    max_elems = max(len_incomings, len_outgoings)

    if len_incomings < len_outgoings:
        for i in range(diff):
            ranking_incomings.append('')
    else:
        for i in range(diff):
            ranking_outgoings.append('')

    rows = []
    for i in range(max_elems):
        rows.append((str(i + 1), ranking_incomings[i], ranking_outgoings[i]))

    Screen.print_section(ReportSection.Ranking, rows)
Exemplo n.º 3
0
	def __init__(self, conf):
		ReportCreator.__init__(self)
		self.conf = conf