50 lines
1.7 KiB
C#
50 lines
1.7 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
|
|
namespace Yavsc.Server.Models.IT.SourceCode
|
|
{
|
|
public class ProjectBuild : SingleCmdProjectBatch
|
|
{
|
|
public ProjectBuild(string repoRoot): base(repoRoot, "make")
|
|
{
|
|
}
|
|
|
|
public override void Launch(Project input)
|
|
{
|
|
if (input==null) throw new ArgumentNullException("input");
|
|
LogPath = $"{input.Name}.{_cmdPath}.ansi.log";
|
|
|
|
// TODO honor Args property
|
|
// Model annotations => input.Repository!=null => input.Name == input.Repository.Path
|
|
var prjPath = Path.Combine(WorkingDir, input.Name);
|
|
var repoInfo = new DirectoryInfo(prjPath);
|
|
var args = string.Join(" ", Args);
|
|
|
|
var cloneStart = new ProcessStartInfo
|
|
( _cmdPath, args )
|
|
{
|
|
WorkingDirectory = prjPath,
|
|
RedirectStandardOutput = true,
|
|
UseShellExecute = false
|
|
};
|
|
// TODO make `.ansi.log` a defined constant.
|
|
var logFile = new FileInfo
|
|
( Path.Combine
|
|
( _repositoryRootPath, $"{input.Name}.ansi.log" ));
|
|
using (var stream = logFile.Create())
|
|
using (var writer = new StreamWriter(stream))
|
|
{
|
|
var process = Process.Start(cloneStart);
|
|
// TODO announce ...
|
|
while (!process.HasExited)
|
|
{
|
|
if (process.StandardOutput.Peek() > -1)
|
|
writer.WriteLine(process.StandardOutput.ReadLine());
|
|
}
|
|
}
|
|
if (ResultHandler!=null) ResultHandler(true);
|
|
}
|
|
|
|
}
|
|
} |