- Timestamp:
- 05/29/19 12:26:42 (5 years ago)
- Location:
- addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/DataBaseCommandBase.cs
r16567 r16994 23 23 using HeuristicLab.DataImporter.Data.Model; 24 24 using HeuristicLab.DataImporter.DbExplorer.Interfaces; 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;26 25 using HEAL.Attic; 27 26 -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/LoadColumnGroupWithSqlStringFromDBCommand.cs
r16567 r16994 23 23 using HeuristicLab.DataImporter.Data.Model; 24 24 using HeuristicLab.DataImporter.DbExplorer.Interfaces; 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;26 25 using HEAL.Attic; 27 26 -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/LoadColumnGroupsFromDBCommand.cs
r16567 r16994 24 24 using HeuristicLab.DataImporter.Data.Model; 25 25 using HeuristicLab.DataImporter.DbExplorer.Interfaces; 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;27 26 using HEAL.Attic; 28 27 -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/ReorderColumnsCommand.cs
r16567 r16994 24 24 using HeuristicLab.DataImporter.Data.CommandBase; 25 25 using HeuristicLab.DataImporter.Data.Model; 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;27 26 using HEAL.Attic; 28 27 -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Command/SqlCommandView.cs
r9615 r16994 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.ComponentModel;25 using System.Data;26 using System.Drawing;27 using System.Text;28 using System.Windows.Forms;29 22 30 23 namespace HeuristicLab.DataImporter.DataProcessor.Command { -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/DataProcessorView.cs
r11653 r16994 29 29 using System.Windows.Forms; 30 30 using System.Xml; 31 using HEAL.Attic; 32 using HeuristicLab.Common; 31 33 using HeuristicLab.DataImporter.Data; 32 34 using HeuristicLab.DataImporter.Data.CommandBase; … … 35 37 using HeuristicLab.DataImporter.DataProcessor.Command; 36 38 using HeuristicLab.DataImporter.DbExplorer.Interfaces; 37 using HeuristicLab.Persistence.Default.Xml;38 39 using HeuristicLab.PluginInfrastructure; 39 40 using HeuristicLab.Problems.DataAnalysis; … … 324 325 if (dlg.ShowDialog() == DialogResult.OK) { 325 326 try { 326 DataProcessor dp = (DataProcessor)XmlParser.Deserialize(dlg.FileName); 327 var ser = new ProtoBufSerializer(); 328 DataProcessor dp = (DataProcessor)ser.Deserialize(dlg.FileName); 327 329 dp.DatabaseExplorer = this.dataProcessor.DatabaseExplorer; 328 330 this.lastSavedFile = dlg.FileName; … … 364 366 try { 365 367 this.Cursor = Cursors.WaitCursor; 366 XmlGenerator.Serialize(serialize, filename, CompressionLevel.Optimal); 368 var ser = new ProtoBufSerializer(); 369 ser.Serialize(serialize, filename); 367 370 this.Cursor = Cursors.Default; 368 371 this.Text = "Data Importer - " + lastSavedFile; … … 443 446 this.Enabled = false; 444 447 try { 445 CommandChain temp = (CommandChain)XmlParser.Deserialize(dlg.FileName); 448 var ser = new ProtoBufSerializer(); 449 CommandChain temp = (CommandChain)ser.Deserialize(dlg.FileName); 446 450 progressDlg = new ProgressDialog(); 447 451 progressDlg.DesktopLocation = new Point(this.Location.X + this.Width / 2 - progressDlg.Width / 2, this.Location.Y + this.Height / 2 - progressDlg.Height / 2); … … 467 471 try { 468 472 this.Cursor = Cursors.WaitCursor; 469 XmlGenerator.Serialize(this.dataProcessor.CommandChain, saveFileDialog.FileName, CompressionLevel.Optimal); 473 var ser = new ProtoBufSerializer(); 474 ser.Serialize(this.dataProcessor.CommandChain, saveFileDialog.FileName); 470 475 } 471 476 finally { -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/DbTablesView.cs
r9615 r16994 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.ComponentModel;25 24 using System.Data; 26 25 using System.Drawing; 27 26 using System.Linq; 28 using System.Text;29 27 using System.Windows.Forms; 30 28 using HeuristicLab.DataImporter.DbExplorer.Interfaces; -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/ExportDialog.cs
r9615 r16994 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.ComponentModel;25 using System.Data;26 using System.Drawing;27 23 using System.Linq; 28 using System.Text;29 24 using System.Windows.Forms; 30 using HeuristicLab.DataImporter.Data;31 25 using HeuristicLab.PluginInfrastructure; 32 26 -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/HeuristicLab.DataImporter.DataProcessor.csproj
r16570 r16994 119 119 <Private>False</Private> 120 120 </Reference> 121 <Reference Include="HeuristicLab.Persistence-3.3">122 <HintPath>..\..\..\trunk\bin\HeuristicLab.Persistence-3.3.dll</HintPath>123 <Private>False</Private>124 </Reference>125 121 <Reference Include="HeuristicLab.PluginInfrastructure-3.3"> 126 122 <HintPath>..\..\..\trunk\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath> -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/HeuristicLabDataImporterDataProcessorApplication.cs
r9615 r16994 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using System.Windows.Forms; 27 23 using HeuristicLab.PluginInfrastructure; -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/IExporter.cs
r9615 r16994 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using System.Windows.Forms; 27 23 using HeuristicLab.DataImporter.Data.Model; -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/IImporter.cs
r9615 r16994 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using System.Windows.Forms; 27 23 using HeuristicLab.DataImporter.Data.CommandBase; -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/ImportDialog.cs
r9615 r16994 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.ComponentModel;25 using System.Data;26 using System.Drawing;27 23 using System.Linq; 28 using System.Text;29 24 using System.Windows.Forms; 30 25 using HeuristicLab.DataImporter.Data.CommandBase; 31 26 using HeuristicLab.DataImporter.Data; 32 using HeuristicLab.DataImporter.DataProcessor;33 27 using HeuristicLab.PluginInfrastructure; 34 28 -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/Plugin.cs.frame
r9752 r16994 32 32 [PluginFile("HeuristicLab.DataImporter.DbExplorer.Interfaces-1.0.dll", PluginFileType.Assembly)] 33 33 [PluginDependency("HeuristicLab.ALGLIB", "3.7")] 34 [PluginDependency("HeuristicLab.Attic","1.0")] 34 35 [PluginDependency("HeuristicLab.Common.Resources","3.3")] 35 36 [PluginDependency("HeuristicLab.Problems.DataAnalysis","3.4")] 36 [PluginDependency("HeuristicLab.Persistence","3.3")]37 37 public class HeuristicLabDataImporterDataProcessorPlugin : PluginBase { 38 38 } -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/ProgressDialog.cs
r9615 r16994 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.ComponentModel;25 using System.Data;26 using System.Drawing;27 using System.Linq;28 using System.Text;29 22 using System.Windows.Forms; 30 23 -
addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/ToolStripCheckBox.cs
r9615 r16994 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using System.Windows.Forms; 27 23 using System.Windows.Forms.Design;
Note: See TracChangeset
for help on using the changeset viewer.