-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeGenerator.cs
More file actions
1385 lines (1100 loc) · 52.7 KB
/
CodeGenerator.cs
File metadata and controls
1385 lines (1100 loc) · 52.7 KB
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
#region using statements
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DataJuggler.Net5;
using DataJuggler.UltimateHelper;
using DataJuggler.UltimateHelper.Objects;
using System.IO;
#endregion
namespace DataJuggler.Excelerate
{
#region class CodeGenerator
/// <summary>
/// This class is used to code generate classes based on the columns from an Excel worksheet
/// </summary>
public class CodeGenerator : CSharpClassWriter
{
#region Private Variables
private Worksheet worksheet;
private string outputFolder;
private string className;
private const string RowId = "RowId";
#endregion
#region Constructor
/// <summary>
/// Create a new instance of a CodeGenerator object
/// </summary>
public CodeGenerator(Worksheet worksheet, string outputFolder, string className): base(false)
{
// Store the args
Worksheet = worksheet;
OutputFolder = outputFolder;
ClassName = className;
// Added so that the name comes out [className].cs
DoNotPrependExtension = true;
// At this point not using partial classes, not ruling it out for later
DoNotUsePartialClass = true;
}
#endregion
#region Methods
#region AddLoadListMethod(ref StringBuilder sb)
/// <summary>
/// This method writes out a Load method that loads a list of objects
/// </summary>
public void AddLoadMethod(ref StringBuilder sb)
{
// locals
string indent = TextHelper.Indent(12);
string indent2 = TextHelper.Indent(16);
string indent3 = TextHelper.Indent(20);
string indent4 = TextHelper.Indent(24);
string indent5 = TextHelper.Indent(28);
// Add a blank line
sb.Append(Environment.NewLine);
// Add a region
sb.Append(indent);
sb.Append("#region Load(Worksheet worksheet)");
sb.Append(Environment.NewLine);
// Now add the method summary
// Summary Line 1
sb.Append(indent);
sb.Append("/// <summary>");
sb.Append(Environment.NewLine);
// Summary Line 2
sb.Append(indent);
sb.Append("/// This method loads a list of " + ClassName + " objects from a Worksheet.");
sb.Append(Environment.NewLine);
// Summary Line 3
sb.Append(indent);
sb.Append("/// </Summary>");
sb.Append(Environment.NewLine);
// Add the param comment
sb.Append(indent);
sb.Append("/// <param name=\"worksheet\">The worksheet which the rows collection will be used to load a list of " + ClassName + " objects.</param>");
sb.Append(Environment.NewLine);
// Now add the indent
sb.Append(indent);
// Set the methodDeclarationLine
string methodDeclarationLine = "public static List<" + ClassName + "> Load(Worksheet worksheet)";
// Add this line
sb.Append(methodDeclarationLine);
// Add a new line
sb.Append(Environment.NewLine);
// Now add the method
sb.Append(indent);
// Add an open bracket
sb.Append('{');
// Add a new line
sb.Append(Environment.NewLine);
// Add a comment
sb.Append(indent2);
sb.Append("// Initial value");
sb.Append(Environment.NewLine);
// get a lower case variable name
string variableName = TextHelper.CapitalizeFirstChar(ClassName, true);
string listName = variableName + "List";
// Create the return value
sb.Append(indent2);
sb.Append("List<");
sb.Append(ClassName);
sb.Append("> ");
sb.Append(listName);
sb.Append(" = new List<");
sb.Append(ClassName);
sb.Append(">();");
sb.Append(Environment.NewLine);
// add a blank line
sb.Append(indent2);
sb.Append(Environment.NewLine);
// write out the null test
sb.Append(indent2);
// Add this
sb.Append("// If the worksheet exists and the row's collection exists");
sb.Append(Environment.NewLine);
// Add a check for the column
sb.Append(indent2);
// create the ifLine
sb.Append("if ((NullHelper.Exists(worksheet)) && (worksheet.HasRows))");
// Add a new line here
sb.Append(Environment.NewLine);
// Add an open paren
sb.Append(indent2);
sb.Append('{');
// Add a new line
sb.Append(Environment.NewLine);
// add comment
sb.Append(indent3);
sb.Append("// Iterate the worksheet.Rows collection");
sb.Append(Environment.NewLine);
// now iterate
sb.Append(indent3);
sb.Append("foreach (Row row in worksheet.Rows)");
sb.Append(Environment.NewLine);
// add the open paren
sb.Append(indent3);
sb.Append("{");
sb.Append(Environment.NewLine);
// add comment for is not header row and the column's collection exists
sb.Append(indent4);
sb.Append("// If the row is not a HeaderRow and row's column collection exists");
sb.Append(Environment.NewLine);
// add the test
sb.Append(indent4);
// write if this is not a HeaderRow and the row's columns exist
sb.Append("if ((!row.IsHeaderRow) && (row.HasColumns))");
sb.Append(Environment.NewLine);
// add the open paren
sb.Append(indent4);
sb.Append("{");
sb.Append(Environment.NewLine);
// now the load
// write the comment for create new insteance
sb.Append(indent5);
if (TextHelper.StartsWithAVowel(ClassName))
{
// use an
sb.Append("// Create a new instance of an ");
}
else
{
// use an
sb.Append("// Create a new instance of a ");
}
// resume comment
sb.Append(ClassName);
sb.Append(" object.");
sb.Append(Environment.NewLine);
// now instatiate the new object
sb.Append(indent5);
sb.Append(ClassName);
sb.Append(" ");
sb.Append(variableName);
sb.Append(" = new ");
sb.Append(ClassName);
sb.Append("();");
sb.Append(Environment.NewLine);
// write a blank line
sb.Append(indent5);
sb.Append(Environment.NewLine);
// Now write the load comment
sb.Append(indent5);
sb.Append("// Load this object");
sb.Append(Environment.NewLine);
// now perform the load
sb.Append(indent5);
sb.Append(variableName);
sb.Append(".Load(row);");
sb.Append(Environment.NewLine);
// write a blank line
sb.Append(indent5);
sb.Append(Environment.NewLine);
// write a comment for add to list
sb.Append(indent5);
sb.Append("// Add this object to the list");
sb.Append(Environment.NewLine);
// now write the line to add this object
sb.Append(indent5);
sb.Append(listName);
sb.Append(".Add(");
sb.Append(variableName);
sb.Append(");");
sb.Append(Environment.NewLine);
// add the close paren
sb.Append(indent4);
sb.Append("}");
sb.Append(Environment.NewLine);
// add the close paren
sb.Append(indent3);
sb.Append("}");
sb.Append(Environment.NewLine);
// Add a closing bracket
sb.Append(indent2);
sb.Append('}');
sb.Append(Environment.NewLine);
// add a blank line
sb.Append(indent2);
sb.Append(Environment.NewLine);
// now write a comment for the return value
sb.Append(indent2);
sb.Append("// return value");
sb.Append(Environment.NewLine);
// now write out the return value
sb.Append(indent2);
sb.Append("return ");
sb.Append(listName);
sb.Append(";");
sb.Append(Environment.NewLine);
// Add indent
sb.Append(indent);
// Add a closing bracket
sb.Append('}');
// Add a new line
sb.Append(Environment.NewLine);
// Add the endregion
sb.Append(indent);
sb.Append("#endregion");
sb.Append(Environment.NewLine);
}
#endregion
#region AddLoadMethod(Row row, ref StringBuilder sb)
/// <summary>
/// This method Add Load Method
/// </summary>
public void AddLoadMethod(Row row, ref StringBuilder sb)
{
// locals
int columnIndex = -1;
string indent = TextHelper.Indent(12);
string indent2 = TextHelper.Indent(16);
string indent3 = TextHelper.Indent(20);
// Add a blank line
sb.Append(Environment.NewLine);
// Add a region
sb.Append(indent);
sb.Append("#region Load(Row row)");
sb.Append(Environment.NewLine);
// Now add the method summary
// Summary Line 1
sb.Append(indent);
sb.Append("/// <summary>");
sb.Append(Environment.NewLine);
// Summary Line 2
sb.Append(indent);
sb.Append("/// This method loads a " + ClassName + " object from a Row.");
sb.Append(Environment.NewLine);
// Summary Line 3
sb.Append(indent);
sb.Append("/// </Summary>");
sb.Append(Environment.NewLine);
// Add the param comment
sb.Append(indent);
sb.Append("/// <param name=\"row\">The row which the row.Columns[x].ColumnValue will be used to load this object.</param>");
sb.Append(Environment.NewLine);
// Now add the indent
sb.Append(indent);
// Set the methodDeclarationLine
string methodDeclarationLine = "public void Load(Row row)";
// Add this line
sb.Append(methodDeclarationLine);
// Add a new line
sb.Append(Environment.NewLine);
// Now add the method
sb.Append(indent);
// Add an open bracket
sb.Append('{');
// Add a new line
sb.Append(Environment.NewLine);
// Add a comment
sb.Append(indent2);
// Add this
sb.Append("// If the row exists and the row's column collection exists");
sb.Append(Environment.NewLine);
// Add a check for the column
sb.Append(indent2);
// create the ifLine
sb.Append("if ((NullHelper.Exists(row)) && (row.HasColumns))");
// Add a new line here before the paren
sb.Append(Environment.NewLine);
// Add an open paren
sb.Append(indent2);
sb.Append('{');
// Add a new line
sb.Append(Environment.NewLine);
// Create DataFields for each column
foreach (Column column in row.Columns)
{
// if the ColumnName Exists
if ((column.HasColumnName) && (column.ColumnName != RowId))
{
// Increment the value for columnIndex
columnIndex++;
// Now add the indent3 (8 spaces extra)
sb.Append(indent3);
// Set the Column Name (Property Name)
sb.Append(column.ColumnName);
// Set Equals
sb.Append(" = ");
// if Decimal, must cast as a double
if (column.DataType == DataManager.DataTypeEnum.Decimal)
{
// Cast as a double
sb.Append("(double) ");
}
// add the start of this column
sb.Append("row.Columns[");
// add the index
sb.Append(columnIndex);
// determine the action by the DataType
switch (column.DataType)
{
case DataManager.DataTypeEnum.Integer:
// Set the value
sb.Append("].IntValue;");
// required
break;
case DataManager.DataTypeEnum.Decimal:
// Set the value
sb.Append("].DecimalValue;");
// required
break;
case DataManager.DataTypeEnum.DateTime:
// Set the value
sb.Append("].DateValue;");
// required
break;
case DataManager.DataTypeEnum.String:
// Set the value
sb.Append("].StringValue;");
// required
break;
case DataManager.DataTypeEnum.Boolean:
// Set the value
sb.Append("].BoolValue;");
// required
break;
case DataManager.DataTypeEnum.Guid:
// Set the value
sb.Append("].GuidValue;");
// required
break;
default:
// Set the value
sb.Append("].ColumnValue;");
// required
break;
}
// Add a new line
sb.Append(Environment.NewLine);
}
}
// Add a closing bracket
sb.Append(indent2);
sb.Append('}');
sb.Append(Environment.NewLine);
// Add an extra blank line
sb.Append(Environment.NewLine);
// Add a comment for the RowId
sb.Append(indent2);
sb.Append("// Set RowId");
sb.Append(Environment.NewLine);
// add RowId
sb.Append(indent2);
sb.Append("RowId = row.Id;");
sb.Append(Environment.NewLine);
// Add indent
sb.Append(indent);
// Add a closing bracket
sb.Append('}');
// Add a new line
sb.Append(Environment.NewLine);
// Add the endregion
sb.Append(indent);
sb.Append("#endregion");
sb.Append(Environment.NewLine);
}
#endregion
#region AddNewRowMethod(Row row, ref StringBuilder sb)
/// <summary>
/// This method Adds a NewRow method, so that new records can be inserted.
/// </summary>
public void AddNewRowMethod(Row row, ref StringBuilder sb)
{
// locals
string indent = " ";
string indent2 = " ";
// Add a blank line
sb.Append(Environment.NewLine);
// Add a region
sb.Append(indent);
sb.Append("#region NewRow(Row row)");
sb.Append(Environment.NewLine);
// Now add the method summary
// Summary Line 1
sb.Append(indent);
sb.Append("/// <summary>");
sb.Append(Environment.NewLine);
// Summary Line 2
sb.Append(indent);
sb.Append("/// This method creates the columns for the row ");
sb.Append("to save a new ");
sb.Append(ClassName);
sb.Append(" object.");
sb.Append(Environment.NewLine);
// Summary Line 3
sb.Append(indent);
sb.Append("/// </Summary>");
sb.Append(Environment.NewLine);
// Add the param comment
sb.Append(indent);
sb.Append("/// <param name=\"row\">The row which the Columns will be created for.</param>");
sb.Append(Environment.NewLine);
// Now add the indent
sb.Append(indent);
// Set the methodDeclarationLine
string methodDeclarationLine = "public static Row NewRow(int rowNumber)";
// Add this line
sb.Append(methodDeclarationLine);
// Add a new line
sb.Append(Environment.NewLine);
// Now add the method
sb.Append(indent);
// Add an open bracket
sb.Append('{');
// Add a new line
sb.Append(Environment.NewLine);
// method body starts here
// Comment for the new row
sb.Append(indent2);
sb.Append("// initial value");
sb.Append(Environment.NewLine);
// line to create the new row
sb.Append(indent2);
sb.Append("Row newRow = new Row();");
sb.Append(Environment.NewLine);
// Add a blank line
sb.Append(Environment.NewLine);
if ((NullHelper.Exists(row)) && (row.HasColumns))
{
// Iterate the collection of Column objects
foreach (Column column in row.Columns)
{
// I don't think the RowId column needs to be created here
if (column.ColumnName != RowId)
{
// the first column doesn't need a blank line before it
if (column.ColumnNumber > 1)
{
// Add a new line here
sb.Append(Environment.NewLine);
}
// write comment create column
sb.Append(indent2);
sb.Append("// Create Column");
sb.Append(Environment.NewLine);
// Create the column
string variableName = TextHelper.CapitalizeFirstChar(column.ColumnName, true) + "Column";
string columnLine = indent2 + "Column " + variableName + " = new Column(";
sb.Append(columnLine);
// column name must be enclosed in quotes
sb.Append('"');
sb.Append(column.ColumnName);
// column name must be enclosed in quotes
sb.Append('"');
sb.Append(", ");
sb.Append("rowNumber, ");
sb.Append(column.ColumnNumber);
sb.Append(", DataManager.DataTypeEnum.");
sb.Append(column.DataType);
sb.Append(");");
sb.Append(Environment.NewLine);
// add an extra blank line
sb.Append(Environment.NewLine);
// add comment
sb.Append(indent2);
sb.Append("// Add this column");
sb.Append(Environment.NewLine);
sb.Append(indent2);
sb.Append("newRow.Columns.Add(");
sb.Append(variableName);
sb.Append(");");
sb.Append(Environment.NewLine);
}
}
// add a blank line
sb.Append(Environment.NewLine);
// Add a comment
sb.Append(indent2);
sb.Append("// return value");
sb.Append(Environment.NewLine);
sb.Append(indent2);
sb.Append("return newRow;");
sb.Append(Environment.NewLine);
}
// method body ends here
// Add indent
sb.Append(indent);
// Add a closing bracket
sb.Append('}');
// Add a new line
sb.Append(Environment.NewLine);
// Add the endregion
sb.Append(indent);
sb.Append("#endregion");
sb.Append(Environment.NewLine);
}
#endregion
#region AddSaveMethod(Row row, ref StringBuilder sb)
/// <summary>
/// This method Adds a Save Method
/// </summary>
public void AddSaveMethod(Row row, ref StringBuilder sb)
{
// locals
int columnIndex = -1;
string indent = " ";
string indent2 = " ";
string indent3 = " ";
// Add a blank line
sb.Append(Environment.NewLine);
// Add a region
sb.Append(indent);
sb.Append("#region Save(Row row)");
sb.Append(Environment.NewLine);
// Now add the method summary
// Summary Line 1
sb.Append(indent);
sb.Append("/// <summary>");
sb.Append(Environment.NewLine);
// Summary Line 2
sb.Append(indent);
sb.Append("/// This method saves a " + ClassName + " object back to a Row.");
sb.Append(Environment.NewLine);
// Summary Line 3
sb.Append(indent);
sb.Append("/// </Summary>");
sb.Append(Environment.NewLine);
// Add the param comment
sb.Append(indent);
sb.Append("/// <param name=\"row\">The row which the row.Columns[x].ColumnValue will be set to Save back to Excel.</param>");
sb.Append(Environment.NewLine);
// Now add the indent
sb.Append(indent);
// Set the methodDeclarationLine
string methodDeclarationLine = "public Row Save(Row row)";
// Add this line
sb.Append(methodDeclarationLine);
// Add a new line
sb.Append(Environment.NewLine);
// Now add the method
sb.Append(indent);
// Add an open bracket
sb.Append('{');
// Add a new line
sb.Append(Environment.NewLine);
// Add a comment
sb.Append(indent2);
// Add this
sb.Append("// If the row exists and the row's column collection exists");
sb.Append(Environment.NewLine);
// Add a check for the column
sb.Append(indent2);
// create the ifLine
sb.Append("if ((NullHelper.Exists(row)) && (row.HasColumns))");
// Add a new line here before the paren
sb.Append(Environment.NewLine);
// Add an open paren
sb.Append(indent2);
sb.Append('{');
// Add a new line
sb.Append(Environment.NewLine);
// Create DataFields for each column
foreach (Column column in row.Columns)
{
// if the ColumnName Exists
if ((column.HasColumnName) && (column.ColumnName != RowId))
{
// Increment the value for columnIndex
columnIndex++;
// Now add the indent3 (8 spaces extra)
sb.Append(indent3);
// Set the columnValue
sb.Append("row.Columns[");
// add the columnIndex
sb.Append(columnIndex);
// Append '].ColumnValue = '
sb.Append("].ColumnValue = ");
// Set the Column Name (Property Name)
sb.Append(column.ColumnName);
// Append closing semicolon
sb.Append(";");
// Add a new line
sb.Append(Environment.NewLine);
}
}
// Add a closing bracket
sb.Append(indent2);
sb.Append('}');
sb.Append(Environment.NewLine);
// Add a new line
sb.Append(Environment.NewLine);
// write a comment
sb.Append(indent2);
sb.Append("// return value");
sb.Append(Environment.NewLine);
// write the return value row
sb.Append(indent2);
sb.Append("return row;");
sb.Append(Environment.NewLine);
// Add indent
sb.Append(indent);
// Add a closing bracket
sb.Append('}');
// Add a new line
sb.Append(Environment.NewLine);
// Add the endregion
sb.Append(indent);
sb.Append("#endregion");
sb.Append(Environment.NewLine);
}
#endregion
#region AttemptToDetermineDataType(int columnIndex)
/// <summary>
/// This method returns the To Determine Data Type
/// </summary>
/// <param name="fieldName">The fieldName is only needed here for debugging.</param>
/// <param name="defaultDataType"></param>
/// <param name="columnIndex">This is the 0 based index of this column in a DataJuggler.Excelerate.Row.Columns.
/// This is not to be confused with a 1 based Excel Column. Be aware this index is 1 less than the Column Number
/// field using EPPPlus / Excel.
/// </param>
public DataManager.DataTypeEnum AttemptToDetermineDataType(string fieldName, int columnIndex, DataManager.DataTypeEnum defaultDataType = DataManager.DataTypeEnum.Object)
{
// initial value (use object or string is probably best)
DataManager.DataTypeEnum dataType = defaultDataType;
// locals
string temp = "";
int tempInt = 0;
Decimal tempDecimal = 0;
DateTime? tempDate = new DateTime();
int maxToLookAt = 50;
int lookedAt = 0;
// If the worksheet object exists
if ((NullHelper.Exists(worksheet)) && (ListHelper.HasOneOrMoreItems(worksheet.Rows)) && (TextHelper.Exists(fieldName)))
{
// get a lowercase version of the fieldName
fieldName = fieldName.ToLower();
for (int x = 1; x < worksheet.Rows.Count; x++)
{
// get the value in this position
temp = worksheet.Rows[x].Columns[columnIndex].ColumnText;
// If the temp string exists, and this is not a 0, 0's are hard to tell anything from
if ((temp != "0") && (temp != "0.00"))
{
// get the values
tempInt = worksheet.Rows[x].Columns[columnIndex].IntValue;
tempDecimal = worksheet.Rows[x].Columns[columnIndex].DecimalValue;
tempDate = worksheet.Rows[x].Columns[columnIndex].DateValue;
// if true or false
if ((temp.ToLower() == "true") || (temp.ToLower() == "false"))
{
// this is a boolean
dataType = DataManager.DataTypeEnum.Boolean;
// break
break;
}
else if (fieldName == "active")
{
// hard coding Active as boolean, because I need it for the Demo and Active usually is a boolean
// this is a boolean
dataType = DataManager.DataTypeEnum.Boolean;
// break
break;
}
else if ((fieldName == "zip") || (fieldName == "zipcode") || (fieldName == "postal") || (fieldName == "postalcode"))
{
// this is a string, not an int
dataType = DataManager.DataTypeEnum.String;
// break out
break;
}
else
{
// if a column starts with preceding zeros, and it is a number I am counting this as string
if ((temp.StartsWith("0")) && ((tempInt != 0) || (tempDecimal != 0)))
{
// Set to string
dataType = DataManager.DataTypeEnum.String;
// break out of the loop
break;
}
// if this is a number
if ((tempInt != 0) || (tempDecimal != 0))
{
// if the string contains a decimal point
if (temp.Contains("."))
{
// Use Decimal
dataType = DataManager.DataTypeEnum.Decimal;
// break out
break;
}
else
{
// Use Integer, but keep looking
dataType = DataManager.DataTypeEnum.Integer;
}
}
else if ((tempDate.HasValue) && (tempDate.Value.Year > 1900))
{
// Use Date
dataType = DataManager.DataTypeEnum.DateTime;
// once we determine we used DateTime, break out of loop
break;
}
else
{
// Use String
dataType = DataManager.DataTypeEnum.String;
// exit loop
break;
}
}
// Increment the value for lookedAt
lookedAt++;
// if we have looked at enough
if (lookedAt > maxToLookAt)
{
// break out of the loop
break;
}
}
}
}
// return value
return dataType;
}
#endregion
#region GenerateClassFromWorksheet(string namespaceName, bool appendPartialGuid = true)
/// <summary>
/// This method returns a Class From the Worksheet supplied in the Constructor.
/// The Worksheet must have a HeaderRow for the top row.
/// </summary>
public CodeGenerationResponse GenerateClassFromWorksheet(string namespaceName, bool appendPartialGuidToFileNameForUniquenessInFolder = true)
{
// initial value
CodeGenerationResponse response = new CodeGenerationResponse();
// locals
int columnIndex = -1;
int lineNumber = 0;
// if the value for IsValid is true (means there is a worksheet and it has at least one row)
if (IsValid)
{
// Get the first row
Row row = worksheet.Rows[0];
// if the row exists
if (ListHelper.HasOneOrMoreItems(row.Columns))
{
// Update 10.31.2021: Creating a column to hold the RowId
Column rowIdColumn = new Column();
// Set the rowId
rowIdColumn.ColumnName = RowId;