Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 2952a9de authored by Harald Martini's avatar Harald Martini
Browse files

Added support for Json Jobs in JobListViewModel

parent 02a80c77
No related branches found
No related tags found
No related merge requests found
......@@ -273,7 +273,6 @@
<Compile Include="ViewModel\Implementation\JobEdit\Vehicle\Components\EngineFuelViewModel.cs" />
<Compile Include="ViewModel\Implementation\JobEdit\Vehicle\Components\EngineModeViewModel.cs" />
<Compile Include="ViewModel\Implementation\JobEdit\Vehicle\Components\TorqueConverterViewModel.cs" />
<Compile Include="ViewModel\Interfaces\Document\IMultistageDocumentViewModelFactory.cs" />
<Compile Include="ViewModel\Interfaces\JobEdit\Vehicle\Components\IEngineFuelViewModel.cs" />
<Compile Include="ViewModel\Interfaces\JobEdit\Vehicle\Components\IEngineModeViewModel.cs" />
<Compile Include="ViewModel\Interfaces\Common\IViewModelBase.cs" />
......
......@@ -67,7 +67,6 @@ namespace VECTO3GUI2020.ViewModel.Implementation
_openSourceFileCommand?.NotifyCanExecuteChanged();
_showSourceFileInExplorerCommand?.NotifyCanExecuteChanged();
};
}
}
......@@ -249,6 +248,36 @@ namespace VECTO3GUI2020.ViewModel.Implementation
}
private Task<IDocumentViewModel> LoadFileAsync([NotNull] string fileName)
{
var extension = Path.GetExtension(fileName);
switch (extension) {
case ".xml":
return LoadXMLFile(fileName);
case ".json":
return LoadJsonFile(fileName);
default:
throw new VectoException($"{extension} not supported!");
}
}
private Task<IDocumentViewModel> LoadJsonFile([NotNull] string fileName)
{
IDocumentViewModel result = null;
try {
var inputData = JSONInputDataFactory.ReadJsonJob(fileName, true);
return Task.FromResult(_multiStageViewModelFactory.CreateDocumentViewModel(inputData));
} catch (Exception ex) {
throw new VectoException($"File {fileName} not supported", ex);
}
return null;
}
private Task<IDocumentViewModel> LoadXMLFile([NotNull] string fileName)
{
var xElement = new System.Xml.XmlDocument();
xElement.Load(fileName);
......@@ -273,11 +302,7 @@ namespace VECTO3GUI2020.ViewModel.Implementation
Debug.WriteLine(ex.GetInnerExceptionMessages());
result = new SimulationOnlyDeclarationJob(inputDataProvider.DataSource, inputDataProvider.JobInputData.JobName, XmlDocumentType.DeclarationJobData) as IDocumentViewModel;
}
return Task.FromResult(result);
}
else
{
......@@ -285,6 +310,9 @@ namespace VECTO3GUI2020.ViewModel.Implementation
}
return null;
}
#endregion
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment