-
Notifications
You must be signed in to change notification settings - Fork 1
/
EzProject.cs
1140 lines (1014 loc) · 49.1 KB
/
EzProject.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright © Microsoft Corporation. All Rights Reserved.
// This code released under the terms of the
// Microsoft Public License (MS-PL, http://opensource.org/licenses/ms-pl.html.)
// Stand-alone version forked by KoureasS & GitHub.
using Microsoft.SqlServer.Dts.Runtime;
using System;
using System.Diagnostics;
using System.IO;
namespace Microsoft.SqlServer.SSIS.EzAPI
{
/// <summary>
/// EzProject is a base class which will be inherited by other types project.
/// EzProject provides a set of wrapper methods to create project, add packages,
/// and set the project properties.
/// </summary>
public class EzProject
{
#region members & properties
private Project m_project;
/// <summary>
/// Get Project instance
/// </summary>
public Project Project
{
get
{
if (null == m_project)
{
m_project = Project.CreateProject();
}
return m_project;
}
}
/// <summary>
/// Get packages in the project
/// </summary>
public PackageItems PackageItems
{
get
{
return Project.PackageItems;
}
}
/// <summary>
/// Get ConnectionManagerItems in the Project
/// </summary>
public ConnectionManagerItems ConnectionManagerItems
{
get
{
return Project.ConnectionManagerItems;
}
}
/// <summary>
/// Get parameters in the project
/// </summary>
public Parameters Parameters
{
get
{
return Project.Parameters;
}
}
/// <summary>
/// Set password of project
/// </summary>
public string Password
{
set
{
Project.Password = value;
}
}
/// <summary>
/// Get, set creation date of project
/// </summary>
public DateTimeOffset CreationDate
{
get { return Project.CreationDate; }
set { Project.CreationDate = value; }
}
/// <summary>
/// Get, set creator name of project
/// </summary>
public string CreatorName
{
get { return Project.CreatorName; }
set { Project.CreatorName = value; }
}
/// <summary>
/// Get description of project
/// </summary>
public string Description
{
get { return Project.Description; }
set { Project.Description = value; }
}
/// <summary>
/// Get ID of project
/// </summary>
public string ID
{
get { return Project.ID; }
}
/// <summary>
/// Get, set name of project
/// </summary>
public string Name
{
get { return Project.Name; }
set { Project.Name = value; }
}
/// <summary>
/// Get, set protection level of project
/// </summary>
public DTSProtectionLevel ProtectionLevel
{
get { return Project.ProtectionLevel; }
set { Project.ProtectionLevel = value; }
}
/// <summary>
/// Get, set version build of project
/// </summary>
public int VersionBuild
{
get { return Project.VersionBuild; }
set { Project.VersionBuild = value; }
}
/// <summary>
/// Get, set version comments of project
/// </summary>
public string VersionComments
{
get { return Project.VersionComments; }
set { Project.VersionComments = value; }
}
/// <summary>
/// Get, set version major of project
/// </summary>
public int VersionMajor
{
get { return Project.VersionMajor; }
set { Project.VersionMajor = value; }
}
/// <summary>
/// Get, set verion minor of project
/// </summary>
public int VersionMinor
{
get { return Project.VersionMinor; }
set { Project.VersionMinor = value; }
}
#endregion
#region constructor & operator override
public EzProject()
{
m_project = Project.CreateProject();
}
public EzProject(string projectfile)
{
m_project = Project.CreateProject(projectfile);
}
/// <summary>
/// Construct an EzProject from a Project Object
/// </summary>
/// <param name="project"></param>
public EzProject(Project project)
{
if (null == project)
{
m_project = Project.CreateProject();
}
else
{
m_project = project;
}
}
/// <summary>
/// override operator, in order to return a Project object from an EzProject
/// </summary>
/// <param name="project">operand of EzProject object</param>
/// <returns>Return a Project object</returns>
public static implicit operator Project(EzProject project)
{
if (project == null)
{
return null;
}
return (Project)project.Project;
}
/// <summary>
/// override operator, in order to return an EzProject object from a Project
/// </summary>
/// <param name="project">oeprand of Project object</param>
/// <returns>Return an EzProject object</returns>
public static implicit operator EzProject(Project project)
{
if (project == null)
{
return null;
}
return new EzProject(project);
}
#endregion
#region Methods
/// <summary>
/// Add an EzPackage to project
/// </summary>
/// <typeparam name="T">EzPackage constraint</typeparam>
/// <param name="package">EzPackage object</param>
/// <returns>package stream name</returns>
public string AddPackage<T>(T package) where T : EzPackage
{
Debug.Assert(null != package, @"The package should not be nullable.");
string packageStreamName = package.Name + ".dtsx";
Project.PackageItems.Add((Package)package, packageStreamName);
return packageStreamName;
}
/// <summary>
/// Add a Package to project
/// </summary>
/// <param name="package"></param>
/// <returns>package stream name</returns>
public string AddPackage(Package package)
{
Debug.Assert(null != package, @"The package should not be nullable.");
Project.PackageItems.Add(package, package.Name + ".dtsx");
return package.Name;
}
/// <summary>
/// Add a package to project with a specified stream name
/// </summary>
/// <param name="package"></param>
/// <param name="streamname"></param>
/// <returns>package stream name</returns>
public string AddPackage(Package package, string streamname)
{
Debug.Assert(null != package, @"The package should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(streamname), @"The stream name should not be nullable.");
Project.PackageItems.Add(package, streamname);
return streamname;
}
/// <summary>
/// Insert a package at a specified position
/// </summary>
/// <param name="index">the index to specify the package in the project</param>
/// <param name="package">the package object</param>
/// <returns>package stream name</returns>
public string InsertPackage(int index, Package package)
{
Debug.Assert(index > -1, @"The package index must be greater than or equal to 0.");
Debug.Assert(null != package, @"The package should not be nullable.");
try
{
Project.PackageItems.Insert(index, package, package.Name);
return package.Name;
}
catch (Exception)
{
return null;
}
}
/// <summary>
/// Remove a package at specified index position
/// </summary>
/// <param name="index">the index to specify the package in project</param>
public void RemovePackageAt(int index)
{
Debug.Assert(index > -1, @"The package index must be greater than or equal to 0.");
Project.PackageItems.RemoveAt(index);
}
/// <summary>
/// Remove a package by specifiying stream name
/// </summary>
/// <param name="packagename">package stream name</param>
public void RemovePackage(string packagename)
{
Debug.Assert(!string.IsNullOrEmpty(packagename), @"The stream name should not be nullable.");
Project.PackageItems.Remove(packagename);
}
/// <summary>
/// Add an EzConnectionManager to Project
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="connection"></param>
/// <returns></returns>
public ConnectionManager AddConnectionManager<T>(T connection) where T : EzConnectionManager
{
Debug.Assert(null != connection, @"The package should not be nullable.");
string connectionStreamName = connection.Name + ".conmgr";
ConnectionManagerItem cmi = Project.ConnectionManagerItems.Add(connection.GetConnMgrID(), connectionStreamName);
return cmi.ConnectionManager;
}
/// <summary>
/// Add a connection to Project
/// </summary>
/// <param name="connection"></param>
/// <returns></returns>
public ConnectionManager AddConnectionManager(ConnectionManager connection)
{
Debug.Assert(null != connection, @"The connection should not be nullable.");
string connectionStreamName = connection.Name + ".conmgr";
ConnectionManagerItem cmi = Project.ConnectionManagerItems.Add(connection.CreationName, connectionStreamName);
return cmi.ConnectionManager;
}
/// <summary>
/// Add a connection to project with a specified stream name
/// </summary>
/// <param name="connection"></param>
/// <param name="streamname"></param>
/// <returns>connection stream name</returns>
public ConnectionManager AddConnectionManager(ConnectionManager connection, string streamname)
{
Debug.Assert(null != connection, @"The connection should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(streamname), @"The stream name should not be nullable.");
ConnectionManagerItem cmi = Project.ConnectionManagerItems.Add(connection.CreationName, streamname);
return cmi.ConnectionManager;
}
/// <summary>
/// Remove a connection at specified index position
/// </summary>
/// <param name="index">the index to specify the connection in project</param>
public void RemoveConnectionManagerAt(int index)
{
Debug.Assert(index > -1, @"The connection index must be greater than or equal to 0.");
Project.ConnectionManagerItems.RemoveAt(index);
}
/// <summary>
/// Remove a connection by specifiying stream name
/// </summary>
/// <param name="packagename">connection stream name</param>
public void RemoveConnectionManager(string connectionname)
{
Debug.Assert(!string.IsNullOrEmpty(connectionname), @"The connection name should not be nullable.");
Project.ConnectionManagerItems.Remove(connectionname);
}
/// <summary>
/// Add a parameter for a project.
/// </summary>
/// <param name="name">parameter name</param>
/// <param name="type">parameter type</param>
public Parameter AddProjectParameter(string name, TypeCode type)
{
Debug.Assert(!string.IsNullOrEmpty(name), @"The parameter name should not be nullable.");
return Parameters.Add(name, type);
}
/// <summary>
/// Add parameter for a project
/// </summary>
/// <param name="name">parameter's name</param>
/// <param name="type">parameter's type</param>
/// <param name="required">parameter is required</param>
/// <param name="sensitive">parameter is sensitive</param>
/// <param name="defaultValue">parameter's default value</param>
/// <param name="value">parameter's value</param>
/// <returns>parameter object</returns>
public Parameter AddProjectParameter(string name, TypeCode type, bool required, bool sensitive, object value)
{
Debug.Assert(!string.IsNullOrEmpty(name), @"The parameter name should not be nullable.");
Parameter param = Parameters.Add(name, type);
param.Required = required;
param.Sensitive = sensitive;
param.Value = value;
return param;
}
/// <summary>
/// Add package parameter for a project
/// </summary>
/// <param name="name">parameter's name</param>
/// <param name="type">parameter's type</param>
/// <param name="pkgStreamName">package stream name</param>
/// <returns>parameter object</returns>
public Parameter AddPackageParameter(string name, TypeCode type, string pkgStreamName)
{
Debug.Assert(!string.IsNullOrEmpty(name), @"The parameter name should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(pkgStreamName), @"The package stream name should not be nullable.");
//if pacakge exists, add the parameter, else throw exception
if (PackageItems.IndexOf(pkgStreamName) > -1)
{
Parameter param = PackageItems[pkgStreamName].Package.Parameters.Add(name, type);
return param;
}
else
{
throw new ApplicationException("The specified package doesn't exist in the project");
}
}
/// <summary>
/// Add pacakge parameter for a project
/// </summary>
/// <param name="name">parameter's name</param>
/// <param name="type">parameter's type</param>
/// <param name="required">parameter is required</param>
/// <param name="sensitive">parameter is sensitive</param>
/// <param name="defaultValue">parameter's default value</param>
/// <param name="value">parameter's value</param>
/// <param name="pkgStreamName"></param>
/// <returns>parameter object</returns>
public Parameter AddPackageParameter(string name, TypeCode type, bool required, bool sensitive, object value, string pkgStreamName)
{
Debug.Assert(!string.IsNullOrEmpty(name), @"The parameter name should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(pkgStreamName), @"The package stream name should not be nullable.");
//if pacakge exists, add the parameter, else throw exception
if (PackageItems.IndexOf(pkgStreamName) > -1)
{
Parameter param = PackageItems[pkgStreamName].Package.Parameters.Add(name, type);
param.Required = required;
param.Sensitive = sensitive;
param.Value = value;
return param;
}
else
{
throw new ApplicationException("The specified package doesn't exist in the project");
}
}
/// <summary>
/// Remove a parameter from project
/// </summary>
/// <param name="name">parameter name</param>
public void RemoveParameter(string name)
{
Debug.Assert(!string.IsNullOrEmpty(name), @"The parameter name should not be nullable.");
Parameters.Remove(name);
}
/// <summary>
/// Remove a parameter from project by index
/// </summary>
/// <param name="index">parameter index</param>
public void RemoveParameter(int index)
{
Debug.Assert(index > -1, @"The parameter index must be greater than or equal to 0.");
Parameters.RemoveAt(index);
}
/// <summary>
/// Open project by specifying a file path
/// </summary>
/// <param name="filename">the project file path</param>
public void OpenProject(string filename)
{
Debug.Assert(File.Exists(filename), @"The specified file path does not exist.");
m_project = Project.OpenProject(filename);
}
/// <summary>
/// Release all resource used by current instance of project
/// </summary>
public void CloseProject()
{
m_project.Dispose();
}
/// <summary>
/// Open project by specifying stream
/// </summary>
/// <param name="stream">project stream</param>
public void OpenProject(Stream stream)
{
Debug.Assert(Stream.Null != stream, @"The specified stream should not be nullable.");
m_project = Project.OpenProject(stream);
}
/// <summary>
/// Save a project to a file.
/// </summary>
/// <param name="filename">target file path</param>
public void SaveTo(string filename)
{
Debug.Assert(!string.IsNullOrEmpty(filename), @"The specified file path should not be nullable.");
Project.SaveTo(filename);
}
/// <summary>
/// Save a project to a stream.
/// </summary>
/// <param name="stream">target stream</param>
public void SaveTo(Stream stream)
{
Debug.Assert(Stream.Null != stream, @"The specified stream should not be nullable.");
Project.SaveTo(stream);
}
/// <summary>
/// Save a project as a file.
/// </summary>
/// <param name="filename">target file path</param>
public void SaveAs(string filename)
{
Debug.Assert(!string.IsNullOrEmpty(filename), @"The specified file path should not be nullable.");
Project.SaveAs(filename);
}
/// <summary>
/// Save a project as a stream.
/// </summary>
/// <param name="stream">target stream</param>
public void SaveAs(Stream stream)
{
Debug.Assert(Stream.Null != stream, @"The specified stream should not be nullable.");
Project.SaveAs(stream);
}
/// <summary>
/// Save the project
/// </summary>
public void Save()
{
Project.Save();
}
#endregion
}
/// <summary>
/// EzSourceDestinationProject is a project which contains a data flow package.
/// In the data flow package, the data flow only contains source and destination.
/// It will be inherited by specific project containing a data flow package.
/// </summary>
public class EzSourceDestinationProject : EzProject
{
#region Constructors & operator override
public EzSourceDestinationProject()
: base()
{ }
public EzSourceDestinationProject(string projectfile)
: base(projectfile)
{ }
public EzSourceDestinationProject(Project project)
: base(project)
{ }
/// <summary>
/// Override operator, in order to return an EzSourceDestinationProject from an project
/// </summary>
/// <param name="project">operand of Project object</param>
/// <returns>Return a EzSourceDestinationProject object</returns>
public static implicit operator EzSourceDestinationProject(Project project)
{
return new EzSourceDestinationProject(project);
}
/// <summary>
/// Override operator, in order to return a Project from an EzSourceDestinationProject
/// </summary>
/// <param name="project">operand of EzSourceDestinationProject object</param>
/// <returns>Return a Project object</returns>
public static implicit operator Project(EzSourceDestinationProject project)
{
return project.Project;
}
#endregion
/// <summary>
/// Add an source destionation package in project
/// </summary>
/// <typeparam name="SourceType">Source Adapter Type</typeparam>
/// <typeparam name="SourceConnectionType">Source Connection Manager Type</typeparam>
/// <typeparam name="TranformType">Tranform Component Type</typeparam>
/// <typeparam name="DestinationType">Destination Adapter Type</typeparam>
/// <typeparam name="DestinationConnectionType">Destination Connection Manager Type</typeparam>
/// <param name="source">source adapter</param>
/// <param name="srcconn">source connection manager</param>
/// <param name="destination">destination adapter</param>
/// <param name="destconn">destination connection manager</param>
/// <returns>package stream name</returns>
public string AddPackage<SourceType, SourceConnectionType, DestinationType, DestinationConnectionType>
(SourceType source,
SourceConnectionType srcconn,
DestinationType destination,
DestinationConnectionType destconn)
where SourceType : EzAdapter
where SourceConnectionType : EzConnectionManager
where DestinationType : EzAdapter
where DestinationConnectionType : EzConnectionManager
{
Debug.Assert(null != source, @"The source component could not be nullable.");
Debug.Assert(null != srcconn, @"The source connection could not be nullable.");
Debug.Assert(null != destination, @"The destination component could not be nullable.");
Debug.Assert(null != destconn, @"The destination connection could not be nullable.");
//construct a srouce destionation package
EzSrcDestPackage<SourceType, SourceConnectionType, DestinationType, DestinationConnectionType> package =
new EzSrcDestPackage<SourceType, SourceConnectionType, DestinationType, DestinationConnectionType>();
package.Source = source;
package.SrcConn = srcconn;
package.Dest = destination;
package.DestConn = destconn;
//Add this package in project
return AddPackage(package);
}
/// <summary>
/// Add an Ado.Net package in project
/// </summary>
/// <typeparam name="TransformType">Transform Component Type</typeparam>
/// <param name="server">source/destination server name</param>
/// <param name="database">source/destination database name</param>
/// <param name="srcsql">source sql command statement</param>
/// <param name="desttable">destination table name</param>
/// <returns>package stream name</returns>
public string AddAdoNetPackage(string server, string database, string srcsql, string desttable)
{
Debug.Assert(!string.IsNullOrEmpty(server), @"The server should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(database), @"The database should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcsql), @"The source sql command statement should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(desttable), @"The destination table should not be nullable.");
return AddAdoNetPackage(server, database, srcsql, server, database, desttable);
}
/// <summary>
/// Add an Ado.Net package in project
/// </summary>
/// <typeparam name="TransformType">Transform Component Type</typeparam>
/// <param name="srcserver">source server name</param>
/// <param name="srcdb">source database name</param>
/// <param name="srcsql">source sql command statment</param>
/// <param name="destserver">destination server name</param>
/// <param name="destdb">destination database name</param>
/// <param name="desttable">destination table name</param>
/// <returns>package stream name</returns>
public string AddAdoNetPackage(string srcserver, string srcdb, string srcsql,
string destserver, string destdb, string desttable)
{
Debug.Assert(!string.IsNullOrEmpty(srcserver), @"The source server could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcdb), @"The source database could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcsql), @"The source sql command statement could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(destserver), @"The destination server could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(destdb), @"The destination database could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(desttable), @"The destination table could not be nullable.");
//construct a package
EzSrcDestPackage<EzAdoNetSource, EzSqlAdoNetCM, EzAdoNetDestination, EzSqlAdoNetCM> package =
new EzSrcDestPackage<EzAdoNetSource, EzSqlAdoNetCM, EzAdoNetDestination, EzSqlAdoNetCM>();
package.SrcConn.SetConnectionString(srcserver, srcdb);
package.Source.SqlCommand = srcsql;
package.DestConn.SetConnectionString(destserver, destdb);
package.Dest.Table = desttable;
//add this package in project
return AddPackage(package);
}
/// <summary>
/// Add an Oledb source and destination package in project
/// </summary>
/// <typeparam name="TransformType">Transform Component Type</typeparam>
/// <param name="server">source/destination server name</param>
/// <param name="database">source/destination database name</param>
/// <param name="srcsql">source sql command statement</param>
/// <param name="transform">tranform component</param>
/// <param name="desttable">destination table name</param>
/// <returns>package stream name</returns>
public string AddOleDbPackage<TransformType>(string server, string database, string srcsql, string desttable)
where TransformType : EzComponent
{
Debug.Assert(!string.IsNullOrEmpty(server), @"The server should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(database), @"The database should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcsql), @"The source sql command statement should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(desttable), @"The destination table should not be nullable.");
return AddOleDbPackage(server, database, srcsql, server, database, desttable);
}
/// <summary>
/// Add an Oledb Source and destiantion package in project
/// </summary>
/// <typeparam name="TransformType">Transform Component Type</typeparam>
/// <param name="srcserver">source server name</param>
/// <param name="srcdb">source database name</param>
/// <param name="srcsql">source sql command statment</param>
/// <param name="destserver">destination server name</param>
/// <param name="destdb">destination database name</param>
/// <param name="desttable">destination table name</param>
/// <returns>package stream name</returns>
public string AddOleDbPackage(string srcserver, string srcdb, string srcsql,
string destserver, string destdb, string desttable)
{
Debug.Assert(!string.IsNullOrEmpty(srcserver), @"The source server could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcdb), @"The source database could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcsql), @"The source sql command statement could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(destserver), @"The destination server could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(destdb), @"The destination database could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(desttable), @"The destination table could not be nullable.");
//construct a transform package
EzSrcDestPackage<EzOleDbSource, EzSqlOleDbCM, EzOleDbDestination, EzSqlOleDbCM> package =
new EzSrcDestPackage<EzOleDbSource, EzSqlOleDbCM, EzOleDbDestination, EzSqlOleDbCM>();
package.SrcConn.SetConnectionString(srcserver, srcdb);
package.Source.SqlCommand = srcsql;
package.DestConn.SetConnectionString(destserver, destdb);
package.Dest.Table = desttable;
//add this package in project
return AddPackage(package);
}
/// <summary>
/// Add an oledb source and flat file destination package in project
/// </summary>
/// <param name="srcserver">source server name</param>
/// <param name="srcdb">source database name</param>
/// <param name="srcsql">source sql command statment</param>
/// <param name="file">destination flat file</param>
/// <returns>package stream name</returns>
public string AddOleDbToFilePackage(string srcserver, string srcdb, string srcsql, string destfile)
{
Debug.Assert(!string.IsNullOrEmpty(srcserver), @"The source server could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcdb), @"The source database could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcsql), @"The source sql command statement could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(destfile), @"The destination file could not be nullable.");
EzSrcDestPackage<EzOleDbSource, EzSqlOleDbCM, EzFlatFileDestination, EzFlatFileCM> package =
new EzSrcDestPackage<EzOleDbSource, EzSqlOleDbCM, EzFlatFileDestination, EzFlatFileCM>();
package.SrcConn.SetConnectionString(srcserver, srcdb);
package.Source.SqlCommand = srcsql;
package.DestConn.ConnectionString = destfile;
package.Dest.Overwrite = true;
package.Dest.DefineColumnsInCM();
return AddPackage(package);
}
/// <summary>
/// Add a flat file source and oledb destination package in project
/// </summary>
/// <param name="srcfile">source flat file</param>
/// <param name="destserver">destination server name</param>
/// <param name="destdb">destination database name</param>
/// <param name="desttable">destination table name</param>
/// <returns>package stream name</returns>
public string AddFlatFileToOleDbPackage<TransformType>(string srcfile, string destserver, string destdb, string desttable)
{
Debug.Assert(!string.IsNullOrEmpty(srcfile), @"The source file could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(destserver), @"The destination server could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(destdb), @"The destination database could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(desttable), @"The destination table could not be nullable.");
EzSrcDestPackage<EzFlatFileSource, EzFlatFileCM, EzOleDbDestination, EzSqlOleDbCM> package =
new EzSrcDestPackage<EzFlatFileSource, EzFlatFileCM, EzOleDbDestination, EzSqlOleDbCM>();
package.SrcConn.ConnectionString = srcfile;
package.DestConn.SetConnectionString(destserver, destdb);
package.Dest.Table = desttable;
return AddPackage(package);
}
}
/// <summary>
/// EzTransformProject is a project type which contains a transform package,
/// it provides the overrided methods to add transform pacakges.
/// </summary>
public class EzTransformProject : EzProject
{
#region constructor & operator override
public EzTransformProject()
: base()
{ }
public EzTransformProject(string projectfile)
: base(projectfile)
{ }
public EzTransformProject(Project project) : base(project) { }
/// <summary>
/// Override operator, in order to return an EzTransformProject from an project
/// </summary>
/// <param name="project">operand of Project object</param>
/// <returns>Return a EzTransformProject object</returns>
public static implicit operator EzTransformProject(Project project)
{
return new EzTransformProject(project);
}
/// <summary>
/// Override operator, in order to return a Project from an EzTransformProject
/// </summary>
/// <param name="project">operand of EzTransformProject object</param>
/// <returns>Return a Project object</returns>
public static implicit operator Project(EzTransformProject project)
{
return project.Project;
}
#endregion
/// <summary>
/// Add an tranform package in project
/// </summary>
/// <typeparam name="SourceType">Source Adapter Type</typeparam>
/// <typeparam name="SourceConnectionType">Source Connection Manager Type</typeparam>
/// <typeparam name="TranformType">Tranform Component Type</typeparam>
/// <typeparam name="DestinationType">Destination Adapter Type</typeparam>
/// <typeparam name="DestinationConnectionType">Destination Connection Manager Type</typeparam>
/// <param name="source">source adapter</param>
/// <param name="srcconn">source connection manager</param>
/// <param name="transform">tranform component</param>
/// <param name="destination">destination adapter</param>
/// <param name="destconn">destination connection manager</param>
/// <returns>package stream name</returns>
public string AddPackage<SourceType, SourceConnectionType, TranformType, DestinationType, DestinationConnectionType>
(SourceType source,
SourceConnectionType srcconn,
TranformType transform,
DestinationType destination,
DestinationConnectionType destconn)
where SourceType : EzAdapter
where SourceConnectionType : EzConnectionManager
where TranformType : EzComponent
where DestinationType : EzAdapter
where DestinationConnectionType : EzConnectionManager
{
Debug.Assert(null != source, @"The source component could not be nullable.");
Debug.Assert(null != srcconn, @"The source connection could not be nullable.");
Debug.Assert(null != transform, @"The transform component could not be nullable.");
Debug.Assert(null != destination, @"The destination component could not be nullable.");
Debug.Assert(null != destconn, @"The destination connection could not be nullable.");
//construct a transform package
EzTransformPackage<SourceType, SourceConnectionType, TranformType, DestinationType, DestinationConnectionType> package =
new EzTransformPackage<SourceType, SourceConnectionType, TranformType, DestinationType, DestinationConnectionType>();
package.Source = source;
package.SrcConn = srcconn;
package.Transform = transform;
package.Dest = destination;
package.DestConn = destconn;
//Add this package in project
return AddPackage(package);
}
/// <summary>
/// Add an Ado.Net package in project
/// </summary>
/// <typeparam name="TransformType">Transform Component Type</typeparam>
/// <param name="server">source/destination server name</param>
/// <param name="database">source/destination database name</param>
/// <param name="srcsql">source sql command statement</param>
/// <param name="transform">tranform component</param>
/// <param name="desttable">destination table name</param>
/// <returns>package stream name</returns>
public string AddAdoNetPackage<TransformType>(string server, string database, string srcsql,
TransformType transform, string desttable)
where TransformType : EzComponent
{
Debug.Assert(!string.IsNullOrEmpty(server), @"The server should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(database), @"The database should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcsql), @"The source sql command statement should not be nullable.");
Debug.Assert(null != transform, @"The transform component should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(desttable), @"The destination table should not be nullable.");
return AddAdoNetPackage<TransformType>(server, database, srcsql, transform, server, database, desttable);
}
/// <summary>
/// Add an Ado.Net package in project
/// </summary>
/// <typeparam name="TransformType">Transform Component Type</typeparam>
/// <param name="srcserver">source server name</param>
/// <param name="srcdb">source database name</param>
/// <param name="srcsql">source sql command statment</param>
/// <param name="transform">transform component</param>
/// <param name="destserver">destination server name</param>
/// <param name="destdb">destination database name</param>
/// <param name="desttable">destination table name</param>
/// <returns>package stream name</returns>
public string AddAdoNetPackage<TransformType>(string srcserver, string srcdb, string srcsql,
TransformType transform, string destserver, string destdb, string desttable)
where TransformType : EzComponent
{
Debug.Assert(!string.IsNullOrEmpty(srcserver), @"The source server could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcdb), @"The source database could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcsql), @"The source sql command statement could not be nullable.");
Debug.Assert(null != transform, @"The transform component could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(destserver), @"The destination server could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(destdb), @"The destination database could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(desttable), @"The destination table could not be nullable.");
//construct a transform package
EzTransformPackage<EzAdoNetSource, EzSqlAdoNetCM, TransformType, EzAdoNetDestination, EzSqlAdoNetCM> package =
new EzTransformPackage<EzAdoNetSource, EzSqlAdoNetCM, TransformType, EzAdoNetDestination, EzSqlAdoNetCM>();
package.SrcConn.SetConnectionString(srcserver, srcdb);
package.Source.SqlCommand = srcsql;
package.Transform = transform;
package.DestConn.SetConnectionString(destserver, destdb);
package.Dest.Table = desttable;
//add this package in project
return AddPackage(package);
}
/// <summary>
/// Add an Oledb source and destination package with transform in project
/// </summary>
/// <typeparam name="TransformType">Transform Component Type</typeparam>
/// <param name="server">source/destination server name</param>
/// <param name="database">source/destination database name</param>
/// <param name="srcsql">source sql command statement</param>
/// <param name="transform">tranform component</param>
/// <param name="desttable">destination table name</param>
/// <returns>package stream name</returns>
public string AddOleDbPackage<TransformType>(string server, string database, string srcsql,
TransformType transform, string desttable)
where TransformType : EzComponent
{
Debug.Assert(!string.IsNullOrEmpty(server), @"The server should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(database), @"The database should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcsql), @"The source sql command statement should not be nullable.");
Debug.Assert(null != transform, @"The transform component should not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(desttable), @"The destination table should not be nullable.");
return AddOleDbPackage<TransformType>(server, database, srcsql, transform, server, database, desttable);
}
/// <summary>
/// Add an Oledb Source and destiantion package with transform in project
/// </summary>
/// <typeparam name="TransformType">Transform Component Type</typeparam>
/// <param name="srcserver">source server name</param>
/// <param name="srcdb">source database name</param>
/// <param name="srcsql">source sql command statment</param>
/// <param name="transform">transform component</param>
/// <param name="destserver">destination server name</param>
/// <param name="destdb">destination database name</param>
/// <param name="desttable">destination table name</param>
/// <returns>package stream name</returns>
public string AddOleDbPackage<TransformType>(string srcserver, string srcdb, string srcsql,
TransformType transform, string destserver, string destdb, string desttable)
where TransformType : EzComponent
{
Debug.Assert(!string.IsNullOrEmpty(srcserver), @"The source server could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcdb), @"The source database could not be nullable.");
Debug.Assert(!string.IsNullOrEmpty(srcsql), @"The source sql command statement could not be nullable.");
Debug.Assert(null != transform, @"The transform component could not be nullable.");