ShareX/HelpersLib/ExternalProgram.cs

113 lines
3.5 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2014-05-13 21:06:40 +12:00
Copyright (C) 2007-2014 ShareX Developers
2013-11-03 23:53:49 +13:00
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 2
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using System;
using System.Collections.Generic;
2013-11-03 23:53:49 +13:00
using System.Diagnostics;
using System.IO;
namespace HelpersLib
{
public class ExternalProgram
{
public bool IsActive { get; set; }
public string Name { get; set; }
public string Path { get; set; }
public string Args { get; set; }
public string Extensions { get; set; }
2013-11-03 23:53:49 +13:00
public ExternalProgram()
{
IsActive = false;
Args = "%filepath%";
}
public ExternalProgram(string name, string path)
: this()
{
Name = name;
Path = path;
}
public ExternalProgram(string name, string path, string args)
: this(name, path)
{
if (!string.IsNullOrEmpty(args))
{
Args += " " + args;
}
}
public void Run(string filePath)
{
if (!CheckExtensions(filePath)) return;
2013-11-03 23:53:49 +13:00
if (!string.IsNullOrEmpty(Path) && File.Exists(Path))
{
filePath = '"' + filePath.Trim('"') + '"';
try
{
using (Process process = new Process())
{
ProcessStartInfo psi = new ProcessStartInfo(Path);
if (string.IsNullOrEmpty(Args))
{
psi.Arguments = filePath;
}
else
{
psi.Arguments = Args.Replace("%filepath%", filePath);
}
process.StartInfo = psi;
DebugHelper.WriteLine(string.Format("Running {0} with arguments: {1}", Path, psi.Arguments));
process.Start();
process.WaitForExit();
}
}
catch (Exception e)
{
DebugHelper.WriteException(e);
}
}
}
private bool CheckExtensions(string path)
{
if (string.IsNullOrEmpty(Extensions) || string.IsNullOrEmpty(path)) return true;
int idx = 0;
for (int i = 0; i <= Extensions.Length; ++i) {
if (i == Extensions.Length || !char.IsLetterOrDigit(Extensions[i])) {
if (idx < i && path.EndsWith(Extensions.Substring(idx, i - idx))) return true;
idx = i + 1;
}
}
return false;
}
2013-11-03 23:53:49 +13:00
}
}