149 lines
5.3 KiB
C#
149 lines
5.3 KiB
C#
/*
|
|
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
|
|
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
using System;
|
|
using System.IO;
|
|
using Newtonsoft.Json;
|
|
using QuantConnect.Logging;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace QuantConnect.Commands
|
|
{
|
|
/// <summary>
|
|
/// Represents a command handler that sources it's commands from a file on the local disk
|
|
/// </summary>
|
|
public class FileCommandHandler : BaseCommandHandler
|
|
{
|
|
private readonly Queue<ICommand> _commands = new();
|
|
private const string _commandFilePattern = "command*.json";
|
|
private const string _resultFileBaseName = "result-command";
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="FileCommandHandler"/> class
|
|
/// using the 'command-json-file' configuration value for the command json file
|
|
/// </summary>
|
|
public FileCommandHandler()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the available command files
|
|
/// </summary>
|
|
/// <returns>Sorted enumerator of all the available command files</returns>
|
|
public static IEnumerable<FileInfo> GetCommandFiles()
|
|
{
|
|
var currentDirectory = new DirectoryInfo(Directory.GetCurrentDirectory());
|
|
var filesFromPattern = currentDirectory.GetFiles(_commandFilePattern);
|
|
return filesFromPattern.OrderBy(file => file.Name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the next command in the queue
|
|
/// </summary>
|
|
/// <returns>The next command in the queue, if present, null if no commands present</returns>
|
|
protected override IEnumerable<ICommand> GetCommands()
|
|
{
|
|
foreach(var file in GetCommandFiles())
|
|
{
|
|
// update the queue by reading the command file
|
|
ReadCommandFile(file.FullName);
|
|
|
|
while (_commands.Count != 0)
|
|
{
|
|
yield return _commands.Dequeue();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Acknowledge a command that has been executed
|
|
/// </summary>
|
|
/// <param name="command">The command that was executed</param>
|
|
/// <param name="commandResultPacket">The result</param>
|
|
protected override void Acknowledge(ICommand command, CommandResultPacket commandResultPacket)
|
|
{
|
|
if (string.IsNullOrEmpty(command.Id))
|
|
{
|
|
Log.Error($"FileCommandHandler.Acknowledge(): {Messages.FileCommandHandler.NullOrEmptyCommandId}");
|
|
return;
|
|
}
|
|
var resultFilePath = $"{_resultFileBaseName}-{command.Id}.json";
|
|
File.WriteAllText(resultFilePath, JsonConvert.SerializeObject(commandResultPacket));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads the commnd file on disk and populates the queue with the commands
|
|
/// </summary>
|
|
private void ReadCommandFile(string commandFilePath)
|
|
{
|
|
Log.Trace($"FileCommandHandler.ReadCommandFile(): {Messages.FileCommandHandler.ReadingCommandFile(commandFilePath)}");
|
|
string contents = null;
|
|
Exception exception = null;
|
|
object deserialized = null;
|
|
try
|
|
{
|
|
if (!File.Exists(commandFilePath))
|
|
{
|
|
Log.Error($"FileCommandHandler.ReadCommandFile(): {Messages.FileCommandHandler.CommandFileDoesNotExist(commandFilePath)}");
|
|
return;
|
|
}
|
|
contents = File.ReadAllText(commandFilePath);
|
|
deserialized = JsonConvert.DeserializeObject(contents, Settings);
|
|
}
|
|
catch (Exception err)
|
|
{
|
|
exception = err;
|
|
}
|
|
|
|
// remove the file when we're done reading it
|
|
File.Delete(commandFilePath);
|
|
|
|
// try it as an enumerable
|
|
var enumerable = deserialized as IEnumerable<ICommand>;
|
|
if (enumerable != null)
|
|
{
|
|
foreach (var command in enumerable)
|
|
{
|
|
_commands.Enqueue(command);
|
|
}
|
|
return;
|
|
}
|
|
|
|
// try it as a single command
|
|
var item = deserialized as ICommand;
|
|
if (item != null)
|
|
{
|
|
_commands.Enqueue(item);
|
|
return;
|
|
}
|
|
|
|
var callbackCommand = TryGetCallbackCommand(contents);
|
|
if (callbackCommand != null)
|
|
{
|
|
_commands.Enqueue(callbackCommand);
|
|
return;
|
|
}
|
|
|
|
if (exception != null)
|
|
{
|
|
// if we are here we failed
|
|
Log.Error(exception);
|
|
}
|
|
}
|
|
}
|
|
}
|