ShareX/ShareX.HelpersLib/ExternalProgram.cs

147 lines
4.9 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
2016-01-04 04:16:01 +13:00
Copyright (c) 2007-2016 ShareX Team
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.Diagnostics;
using System.IO;
2014-12-11 09:25:20 +13:00
namespace ShareX.HelpersLib
2013-11-03 23:53:49 +13:00
{
public class ExternalProgram
{
public bool IsActive { get; set; }
public bool HiddenWindow { get; set; }
2013-11-03 23:53:49 +13:00
public string Name { get; set; }
public string Path { get; set; }
public string Args { get; set; }
public string Extensions { get; set; }
public string OutputExtension { get; set; }
2013-11-03 23:53:49 +13:00
public ExternalProgram()
{
IsActive = false;
Args = "%input";
2013-11-03 23:53:49 +13:00
}
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;
}
}
2015-09-30 21:28:54 +13:00
public string Run(string filePath)
2013-11-03 23:53:49 +13:00
{
if (!string.IsNullOrEmpty(filePath) && CheckExtensions(filePath) && !string.IsNullOrEmpty(Path) && File.Exists(Path))
2013-11-03 23:53:49 +13:00
{
filePath = filePath.Trim('"');
2013-11-03 23:53:49 +13:00
try
{
string newFilePath = "";
2013-11-03 23:53:49 +13:00
using (Process process = new Process())
{
ProcessStartInfo psi = new ProcessStartInfo(Path);
if (string.IsNullOrEmpty(Args))
{
psi.Arguments = '"' + filePath + '"';
2013-11-03 23:53:49 +13:00
}
else
{
string args = Args.Replace("%filepath%", '"' + filePath + '"').Replace("%input", '"' + filePath + '"');
if (!string.IsNullOrEmpty(OutputExtension))
{
newFilePath = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(filePath), System.IO.Path.GetFileNameWithoutExtension(filePath));
if (!OutputExtension.Contains("."))
{
OutputExtension = "." + OutputExtension;
}
newFilePath += OutputExtension;
args = args.Replace("%output", '"' + newFilePath + '"');
}
psi.Arguments = args;
2013-11-03 23:53:49 +13:00
}
2015-09-30 21:28:54 +13:00
if (HiddenWindow)
{
psi.WindowStyle = ProcessWindowStyle.Hidden;
psi.CreateNoWindow = true;
}
2013-11-03 23:53:49 +13:00
process.StartInfo = psi;
DebugHelper.WriteLine(string.Format("Running {0} with arguments: {1}", Path, psi.Arguments));
process.Start();
process.WaitForExit();
}
if (!string.IsNullOrEmpty(newFilePath) && File.Exists(newFilePath))
{
return newFilePath;
}
return filePath;
2013-11-03 23:53:49 +13:00
}
catch (Exception e)
{
DebugHelper.WriteException(e);
}
}
return filePath;
2013-11-03 23:53:49 +13:00
}
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
}
}