Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilBeaver committed Mar 14, 2017
2 parents be3df06 + 9cd77f6 commit 3eb16e0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 19 deletions.
4 changes: 2 additions & 2 deletions src/ScriptEngine.HostedScript/Library/ProcessContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ public void Start()
///
/// <example>
/// Пример правильной обработки цикла ожидания завершения процесса:
/// Процесс не завершается, пока любоой из потоков (stdout, stderr) открыт для чтения.
/// Процесс не завершается, пока любой из потоков (stdout, stderr) открыт для чтения.
/// Процесс висит и ждет, пока его освободят от текста в обоих потоках.
///
/// Пока НЕ Процесс.Завершен ИЛИ Процесс.ПотокВывода.ЕстьДанные ИЛИ Процесс.ПотокОшибок.ЕстьДанные Цикл
/// Если ПериодОпросаВМиллисекундах <> 0 Тогда
/// Если ПериодОпросаВМиллисекундах &lt;&gt; 0 Тогда
/// Приостановить(ПериодОпросаВМиллисекундах);
/// КонецЕсли;
///
Expand Down
26 changes: 9 additions & 17 deletions src/ScriptEngine.HostedScript/Library/ProcessOutputWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ class ProcessOutputWrapper : TextReader
private OutputVariant _variant;
private StringBuilder _buffer = new StringBuilder(4096);
private ReaderWriterLockSlim _locker;

private ManualResetEventSlim _finalWriteEvent = new ManualResetEventSlim();


private int _bufferIndex = 0;

private bool AlreadyReading { get; set; }
Expand Down Expand Up @@ -45,14 +43,14 @@ public void StartReading()
if (_variant == OutputVariant.Stdout)
{
Encoding = _process.StartInfo.StandardOutputEncoding;
_process.BeginOutputReadLine();
_process.OutputDataReceived += StreamDataReceived;
_process.BeginOutputReadLine();
}
else
{
Encoding = _process.StartInfo.StandardErrorEncoding;
_process.BeginErrorReadLine();
_process.ErrorDataReceived += StreamDataReceived;
_process.BeginErrorReadLine();
}

AlreadyReading = true;
Expand All @@ -74,19 +72,13 @@ private void StreamDataReceived(object sender, sys.DataReceivedEventArgs e)
{
try
{
_locker.EnterWriteLock();
if (e.Data != null)
{
if (e.Data != null)
{
if (_buffer.Length != 0)
_buffer.Append(System.Environment.NewLine);
_locker.EnterWriteLock();
if (_buffer.Length != 0)
_buffer.Append(System.Environment.NewLine);

_buffer.Append(e.Data);
}
else
{
_finalWriteEvent.Set();
}
_buffer.Append(e.Data);
}
}
finally
Expand Down Expand Up @@ -221,7 +213,7 @@ private void EnterReadLock()
{
if (_process.HasExited)
{
_finalWriteEvent.Wait();
_process.WaitForExit(); // ожидание закрытия потоков
}

_locker.EnterReadLock();
Expand Down

0 comments on commit 3eb16e0

Please sign in to comment.