SparkleShare/SparkleLib/SparkleRepo.cs

1137 lines
26 KiB
C#
Raw Normal View History

// 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
2010-07-22 21:10:38 +00:00
// along with this program. If not, see <http://www.gnu.org/licenses/>.
2011-02-23 01:13:54 +00:00
using GitSharp;
using GitSharp.Commands;
using GitSharp.Core.Transport;
using Meebey.SmartIrc4net;
using Mono.Unix;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text.RegularExpressions;
using System.Timers;
namespace SparkleLib {
public class SparkleRepo : Repository {
private Process Process;
private Timer RemoteTimer;
private Timer LocalTimer;
private FileSystemWatcher Watcher;
private bool HasChanged;
private DateTime LastChange;
private System.Object ChangeLock;
private int FetchRequests;
2010-09-12 17:46:00 +00:00
private SparkleListener Listener;
/// <summary>
/// The folder name the repository resides in locally
/// </summary>
public readonly string Name;
/// <summary>
/// The folder name the repository resides in remotely
/// </summary>
public readonly string RemoteName;
/// <summary>
/// The domain the remote repository is on
/// </summary>
public readonly string Domain;
/// <summary>
/// The repository's description
/// </summary>
public readonly string Description;
/// <summary>
/// The path where the repository resides locally
/// </summary>
public readonly string LocalPath;
/// <summary>
/// The raw url used to sync with.
/// </summary>
public readonly string RemoteOriginUrl;
private string _CurrentHash;
private bool _IsSyncing;
private bool _IsBuffering;
private bool _IsPolling;
private bool _IsFetching;
private bool _IsPushing;
private bool _HasUnsyncedChanges;
private bool _ServerOnline;
/// <summary>
/// The hash of the last commit done in the repository
/// </summary>
public string CurrentHash {
get {
return _CurrentHash;
}
}
/// <summary>
/// The name of the user
/// </summary>
public readonly string UserName;
/// <summary>
/// The name of the user
/// </summary>
public readonly string UserEmail;
/// <summary>
/// Indicates whether the repository is currently waiting for local changes to settle
/// </summary>
public bool IsBuffering {
get {
return _IsBuffering;
}
}
/// <summary>
/// Indicates whether the repository is currently pushing changes
/// </summary>
public bool IsPushing {
get {
return _IsPushing;
}
}
/// <summary>
/// Indicates whether the repository has fallen back to polling the remote repository,
/// instead of receiving instant notifications
/// </summary>
public bool IsPolling {
get {
return _IsPolling;
}
}
/// <summary>
/// Indicates whether the repository is currently fetching and/or pushing changes
/// </summary>
public bool IsSyncing {
get {
return _IsSyncing;
}
}
/// <summary>
/// Indicates whether the repository is currently fetching remote changes
/// </summary>
public bool IsFetching {
get {
return _IsFetching;
}
}
/// <summary>
/// Indicates whether the repository has local changes that aren't pushed remotely yet
/// </summary>
public bool HasUnsyncedChanges {
get {
return _HasUnsyncedChanges;
}
}
/// <summary>
/// Indicates whether the remote repository is online,
/// this is based on the result of the Fetch method
/// </summary>
public bool ServerOnline {
get {
return _ServerOnline;
}
}
/// <event cref="Added">
/// Raised when local files have been added to the repository's staging area
/// </event>
public delegate void AddedEventHandler (object o, SparkleEventArgs args);
/// <event cref="Commited">
/// Raised when local files have been added to the repository's index
/// </event>
2010-07-21 23:17:20 +00:00
public delegate void CommitedEventHandler (object o, SparkleEventArgs args);
/// <event cref="PushingStarted">
/// Raised when the repository has started pushing changes
/// </event>
public delegate void PushingStartedEventHandler (object o, SparkleEventArgs args);
/// <event cref="PushingFinished">
/// Raised when the repository has finished pushing changes
/// </event>
public delegate void PushingFinishedEventHandler (object o, SparkleEventArgs args);
/// <event cref="PushingFailed">
/// Raised when pushing changes has failed
/// </event>
public delegate void PushingFailedEventHandler (object o, SparkleEventArgs args);
/// <event cref="FetchingStarted">
/// Raised when when the repository has started fetching remote changes
/// </event>
2010-07-22 21:10:38 +00:00
public delegate void FetchingStartedEventHandler (object o, SparkleEventArgs args);
/// <event cref="FetchingFinished">
/// Raised when when the repository has finished fetching remote changes
/// </event>
2010-07-22 21:10:38 +00:00
public delegate void FetchingFinishedEventHandler (object o, SparkleEventArgs args);
2010-10-07 21:43:08 +00:00
/// <event cref="FetchingFailed">
/// Raised when when fetching from the remote repository has failed
/// </event>
public delegate void FetchingFailedEventHandler (object o, SparkleEventArgs args);
/// <event cref="NewCommit">
/// Raised when the repository has received one or multiple new remote commits
/// </event>
public delegate void NewCommitEventHandler (SparkleCommit commit, string repository_path);
/// <event cref="ConflictDetected">
/// Raised when the newly fetched commits are conflicting with local changes
/// </event>
2010-07-24 14:03:58 +00:00
public delegate void ConflictDetectedEventHandler (object o, SparkleEventArgs args);
/// <event cref="ChangesDetected">
/// Raised when local files have changed in the repository's folder
/// </event>
public delegate void ChangesDetectedEventHandler (object o, SparkleEventArgs args);
/// <event cref="CommitEndedUpEmpty">
/// Raised when there were changes made to local files, but the net result after changes have settled
/// ended up the same as before the changes were made.
/// </event>
public delegate void CommitEndedUpEmptyEventHandler (object o, SparkleEventArgs args);
2010-07-21 23:17:20 +00:00
2010-07-24 14:03:58 +00:00
public event AddedEventHandler Added;
public event CommitedEventHandler Commited;
public event PushingStartedEventHandler PushingStarted;
public event PushingFinishedEventHandler PushingFinished;
public event PushingFailedEventHandler PushingFailed;
2010-07-24 14:03:58 +00:00
public event FetchingStartedEventHandler FetchingStarted;
public event FetchingFinishedEventHandler FetchingFinished;
2010-10-07 21:43:08 +00:00
public event FetchingFailedEventHandler FetchingFailed;
2010-07-24 14:03:58 +00:00
public event NewCommitEventHandler NewCommit;
public event ConflictDetectedEventHandler ConflictDetected;
public event ChangesDetectedEventHandler ChangesDetected;
public event CommitEndedUpEmptyEventHandler CommitEndedUpEmpty;
public SparkleRepo (string path) : base (path)
{
2010-09-20 18:53:49 +00:00
LocalPath = path;
Name = Path.GetFileName (LocalPath);
2010-07-27 13:49:48 +00:00
Process = new Process () {
EnableRaisingEvents = true
};
2010-11-27 21:23:44 +00:00
Process.StartInfo.FileName = SparklePaths.GitPath;
Process.StartInfo.RedirectStandardOutput = true;
Process.StartInfo.UseShellExecute = false;
2010-07-20 21:21:37 +00:00
Process.StartInfo.WorkingDirectory = LocalPath;
RemoteName = Path.GetFileNameWithoutExtension (RemoteOriginUrl);
2010-10-10 16:13:51 +00:00
RemoteOriginUrl = Config ["remote.origin.url"];
Domain = GetDomain (RemoteOriginUrl);
Description = GetDescription ();
UserName = Config ["user.name"];
UserEmail = Config ["user.email"];
2011-02-01 09:38:56 +00:00
if (Head.CurrentCommit == null)
_CurrentHash = null;
else
_CurrentHash = Head.CurrentCommit.Hash;
_IsSyncing = false;
_IsBuffering = false;
_IsPolling = true;
_IsFetching = false;
_IsPushing = false;
_ServerOnline = true;
string unsynced_file_path = SparkleHelpers.CombineMore (LocalPath ,
".git", "has_unsynced_changes");
if (File.Exists (unsynced_file_path))
_HasUnsyncedChanges = true;
else
_HasUnsyncedChanges = false;
if (_CurrentHash == null)
2010-08-08 19:16:48 +00:00
CreateInitialCommit ();
2010-07-21 23:17:20 +00:00
HasChanged = false;
ChangeLock = new System.Object ();
FetchRequests = 0;
// Watch the repository's folder
2010-07-20 21:21:37 +00:00
Watcher = new FileSystemWatcher (LocalPath) {
IncludeSubdirectories = true,
EnableRaisingEvents = true,
Filter = "*"
};
Watcher.Changed += new FileSystemEventHandler (OnFileActivity);
Watcher.Created += new FileSystemEventHandler (OnFileActivity);
Watcher.Deleted += new FileSystemEventHandler (OnFileActivity);
2010-08-29 10:38:34 +00:00
Watcher.Renamed += new RenamedEventHandler (OnFileActivity);
2010-07-24 21:31:24 +00:00
// Fetch remote changes every minute
RemoteTimer = new Timer () {
Interval = 60000
2010-07-20 21:21:37 +00:00
};
// Listen to the irc channel on the server
Listener = new SparkleListener (Domain, "#" + RemoteName, UserEmail);
RemoteTimer.Elapsed += delegate {
if (_IsPolling)
CheckForRemoteChanges ();
if (_HasUnsyncedChanges)
Push ();
if (!Listener.Client.IsConnected) {
SparkleHelpers.DebugInfo ("Irc", "[" + Name + "] Trying to reconnect...");
Listener.Client.Reconnect (true, true);
}
};
// Stop polling when the connection to the irc channel is succesful
2010-09-12 17:46:00 +00:00
Listener.Client.OnConnected += delegate {
// Check for changes manually one more time
CheckForRemoteChanges ();
// Push changes that were made since the last disconnect
if (_HasUnsyncedChanges)
Push ();
SparkleHelpers.DebugInfo ("Irc", "[" + Name + "] Connected. Now listening...");
_IsPolling = false;
};
// Start polling when the connection to the irc channel is lost
2010-09-12 17:46:00 +00:00
Listener.Client.OnDisconnected += delegate {
SparkleHelpers.DebugInfo ("Irc", "[" + Name + "] Lost connection. Falling back to polling...");
_IsPolling = true;
CheckForRemoteChanges ();
};
// Fetch changes when there is a message in the irc channel
2010-09-20 18:53:49 +00:00
Listener.Client.OnChannelMessage += delegate (object o, IrcEventArgs args) {
SparkleHelpers.DebugInfo ("Irc", "[" + Name + "] Was notified of a remote change.");
2010-09-20 18:53:49 +00:00
if (!args.Data.Message.Equals (_CurrentHash)) {
FetchRequests++;
if (!_IsFetching) {
while (FetchRequests > 0) {
2010-07-21 23:17:20 +00:00
Fetch ();
FetchRequests--;
}
Rebase ();
}
} else {
SparkleHelpers.DebugInfo ("Irc",
"[" + Name + "] False alarm, already up to date. (" + _CurrentHash + ")");
}
};
// Start listening
Listener.ListenForChanges ();
// Keep a timer that checks if there are changes and
2010-07-20 21:21:37 +00:00
// whether they have settled
LocalTimer = new Timer () {
2010-07-20 21:21:37 +00:00
Interval = 4000
};
LocalTimer.Elapsed += delegate (object o, ElapsedEventArgs args) {
2010-07-20 21:21:37 +00:00
CheckForChanges ();
};
if (_IsPolling)
RemoteTimer.Start ();
LocalTimer.Start ();
// Add everything that changed
// since SparkleShare was stopped
AddCommitAndPush ();
if (_CurrentHash == null)
2010-10-10 16:19:23 +00:00
_CurrentHash = Head.CurrentCommit.Hash;
2010-08-08 19:16:48 +00:00
2010-07-20 21:21:37 +00:00
}
private void CheckForRemoteChanges ()
{
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Checking for remote changes...");
Process process = new Process () {
EnableRaisingEvents = true
};
2010-11-27 21:23:44 +00:00
process.StartInfo.FileName = SparklePaths.GitPath;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.WorkingDirectory = LocalPath;
process.StartInfo.Arguments = "ls-remote origin master";
process.Exited += delegate {
if (process.ExitCode != 0)
return;
string remote_hash = process.StandardOutput.ReadToEnd ();
if (!remote_hash.StartsWith (_CurrentHash)) {
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Remote changes found.");
Fetch ();
Rebase ();
}
};
process.Start ();
/* FIXME: LsRemoteCommand is not yet implemented by GitSharp
LsRemoteCommand ls_remote = new LsRemoteCommand () {
Repository = this
};
ls_remote.Execute ();
using (StreamReader reader = new StreamReader (ls_remote.OutputStream.BaseStream))
{
string remote_hash = reader.ReadLine ());
if (!remote_hash.StartsWith (_CurrentHash)) {
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Remote changes found.");
Fetch ();
Rebase ();
}
}
*/
}
2010-07-20 21:21:37 +00:00
private void CheckForChanges ()
{
lock (ChangeLock) {
if (HasChanged) {
SparkleHelpers.DebugInfo ("Local", "[" + Name + "] Changes found, checking if settled.");
2010-07-20 21:21:37 +00:00
DateTime now = DateTime.UtcNow;
TimeSpan changed = new TimeSpan (now.Ticks - LastChange.Ticks);
if (changed.TotalMilliseconds > 5000) {
SparkleHelpers.DebugInfo ("Local", "[" + Name + "] Changes have settled, adding files...");
_IsBuffering = false;
HasChanged = false;
2010-07-20 21:21:37 +00:00
AddCommitAndPush ();
2010-07-20 21:21:37 +00:00
}
}
}
}
2010-07-20 21:21:37 +00:00
// Starts a timer when something changes
private void OnFileActivity (object o, FileSystemEventArgs fse_args)
{
2010-07-20 21:21:37 +00:00
WatcherChangeTypes wct = fse_args.ChangeType;
2010-08-29 10:38:34 +00:00
if (!ShouldIgnore (fse_args.FullPath)) {
2010-07-20 21:21:37 +00:00
_IsBuffering = true;
// Only fire the event if the timer has been stopped.
// This prevents multiple events from being raised whilst "buffering".
if (!HasChanged) {
2010-07-20 21:21:37 +00:00
SparkleEventArgs args = new SparkleEventArgs ("ChangesDetected");
if (ChangesDetected != null)
ChangesDetected (this, args);
}
SparkleHelpers.DebugInfo ("Event", "[" + Name + "] " + wct.ToString () + " '" + fse_args.Name + "'");
2010-07-20 21:21:37 +00:00
RemoteTimer.Stop ();
2010-07-20 21:21:37 +00:00
lock (ChangeLock) {
2010-07-24 14:03:58 +00:00
LastChange = DateTime.UtcNow;
HasChanged = true;
2010-07-24 14:03:58 +00:00
}
2010-07-20 21:21:37 +00:00
}
2010-07-20 21:21:37 +00:00
}
2010-07-20 21:21:37 +00:00
// When there are changes we generally want to Add, Commit and Push,
2010-07-20 21:21:37 +00:00
// so this method does them all with appropriate timers, etc. switched off
public void AddCommitAndPush ()
{
2010-07-20 21:21:37 +00:00
try {
2010-07-20 21:21:37 +00:00
LocalTimer.Stop ();
RemoteTimer.Stop ();
2011-02-23 01:13:54 +00:00
if (Status.AnyDifferences) {
Add ();
string message = FormatCommitMessage ();
2010-07-20 21:21:37 +00:00
Commit (message);
CheckForRemoteChanges ();
Push ();
2010-07-24 14:03:58 +00:00
} else {
SparkleEventArgs args = new SparkleEventArgs ("CommitEndedUpEmpty");
if (CommitEndedUpEmpty != null)
CommitEndedUpEmpty (this, args);
}
2010-07-20 21:21:37 +00:00
} finally {
if (_IsPolling)
RemoteTimer.Start ();
LocalTimer.Start ();
2010-07-20 21:21:37 +00:00
}
}
2010-07-20 21:21:37 +00:00
// Stages the made changes
private void Add ()
{
2010-07-20 21:21:37 +00:00
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Staging changes...");
2010-07-20 21:21:37 +00:00
// FIXME: this GitSharp method seems to block...
// Index.AddAll ();
Process.StartInfo.Arguments = "add --all";
Process.Start ();
Process.WaitForExit ();
2010-07-20 21:21:37 +00:00
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Changes staged.");
2010-07-20 21:21:37 +00:00
2010-07-21 23:17:20 +00:00
SparkleEventArgs args = new SparkleEventArgs ("Added");
if (Added != null)
Added (this, args);
}
2010-07-20 21:21:37 +00:00
// Removes unneeded objects
private void CollectGarbage ()
{
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Collecting garbage...");
Process.StartInfo.Arguments = "gc";
Process.Start ();
Process.WaitForExit ();
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Garbage collected..");
}
// Commits the made changes
new public void Commit (string message)
{
2010-07-20 21:21:37 +00:00
if (!Status.AnyDifferences)
2010-08-29 10:38:34 +00:00
return;
base.Commit (message);
SparkleHelpers.DebugInfo ("Commit", "[" + Name + "] " + message);
2010-07-20 21:21:37 +00:00
SparkleEventArgs args = new SparkleEventArgs ("Commited") {
Message = message
};
2010-07-21 23:17:20 +00:00
if (Commited != null)
2010-07-24 14:03:58 +00:00
Commited (this, args);
// Collect garbage pseudo-randomly
if (DateTime.Now.Second % 10 == 0)
CollectGarbage ();
2010-07-21 23:17:20 +00:00
}
2010-07-20 21:21:37 +00:00
2010-07-24 21:31:24 +00:00
// Fetches changes from the remote repository
public void Fetch ()
{
2010-07-20 21:21:37 +00:00
_IsSyncing = true;
_IsFetching = true;
RemoteTimer.Stop ();
2010-07-20 21:21:37 +00:00
/* FIXME: SSH transport doesn't work with GitSharp
try {
FetchCommand fetch_command = new FetchCommand () {
Remote = "origin",
Repository = this
};
fetch_command.Execute ();
} catch (GitSharp.Core.Exceptions.TransportException e) {
Console.WriteLine ("Nothing to fetch: " + e.Message);
}
*/
Process process = new Process () {
EnableRaisingEvents = true
};
2010-07-20 21:21:37 +00:00
2010-11-27 21:23:44 +00:00
process.StartInfo.FileName = SparklePaths.GitPath;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.WorkingDirectory = LocalPath;
2010-07-22 21:10:38 +00:00
SparkleEventArgs args;
args = new SparkleEventArgs ("FetchingStarted");
2010-07-20 21:21:37 +00:00
if (FetchingStarted != null)
FetchingStarted (this, args);
2010-07-20 21:21:37 +00:00
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Fetching changes...");
2010-07-27 11:00:01 +00:00
2010-08-14 10:22:49 +00:00
process.StartInfo.Arguments = "fetch -v origin master";
2010-07-20 21:21:37 +00:00
process.Exited += delegate {
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Changes fetched.");
2010-07-20 21:21:37 +00:00
args = new SparkleEventArgs ("FetchingFinished");
2010-07-21 23:17:20 +00:00
_IsSyncing = false;
_IsFetching = false;
if (_IsPolling)
RemoteTimer.Start ();
2010-10-10 16:19:23 +00:00
_CurrentHash = Head.CurrentCommit.Hash;
2010-07-20 21:21:37 +00:00
2010-10-07 21:43:08 +00:00
if (process.ExitCode != 0) {
_ServerOnline = false;
2010-10-07 21:43:08 +00:00
if (FetchingFailed != null)
FetchingFailed (this, args);
} else {
_ServerOnline = true;
2010-10-07 21:43:08 +00:00
if (FetchingFinished != null)
FetchingFinished (this, args);
}
};
2010-07-20 21:21:37 +00:00
process.Start ();
process.WaitForExit ();
}
2010-07-21 23:17:20 +00:00
// Merges the fetched changes
public void Rebase ()
{
2011-02-23 01:13:54 +00:00
if (Status.AnyDifferences) {
Add ();
string commit_message = FormatCommitMessage ();
Commit (commit_message);
}
Watcher.EnableRaisingEvents = false;
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Rebasing changes...");
2010-07-20 21:21:37 +00:00
2010-08-14 10:22:49 +00:00
Process.StartInfo.Arguments = "rebase -v FETCH_HEAD";
Process.WaitForExit ();
Process.Start ();
2010-07-20 21:21:37 +00:00
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Changes rebased.");
2010-07-20 21:21:37 +00:00
string output = Process.StandardOutput.ReadToEnd ().Trim ();
2010-07-20 21:21:37 +00:00
if (!output.Contains ("up to date")) {
2010-07-20 21:21:37 +00:00
if (output.Contains ("Failed to merge")) {
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Resolving conflict...");
Process.StartInfo.Arguments = "status";
Process.WaitForExit ();
Process.Start ();
2010-07-20 21:21:37 +00:00
output = Process.StandardOutput.ReadToEnd ().Trim ();
string [] lines = Regex.Split (output, "\n");
2010-07-20 21:21:37 +00:00
foreach (string line in lines) {
2010-07-20 21:21:37 +00:00
if (line.Contains ("needs merge")) {
2010-07-20 21:21:37 +00:00
string problem_file_name = line.Substring (line.IndexOf (": needs merge"));
2010-07-20 21:21:37 +00:00
Process.StartInfo.Arguments = "checkout --ours " + problem_file_name;
Process.WaitForExit ();
Process.Start ();
2010-07-24 14:03:58 +00:00
string timestamp = DateTime.Now.ToString ("H:mm d MMM yyyy");
File.Move (problem_file_name, problem_file_name + " (" + UserName + ", " + timestamp + ")");
2010-07-24 14:03:58 +00:00
Process.StartInfo.Arguments = "checkout --theirs " + problem_file_name;
Process.WaitForExit ();
Process.Start ();
2010-07-24 14:03:58 +00:00
SparkleEventArgs args = new SparkleEventArgs ("ConflictDetected");
2010-07-24 14:03:58 +00:00
if (ConflictDetected != null)
ConflictDetected (this, args);
}
}
Add ();
Process.StartInfo.Arguments = "rebase --continue";
Process.WaitForExit ();
Process.Start ();
2010-07-20 21:21:37 +00:00
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Conflict resolved.");
2010-07-20 21:21:37 +00:00
Push ();
}
List <SparkleCommit> commits = GetCommits (1);
if (NewCommit != null)
NewCommit (commits [0], LocalPath);
}
Watcher.EnableRaisingEvents = true;
}
2010-07-21 23:17:20 +00:00
// Pushes the changes to the remote repo
public void Push ()
{
2010-07-20 21:21:37 +00:00
_IsSyncing = true;
_IsPushing = true;
SparkleEventArgs args = new SparkleEventArgs ("PushingStarted");
2011-02-12 23:40:38 +00:00
Process process = new Process () {
EnableRaisingEvents = true
};
process.StartInfo.FileName = SparklePaths.GitPath;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.WorkingDirectory = LocalPath;
if (PushingStarted != null)
PushingStarted (this, args);
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Pushing changes...");
2010-07-20 21:21:37 +00:00
/* FIXME: SSH transport doesn't work with GitSharp
try {
PushCommand push_command = new PushCommand () {
Remote = "origin",
Repository = this
};
push_command.Execute ();
} catch (GitSharp.Core.Exceptions.TransportException e) {
Console.WriteLine (e.Message);
}
*/
2011-02-12 23:40:38 +00:00
process.StartInfo.Arguments = "push origin master";
2010-11-27 21:23:44 +00:00
2011-02-12 23:40:38 +00:00
process.Exited += delegate {
2010-07-20 21:21:37 +00:00
_IsSyncing = false;
_IsPushing = false;
2011-02-12 23:40:38 +00:00
if (process.ExitCode != 0) {
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Pushing failed.");
string unsynced_file_path = SparkleHelpers.CombineMore (LocalPath ,
".git", "has_unsynced_changes");
if (!File.Exists (unsynced_file_path))
File.Create (unsynced_file_path);
_HasUnsyncedChanges = true;
2010-07-21 23:17:20 +00:00
args = new SparkleEventArgs ("PushingFailed");
if (PushingFailed != null)
PushingFailed (this, args);
} else {
SparkleHelpers.DebugInfo ("Git", "[" + Name + "] Changes pushed.");
args = new SparkleEventArgs ("PushingFinished");
string unsynced_file_path = SparkleHelpers.CombineMore (LocalPath ,
".git", "has_unsynced_changes");
if (File.Exists (unsynced_file_path))
File.Delete (unsynced_file_path);
_HasUnsyncedChanges = false;
if (PushingFinished != null)
PushingFinished (this, args);
}
2010-07-21 23:17:20 +00:00
};
2011-02-12 23:40:38 +00:00
process.Start ();
process.WaitForExit ();
2010-07-20 21:21:37 +00:00
}
2010-07-20 21:21:37 +00:00
2010-08-29 10:38:34 +00:00
// Ignores repos, dotfiles, swap files and the like
private bool ShouldIgnore (string file_path)
{
// TODO: check against .git/info/exclude
2010-08-29 10:38:34 +00:00
if (file_path.EndsWith (".lock") ||
2010-08-30 17:20:47 +00:00
file_path.EndsWith ("~") ||
file_path.Contains (".git") ||
file_path.Contains ("/.") ||
file_path.EndsWith (".swp") ||
2010-11-27 20:52:55 +00:00
System.IO.Directory.Exists (Path.Combine (LocalPath, file_path))) {
2010-07-20 21:21:37 +00:00
2010-08-29 10:38:34 +00:00
return true; // Yes, ignore it
2010-07-20 21:21:37 +00:00
} else {
return false;
}
}
2010-07-20 21:21:37 +00:00
2010-07-24 21:31:24 +00:00
// Gets the domain name of a given URL
private string GetDomain (string url)
2010-07-21 23:17:20 +00:00
{
if (url.Equals (""))
return null;
2010-08-08 19:16:48 +00:00
string domain = url.Substring (url.IndexOf ("@") + 1);
2010-07-21 23:17:20 +00:00
if (domain.Contains (":"))
2010-07-21 23:17:20 +00:00
domain = domain.Substring (0, domain.IndexOf (":"));
else
domain = domain.Substring (0, domain.IndexOf ("/"));
return domain;
}
// Gets the repository's description
private string GetDescription ()
{
string description_file_path = SparkleHelpers.CombineMore (Directory, "description");
if (!File.Exists (description_file_path))
return null;
StreamReader reader = new StreamReader (description_file_path);
string description = reader.ReadToEnd ();
reader.Close ();
if (description.StartsWith ("Unnamed"))
description = null;
return description;
}
2010-08-08 19:16:48 +00:00
// Create a first commit in case the user has cloned
// an empty repository
private void CreateInitialCommit ()
{
TextWriter writer = new StreamWriter (Path.Combine (LocalPath, "SparkleShare.txt"));
writer.WriteLine (":)");
writer.Close ();
}
// Returns a list of latest commits
public List <SparkleCommit> GetCommits (int count)
{
2010-10-10 21:39:00 +00:00
if (count <= 0)
return null;
List <SparkleCommit> commits = new List <SparkleCommit> ();
2010-10-10 21:39:00 +00:00
string commit_ref = "HEAD";
2010-10-10 21:39:00 +00:00
try {
2010-10-10 21:39:00 +00:00
for (int i = 0; i < count; i++) {
2010-10-10 21:39:00 +00:00
Commit commit = new Commit (this, commit_ref);
SparkleCommit sparkle_commit = new SparkleCommit ();
sparkle_commit.UserName = commit.Author.Name;
sparkle_commit.UserEmail = commit.Author.EmailAddress;
sparkle_commit.DateTime = commit.CommitDate.DateTime;
sparkle_commit.Hash = commit.Hash;
2010-10-10 21:39:00 +00:00
foreach (Change change in commit.Changes) {
2010-10-10 21:39:00 +00:00
if (change.ChangeType.ToString ().Equals ("Added"))
sparkle_commit.Added.Add (change.Path);
2010-10-10 21:39:00 +00:00
if (change.ChangeType.ToString ().Equals ("Modified"))
sparkle_commit.Edited.Add (change.Path);
2010-10-10 21:39:00 +00:00
if (change.ChangeType.ToString ().Equals ("Deleted"))
sparkle_commit.Deleted.Add (change.Path);
}
2010-10-10 21:39:00 +00:00
commits.Add (sparkle_commit);
commit_ref += "^";
}
2010-10-10 21:39:00 +00:00
} catch (System.NullReferenceException) {
// FIXME: Doesn't show the first commit because it throws
// this exception before getting to it. Seems to be a bug in GitSharp
}
return commits;
}
// Creates a pretty commit message based on what has changed
private string FormatCommitMessage ()
{
// RepositoryStatus contains the following properties (all HashSet <string>)
//
// * Added ---> added and staged
// * MergeConflict --->
// * Missing ---> removed but not staged
// * Modified ---> modified but not staged
// * Removed ---> removed and staged
// * Staged ---> modified and staged
// * Untracked ---> added but not staged
//
// Because we create the commit message, we only need to consider the staged changes
RepositoryStatus status = Index.Status;
2010-08-29 10:38:34 +00:00
string file_name = "";
2010-08-29 10:38:34 +00:00
string message = null;
if (status.Added.Count > 0) {
2010-08-29 10:38:34 +00:00
foreach (string added in status.Added) {
file_name = added;
break;
2010-08-29 10:38:34 +00:00
}
message = "+ " + file_name + "";
}
2010-08-29 10:38:34 +00:00
2010-11-26 23:06:49 +00:00
if (status.Staged.Count > 0) {
2010-08-29 10:38:34 +00:00
2010-11-26 23:06:49 +00:00
foreach (string modified in status.Staged) {
file_name = modified;
break;
2010-11-26 23:06:49 +00:00
}
message = "/ " + file_name + "";
}
2010-08-29 10:38:34 +00:00
if (status.Removed.Count > 0) {
2010-08-29 10:38:34 +00:00
foreach (string removed in status.Removed) {
file_name = removed;
break;
2010-11-26 23:06:49 +00:00
}
message = "- " + file_name + "";
}
int changes_count = (status.Added.Count +
2010-11-26 23:06:49 +00:00
status.Staged.Count +
status.Removed.Count);
if (changes_count > 1)
message += " + " + (changes_count - 1);
2010-08-29 10:38:34 +00:00
return message;
}
// Disposes all resourses of this object
new public void Dispose ()
{
RemoteTimer.Dispose ();
LocalTimer.Dispose ();
Listener.Dispose ();
base.Dispose ();
}
}
}