8 unstable releases (3 breaking)

0.4.1 Sep 28, 2022
0.4.0 Sep 22, 2022
0.3.1 Sep 8, 2022
0.2.2 Sep 6, 2022
0.1.0 Aug 17, 2022

#468 in GUI

MIT license

630KB
5K SLoC

crates.io Crates.io

git function history GUI

A GUI frontend for the git function history library.

Installation

cargo install git-function-history-gui

or if you don't want to use parallelism:

cargo install git-function-history-gui --no-default-features

Note

Under Linux you may need to install the following packages:

  • libclang-dev
  • libgtk-3-dev
  • libxcb-render0-dev
  • libxcb-shape0-dev
  • libxcb-xfixes0-dev
  • libspeechd-dev
  • libxkbcommon-dev
  • libssl-dev

On ubuntu you can install them with: sudo apt-get install -y libclang-dev libgtk-3-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev

Usage

When you run the program, you will see a window, like this: (the title bar/decorations vary by platform)

The app is split into three sections:

  • The top section shows the current output of whatever command you have entered in the command bar, this section is called the viewing pane.

  • The middle section is where you build and run commands, it is called the command bar.

  • The bottom section shows the current status of the app, and any errors that have occurred, and on the right hand side there is as a button to change the theme.

Command bar

Even though the command bar is the middle section, we will start with it because you cannot use the top section without first building a command in the command bar.

The leftmost part of the command bar is the command selector, it is a drop down menu that allows you to select the command you want to build.

The commands are:

  • filter: This command allows you to filter the output of the previous command.

  • search: This command builds a search query for a function in a git repository.

  • list: This command is used to list commit hashes or dates for each commit in a git repository.

The first thing you'll see is a text box, this is where you enter the name of the function you want to search for.

The next thing you'll see is a drop down menu, this is the search file selector, it allows you to select what type of file you want to search in.

The options are:

  • None: This option will search all rust files in the repository (very expensive).

  • Relative: This will search all file ending with the filename specified in the text box.

  • Absolute: This option will search the exact file specified in the text box.

  • Directory: This will search any file that has the given directory

If you select Relative or Absolute then you will see a text box appear, this is where you enter the filename.

After that there is another dropdown menu to filter the search (before it is run) to save time.

The options are:

  • None: This option will not filter the search.

  • Commit Hash: This option will filter the search to only the commit with the commit hash specified in the text box.

  • Date: This option will filter the search to only the commit closest to the date specified in the text box.

Date Range: This option will filter the search to only the commits between the two dates specified in the text boxes.

If you select Commit Hash or Date then you will see a text box appear, this is where you enter the commit hash or date, with Date Range you will see two text boxes appear, these are where you enter the start and end dates.

After that there is Go button, this will run the command and display the output in the viewing pane (after the command has finished).

Command bar - filter

Once you have ran a command and gotten some output in the viewing pane, you can filter by switching the first drop down to filter.

The options vary by if you have already filtered by lets say a date, then you won't be able to filter by a date range or a commit hash.

All the options are:

  • none: This option will not filter your output.

  • commit hash: This option will filter the output to only the commit with the commit hash specified in the text box.

  • date: This option will filter the output to only the commit closest to the date specified in the text box.

  • date range: This option will filter the output to only the commits between the two dates specified in the text boxes.

  • function in function: This option will filter the output to only the commits that contain the function you specified in your search has a parent function specified in the text box.

  • function in lines: This option will filter the output to only the commits that contain the function you specified in your search in the lines specified in the text boxes.

  • function in block: This option will filter the output to only the commits that contain the function you specified in your search in the block specified in the text box. Valid block types are:

    • extern
    • impl
    • trait
  • file absolute: This option will filter the output to only the the commits that contain the has the exact file path specified in the text box

  • file relative: This option will filter the output to any file that ends with the filename specified in the text box.

  • directory: This option will filter the output to any file that has the directory specified in the text box.

Every option has a text box, except for None.

After that there is Go button, this will run the command and display the output in the viewing pane (after the command has finished).

Command bar - list

The list command is used to list commit hashes or dates for each commit in a git repository.

Once you select the list command, you will see a drop down menu, this is the list type selector, it allows you to select what type of list you want to build.

The options are:

  • dates: This option will list the date of each commit in the repository.

  • commit hashes: This option will list the commit hash of each commit in the repository.

After that there is Go button, this will run the command and display the output in the viewing pane (after the command has finished).

Viewing pane

The viewing pane is where the output of the command you have built in the command bar is displayed.

when you first open the app, the viewing pane will be or you filtered to the point where there is no output, so you will see a message saying Nothing to show Please select a command.

If its showing you the a function whole history in the repository, as opposed to just a single commit, then the top of the viewing pane will have a left and right arrow )a button will be disabled if there is no more history to show in that direction ), these are used to navigate between commits along with the commit hash and date.

Below that is the is where you can see all the all instances of the function in the commit along with tall left and right arrows (each button will only be shown if you can go back and forward through the files in the commit), these are used to navigate between the files that contain the function.

If you filtered to a single commit, then you will see the commit hash and date at the top of the viewing pane.

Below that is the is where you can see all the all instances of the function in the commit along with tall left and right arrows (each button will only be shown if you can go back and forward through the files in the commit), these are used to navigate between the files that contain the function.

If you list the commit hashes or dates, then you will see a list of all the commit hashes or dates in the repository.

Status bar

The status bar is where you can see the status of the app, it will tell you if the app is loading or if there was an error or everything is fine.

On the right hand side there is as a button to change the theme.

Known issues

  • [windows]: App crashes with error: process didn't exit successfully: `target\debug\git-function-history-gui.exe` (exit code: 0xc0000374, STATUS_HEAP_CORRUPTION), This is an issue with the underlying GUI library being used it might vary depending on the hardware you use.

Future plans

  • Add a way to filter by file name(s)
  • Add a way to filter by more git stuff (author, email, etc)
  • Add a way to filter by block name
  • Add a way to search multiple files at once

Note: most of these features need to be added to the underlying library first.

Dependencies

~24–41MB
~502K SLoC