SparkleShare/SparkleDiff/SparkleDiff.cs

510 lines
14 KiB
C#
Raw Normal View History

2010-06-28 12:17:48 +00:00
// SparkleShare, an instant update workflow to Git.
// Copyright (C) 2010 Hylke Bons <hylkebons@gmail.com>
//
// 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 <http://www.gnu.org/licenses/>.
using Gtk;
using Mono.Unix;
using System;
using System.Diagnostics;
using System.IO;
using System.Text.RegularExpressions;
namespace SparkleShare {
public class SparkleDiff
{
// Short alias for the translations
public static string _ (string s)
{
return Catalog.GetString (s);
}
2010-06-28 12:17:48 +00:00
public static void Main (string [] args)
{
2010-07-03 07:50:02 +00:00
Catalog.Init (Defines.GETTEXT_PACKAGE, Defines.LOCALE_DIR);
2010-06-28 12:17:48 +00:00
// Check whether git is installed
Process Process = new Process ();
Process.StartInfo.FileName = "git";
Process.StartInfo.RedirectStandardOutput = true;
Process.StartInfo.UseShellExecute = false;
Process.Start ();
if (Process.StandardOutput.ReadToEnd ().IndexOf ("version") == -1) {
Console.WriteLine (_("Git wasn't found."));
Console.WriteLine (_("You can get Git from http://git-scm.com/."));
Environment.Exit (0);
}
// Don't allow running as root
UnixUserInfo UnixUserInfo = new UnixUserInfo (UnixEnvironment.UserName);
if (UnixUserInfo.UserId == 0) {
Console.WriteLine (_("Sorry, you can't run SparkleShare with these permissions."));
Console.WriteLine (_("Things would go utterly wrong."));
Environment.Exit (0);
}
2010-06-30 00:08:02 +00:00
if (args.Length > 0) {
if (args [0].Equals ("--help") || args [0].Equals ("-h")) {
ShowHelp ();
Environment.Exit (0);
}
2010-06-30 00:08:02 +00:00
string file_path = args [0];
if (File.Exists (file_path)) {
Gtk.Application.Init ();
SparkleDiffWindow sparkle_diff_window;
sparkle_diff_window = new SparkleDiffWindow (file_path);
sparkle_diff_window.ShowAll ();
// The main loop
Gtk.Application.Run ();
2010-06-28 12:17:48 +00:00
2010-06-30 00:08:02 +00:00
} else {
Console.WriteLine ("SparkleDiff: " + file_path + ": No such file or directory.");
Environment.Exit (0);
}
}
2010-06-28 12:17:48 +00:00
}
// Prints the help output
public static void ShowHelp ()
{
Console.WriteLine (_("SparkleDiff Copyright (C) 2010 Hylke Bons"));
Console.WriteLine (" ");
Console.WriteLine (_("This program comes with ABSOLUTELY NO WARRANTY."));
Console.WriteLine (_("This is free software, and you are welcome to redistribute it "));
Console.WriteLine (_("under certain conditions. Please read the GNU GPLv3 for details."));
Console.WriteLine (" ");
Console.WriteLine (_("SparkleDiff let's you compare revisions of an image file side by side."));
Console.WriteLine (" ");
Console.WriteLine (_("Usage: sparklediff [FILE]"));
Console.WriteLine (_("Open an image file to show its revisions"));
Console.WriteLine (" ");
Console.WriteLine (_("Arguments:"));
Console.WriteLine (_("\t -h, --help\t\tDisplay this help text."));
Console.WriteLine (" ");
}
2010-06-28 12:17:48 +00:00
}
public class SparkleDiffWindow : Window
{
// Short alias for the translations
public static string _ (string s)
{
return Catalog.GetString (s);
}
2010-06-29 10:20:58 +00:00
private RevisionView ViewLeft;
private RevisionView ViewRight;
2010-06-28 12:17:48 +00:00
2010-06-30 00:08:02 +00:00
private string [] Revisions;
2010-06-28 12:17:48 +00:00
public SparkleDiffWindow (string file_path) : base ("")
{
2010-06-30 00:08:02 +00:00
string file_name = System.IO.Path.GetFileName (file_path);
2010-06-28 12:17:48 +00:00
SetSizeRequest (800, 540);
2010-06-28 12:17:48 +00:00
SetPosition (WindowPosition.Center);
BorderWidth = 12;
2010-06-30 00:08:02 +00:00
DeleteEvent += Quit;
IconName = "image-x-generic";
2010-07-03 07:50:02 +00:00
// TRANSLATORS: The parameter is a filename
2010-06-30 00:08:02 +00:00
Title = String.Format(_("Comparing Revisions of {0}"), file_name);
2010-06-28 12:17:48 +00:00
2010-07-04 00:24:03 +00:00
Revisions = GetRevisionsForFilePath (file_path);
2010-06-28 12:17:48 +00:00
VBox layout_vertical = new VBox (false, 12);
HBox layout_horizontal = new HBox (false, 12);
Process process = new Process ();
process.EnableRaisingEvents = true;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.WorkingDirectory = System.IO.Path.GetDirectoryName (file_path);
process.StartInfo.FileName = "git";
process.StartInfo.Arguments = "log --format=\"%ct\t%an\" " + file_name;
process.Start ();
string output = process.StandardOutput.ReadToEnd ();
string [] revisions_info = Regex.Split (output.Trim (), "\n");
int i = 0;
foreach (string revision_info in revisions_info) {
string [] parts = Regex.Split (revision_info.Trim (), "\t");
int timestamp = int.Parse (parts [0]);
string author = parts [1];
if (i == 0)
2010-07-03 07:50:02 +00:00
revisions_info [i] = _("Current Revision") + "\t" + author;
else
2010-07-03 07:50:02 +00:00
// TRANSLATORS: This is a format specifier according to System.Globalization.DateTimeFormatInfo
revisions_info [i] = UnixTimestampToDateTime (timestamp).ToString (_("d MMM\tH:mm")) +
"\t" + author;
i++;
}
2010-07-04 00:24:03 +00:00
ViewLeft = new LeftRevisionView (revisions_info);
ViewRight = new RightRevisionView (revisions_info);
2010-06-30 00:08:02 +00:00
2010-07-04 00:24:03 +00:00
ViewLeft.SetImage (new RevisionImage (file_path, Revisions [1]));
ViewRight.SetImage (new RevisionImage (file_path, Revisions [0]));
2010-06-30 00:08:02 +00:00
ViewLeft.ComboBox.Changed += delegate {
RevisionImage revision_image;
revision_image = new RevisionImage (file_path, Revisions [ViewLeft.ComboBox.Active]);
ViewLeft.SetImage (revision_image);
HookUpViews ();
ViewLeft.ScrolledWindow.Hadjustment = ViewRight.ScrolledWindow.Hadjustment;
ViewLeft.ScrolledWindow.Vadjustment = ViewRight.ScrolledWindow.Vadjustment;
ViewLeft.UpdateControls ();
2010-06-30 00:08:02 +00:00
};
ViewRight.ComboBox.Changed += delegate {
RevisionImage revision_image;
revision_image = new RevisionImage (file_path, Revisions [ViewRight.ComboBox.Active]);
ViewRight.SetImage (revision_image);
HookUpViews ();
ViewRight.ScrolledWindow.Hadjustment = ViewLeft.ScrolledWindow.Hadjustment;
ViewRight.ScrolledWindow.Vadjustment = ViewLeft.ScrolledWindow.Vadjustment;
ViewRight.UpdateControls ();
2010-06-30 00:08:02 +00:00
};
2010-07-04 00:24:03 +00:00
2010-06-28 12:17:48 +00:00
layout_horizontal.PackStart (ViewLeft);
layout_horizontal.PackStart (ViewRight);
2010-07-04 00:24:03 +00:00
// Order time view according to the user's reading direction
if (Direction == Gtk.TextDirection.Rtl) // See Deejay1? I can do i18n too! :P
layout_horizontal.ReorderChild (ViewLeft, 1);
2010-06-30 00:08:02 +00:00
HookUpViews ();
2010-06-28 12:17:48 +00:00
HButtonBox dialog_buttons = new HButtonBox ();
dialog_buttons.Layout = ButtonBoxStyle.End;
dialog_buttons.BorderWidth = 0;
Button CloseButton = new Button (Stock.Close);
CloseButton.Clicked += delegate (object o, EventArgs args) {
Environment.Exit (0);
};
dialog_buttons.Add (CloseButton);
layout_vertical.PackStart (layout_horizontal, true, true, 0);
layout_vertical.PackStart (dialog_buttons, false, false, 0);
Add (layout_vertical);
}
2010-07-04 00:24:03 +00:00
// Hooks up two views so their scrollbars will be kept in sync
2010-06-30 00:08:02 +00:00
private void HookUpViews () {
2010-06-28 12:17:48 +00:00
2010-06-30 00:08:02 +00:00
ViewLeft.ScrolledWindow.Hadjustment.ValueChanged += SyncViewsHorizontally;
ViewLeft.ScrolledWindow.Vadjustment.ValueChanged += SyncViewsVertically;
ViewRight.ScrolledWindow.Hadjustment.ValueChanged += SyncViewsHorizontally;
ViewRight.ScrolledWindow.Vadjustment.ValueChanged += SyncViewsVertically;
2010-06-28 12:17:48 +00:00
}
2010-06-30 00:08:02 +00:00
// Keeps the two image views in sync horizontally
2010-06-28 12:17:48 +00:00
private void SyncViewsHorizontally (object o, EventArgs args) {
Adjustment source_adjustment = (Adjustment) o;
2010-06-30 00:08:02 +00:00
if (source_adjustment == ViewLeft.ScrolledWindow.Hadjustment)
ViewRight.ScrolledWindow.Hadjustment = source_adjustment;
2010-06-28 12:17:48 +00:00
else
2010-06-30 00:08:02 +00:00
ViewLeft.ScrolledWindow.Hadjustment = source_adjustment;
2010-06-28 12:17:48 +00:00
}
2010-06-30 00:08:02 +00:00
// Keeps the two image views in sync vertically
2010-06-28 12:17:48 +00:00
private void SyncViewsVertically (object o, EventArgs args) {
Adjustment source_adjustment = (Adjustment) o;
2010-06-30 00:08:02 +00:00
if (source_adjustment == ViewLeft.ScrolledWindow.Vadjustment)
ViewRight.ScrolledWindow.Vadjustment = source_adjustment;
2010-06-28 12:17:48 +00:00
else
2010-06-30 00:08:02 +00:00
ViewLeft.ScrolledWindow.Vadjustment = source_adjustment;
2010-06-28 12:17:48 +00:00
}
2010-06-30 00:08:02 +00:00
// Gets a list of all earlier revisions of this file
2010-07-04 00:24:03 +00:00
private string [] GetRevisionsForFilePath (string file_path)
2010-06-28 12:17:48 +00:00
{
2010-06-30 00:08:02 +00:00
string file_name = System.IO.Path.GetFileName (file_path);
2010-06-28 12:17:48 +00:00
Process process = new Process ();
process.EnableRaisingEvents = true;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
2010-06-30 00:25:02 +00:00
// TODO: Nice commit summary and "Current Revision"
2010-06-30 00:08:02 +00:00
process.StartInfo.WorkingDirectory = System.IO.Path.GetDirectoryName (file_path);
2010-06-28 12:17:48 +00:00
process.StartInfo.FileName = "git";
2010-06-30 00:08:02 +00:00
process.StartInfo.Arguments = "log --format=\"%H\" " + file_name;
2010-06-28 12:17:48 +00:00
process.Start ();
2010-06-30 00:08:02 +00:00
string output = process.StandardOutput.ReadToEnd ();
2010-07-04 00:24:03 +00:00
string [] revisions = Regex.Split (output.Trim (), "\n");
2010-06-28 12:17:48 +00:00
2010-07-04 00:24:03 +00:00
return revisions;
2010-06-28 12:17:48 +00:00
}
// Converts a UNIX timestamp to a more usable time object
public DateTime UnixTimestampToDateTime (int timestamp)
{
DateTime unix_epoch = new DateTime (1970, 1, 1, 0, 0, 0, 0);
return unix_epoch.AddSeconds (timestamp);
}
2010-06-30 00:08:02 +00:00
// Quits the program
private void Quit (object o, EventArgs args) {
2010-06-28 12:17:48 +00:00
2010-06-30 00:08:02 +00:00
Environment.Exit (0);
2010-06-28 12:17:48 +00:00
2010-06-29 10:20:58 +00:00
}
2010-06-28 12:17:48 +00:00
2010-06-29 10:20:58 +00:00
}
2010-06-28 12:17:48 +00:00
2010-06-29 10:20:58 +00:00
// An image grabbed from a stream generated by Git
public class RevisionImage : Image
{
public string Revision;
public string FilePath;
public RevisionImage (string file_path, string revision) : base ()
{
Revision = revision;
FilePath = file_path;
2010-06-28 12:17:48 +00:00
2010-06-29 10:20:58 +00:00
Process process = new Process ();
process.EnableRaisingEvents = true;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
2010-06-28 12:17:48 +00:00
2010-06-29 10:20:58 +00:00
process.StartInfo.WorkingDirectory = System.IO.Path.GetDirectoryName (FilePath);
process.StartInfo.FileName = "git";
process.StartInfo.Arguments = "show " + revision + ":" + System.IO.Path.GetFileName (FilePath);
process.Start ();
Pixbuf = new Gdk.Pixbuf ((System.IO.Stream) process.StandardOutput.BaseStream);
}
2010-06-28 12:17:48 +00:00
2010-06-29 10:20:58 +00:00
}
// A custom widget containing an image view,
// previous/next buttons and a combobox
2010-06-28 12:17:48 +00:00
public class RevisionView : VBox
{
public ScrolledWindow ScrolledWindow;
public ComboBox ComboBox;
public Button ButtonPrevious;
public Button ButtonNext;
2010-07-04 00:24:03 +00:00
private int ValueCount;
2010-06-28 12:17:48 +00:00
private Image Image;
2010-06-30 00:08:02 +00:00
public RevisionView (string [] revisions) : base (false, 6)
2010-06-28 12:17:48 +00:00
{
Image = new Image ();
ScrolledWindow = new ScrolledWindow ();
2010-07-04 00:24:03 +00:00
2010-06-28 12:17:48 +00:00
ScrolledWindow.AddWithViewport (Image);
2010-07-04 00:24:03 +00:00
HBox controls = new HBox (false, 3);
2010-06-28 12:17:48 +00:00
controls.BorderWidth = 0;
Arrow arrow_left = new Arrow (ArrowType.Left, ShadowType.None);
ButtonPrevious = new Button ();
ButtonPrevious.Add (arrow_left);
2010-06-30 00:08:02 +00:00
ButtonPrevious.Clicked += PreviousInComboBox;
ButtonPrevious.ExposeEvent += EqualizeSizes;
2010-06-28 12:17:48 +00:00
2010-07-04 00:24:03 +00:00
ValueCount = 0;
2010-06-30 00:08:02 +00:00
2010-06-28 12:17:48 +00:00
ComboBox = ComboBox.NewText ();
2010-06-30 00:08:02 +00:00
foreach (string revision in revisions) {
ComboBox.AppendText (revision);
}
ComboBox.Active = 0;
2010-07-04 00:24:03 +00:00
ValueCount = revisions.Length;
Arrow arrow_right = new Arrow (ArrowType.Right, ShadowType.None);
ButtonNext = new Button ();
ButtonNext.Add (arrow_right);
2010-06-30 00:08:02 +00:00
ButtonNext.Clicked += NextInComboBox;
ButtonNext.ExposeEvent += EqualizeSizes;
2010-06-28 12:17:48 +00:00
controls.PackStart (new Label (""), true, false, 0);
controls.PackStart (ButtonPrevious, false, false, 0);
controls.PackStart (ButtonNext, false, false, 0);
2010-07-04 00:24:03 +00:00
controls.PackStart (ComboBox, false, false, 9);
controls.PackStart (new Label (""), true, false, 0);
2010-06-28 12:17:48 +00:00
PackStart (controls, false, false, 0);
2010-07-04 00:24:03 +00:00
PackStart (ScrolledWindow, true, true, 0);
2010-06-28 12:17:48 +00:00
2010-06-30 00:08:02 +00:00
UpdateControls ();
2010-06-28 12:17:48 +00:00
}
2010-07-04 00:24:03 +00:00
// Equalizes the height and width of a button when exposed
private void EqualizeSizes (object o, ExposeEventArgs args) {
2010-07-04 00:24:03 +00:00
Button button = (Button) o;
button.WidthRequest = button.Allocation.Height;
2010-07-04 00:24:03 +00:00
}
2010-06-29 10:20:58 +00:00
2010-06-30 00:08:02 +00:00
public void NextInComboBox (object o, EventArgs args) {
2010-07-04 00:24:03 +00:00
if (ComboBox.Active - 1 >= 0)
2010-06-30 00:08:02 +00:00
ComboBox.Active--;
2010-06-28 12:17:48 +00:00
2010-06-30 00:08:02 +00:00
UpdateControls ();
2010-07-04 00:24:03 +00:00
2010-06-30 00:08:02 +00:00
}
public void PreviousInComboBox (object o, EventArgs args) {
2010-07-04 00:24:03 +00:00
if (ComboBox.Active + 1 < ValueCount)
2010-06-30 00:08:02 +00:00
ComboBox.Active++;
UpdateControls ();
2010-07-04 00:24:03 +00:00
}
// Updates the buttons to be disabled or enabled when needed
public void UpdateControls () {
ButtonPrevious.State = StateType.Normal;
ButtonNext.State = StateType.Normal;
// TODO: Disable Next or Previous buttons when at the first or last value of the combobox
2010-06-28 12:17:48 +00:00
}
2010-06-29 10:20:58 +00:00
// Changes the image that is viewed
2010-06-28 12:17:48 +00:00
public void SetImage (Image image) {
Image = image;
2010-06-30 00:08:02 +00:00
Remove (ScrolledWindow);
ScrolledWindow = new ScrolledWindow ();
ScrolledWindow.AddWithViewport (Image);
Add (ScrolledWindow);
2010-06-28 12:17:48 +00:00
ShowAll ();
}
2010-07-04 00:24:03 +00:00
}
2010-06-28 12:17:48 +00:00
2010-07-04 00:24:03 +00:00
public class LeftRevisionView : RevisionView {
public LeftRevisionView (string [] revisions) : base (revisions) {
2010-06-30 00:08:02 +00:00
2010-07-04 00:24:03 +00:00
ComboBox.Active = 1;
2010-06-29 10:20:58 +00:00
2010-07-04 00:24:03 +00:00
if (Direction == Gtk.TextDirection.Ltr)
ScrolledWindow.Placement = CornerType.TopRight;
else
ScrolledWindow.Placement = CornerType.TopLeft;
2010-06-30 00:08:02 +00:00
}
2010-07-04 00:24:03 +00:00
}
public class RightRevisionView : RevisionView {
public RightRevisionView (string [] revisions) : base (revisions) {
2010-06-28 12:17:48 +00:00
2010-07-04 00:24:03 +00:00
ComboBox.Active = 0;
if (Direction == Gtk.TextDirection.Ltr)
ScrolledWindow.Placement = CornerType.TopLeft;
else
ScrolledWindow.Placement = CornerType.TopRight;
}
2010-06-28 12:17:48 +00:00
}
}