-
Notifications
You must be signed in to change notification settings - Fork 1
/
CommandLine.vb
1040 lines (707 loc) · 33.6 KB
/
CommandLine.vb
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
Option Explicit On
''' <summary>
''' コマンドラインの機能を提供する
''' </summary>
''' <remarks>
''' ※処理タイプの判断基準
''' ①ヘルプキーワードが存在したらヘルプ処理
''' ②フォルダパスが取得できたらコマンド処理
''' ③フォルダパスを取得出来なかったら通常処理
''' </remarks>
Public Class CommandLine
#Region "定数"
''' <summary>コマンドライン引数のキーワードを提供する</summary>
''' <remarks></remarks>
Public Class cKeyWords
''' <summary>ヘルプキーワード</summary>
''' <remarks></remarks>
Public Const Help As String = "/?"
''' <summary>フォームタイプキーワード</summary>
''' <remarks></remarks>
Public Const Form As String = "/Form"
''' <summary>出力形式キーワード</summary>
''' <remarks></remarks>
Public Const Output As String = "/Output"
''' <summary>拡張子キーワード</summary>
''' <remarks></remarks>
Public Const Extension As String = "/Extension"
''' <summary>実行タイプキーワード</summary>
''' <remarks></remarks>
Public Const Execute As String = "/Execute"
''' <summary>最大表示ファイル数キーワード</summary>
''' <remarks>リスト表示フォームの1ページ内の最大表示ファイル数</remarks>
Public Const PageSize As String = "/PageSize"
End Class
''' <summary>出力文字列フォーム対象拡張子リスト</summary>
''' <remarks></remarks>
Public Shared cTextFormExtensionList As New ArrayList From {OutputFileFormat.TXT, OutputFileFormat.HTML}
''' <summary>リスト表示フォーム対象拡張子リスト</summary>
''' <remarks></remarks>
Public Shared cListFormExtensionList As New ArrayList From {OutputFileFormat.CSV, OutputFileFormat.TSV, OutputFileFormat.HTML}
#End Region
#Region "列挙体"
''' <summary>フォームの種類</summary>
''' <remarks></remarks>
Public Enum FormType
''' <summary>フォルダファイルリストの出力文字列を表示するフォーム</summary>
''' <remarks></remarks>
Text
''' <summary>フォルダファイルリストをGridViewに表示するフォーム</summary>
''' <remarks></remarks>
List
End Enum
''' <summary>出力形式タイプ</summary>
''' <remarks></remarks>
Public Enum OutputType
''' <summary>指定なし</summary>
''' <remarks></remarks>
None
''' <summary>クリップボードにコピー</summary>
''' <remarks></remarks>
ClipBoard
''' <summary>名前を付けて保存ダイアログ</summary>
''' <remarks></remarks>
SaveDialog
End Enum
''' <summary>実行タイプ</summary>
''' <remarks></remarks>
Public Enum ExecuteType
''' <summary>実行しない</summary>
''' <remarks></remarks>
None
''' <summary>実行する</summary>
''' <remarks></remarks>
Run
End Enum
''' <summary>処理タイプ</summary>
''' <remarks></remarks>
Public Enum ProcessType
''' <summary>通常処理</summary>
''' <remarks></remarks>
Normarl
''' <summary>コマンド処理</summary>
''' <remarks></remarks>
Command
''' <summary>ヘルプ処理</summary>
''' <remarks></remarks>
Help
End Enum
''' <summary>ファイルの出力形式</summary>
''' <remarks></remarks>
Public Enum OutputFileFormat
''' <summary>HTML</summary>
''' <remarks></remarks>
HTML
''' <summary>TEXT</summary>
''' <remarks></remarks>
TXT
''' <summary>CSV</summary>
''' <remarks></remarks>
CSV
''' <summary>TSV</summary>
''' <remarks></remarks>
TSV
End Enum
#End Region
#Region "変数"
''' <summary>コマンドライン格納変数</summary>
Private _Commands As CommandList
''' <summary>フォームのインスタンスを保持する変数</summary>
''' <remarks></remarks>
Private Shared _instance As CommandLine
#End Region
#Region "構造体"
''' <summary>コマンドライン構造体</summary>
''' <remarks></remarks>
Private Structure CommandList
''' <summary>フォルダパス</summary>
Private Shared _FolderPath As String = String.Empty
''' <summary>ヘルプコマンドが存在するか</summary>
Private Shared _HasHelpCommand As Boolean = False
''' <summary>フォームタイプコマンド</summary>
''' <remarks>デフォルトで出力文字列フォームをセット</remarks>
Private Shared _FormType As FormType = FormType.Text
''' <summary>出力形式タイプコマンド</summary>
''' <remarks>デフォルトは指定なしをセット</remarks>
Private Shared _Output As OutputType = OutputType.None
''' <summary>拡張子コマンド</summary>
''' <remarks>デフォルトはTEXTをセット</remarks>
Private Shared _Extension As OutputFileFormat = OutputFileFormat.TXT
''' <summary>実行タイプコマンド</summary>
''' <remarks>デフォルトは実行しないをセット</remarks>
Private Shared _Execute As ExecuteType = ExecuteType.None
''' <summary>最大表示ファイル数コマンド</summary>
''' <remarks>デフォルトで1000をセット</remarks>
Private Shared _PageSize As Integer = frmResultGridView.cGridViewDataMaxCountInPage
''' <summary>フォルダパスプロパティ</summary>
''' <remarks></remarks>
Public Property FolderPath As String
Set(value As String)
_FolderPath = value
End Set
Get
Return _FolderPath
End Get
End Property
''' <summary>ヘルプコマンドが存在するかプロパティ</summary>
''' <remarks></remarks>
Public Property HasHelpCommand As Boolean
Set(value As Boolean)
_HasHelpCommand = value
End Set
Get
Return _HasHelpCommand
End Get
End Property
''' <summary>フォームタイププロパティ</summary>
''' <remarks></remarks>
Public Property FormType As CommandLine.FormType
Set(value As CommandLine.FormType)
_FormType = value
End Set
Get
Return _FormType
End Get
End Property
''' <summary>出力形式プロパティ</summary>
''' <remarks></remarks>
Public Property Output As OutputType
Set(value As OutputType)
_Output = value
End Set
Get
Return _Output
End Get
End Property
''' <summary>拡張子プロパティ</summary>
''' <remarks></remarks>
Public Property Extension As OutputFileFormat
Set(value As OutputFileFormat)
_Extension = value
End Set
Get
Return _Extension
End Get
End Property
''' <summary>実行タイププロパティ</summary>
''' <remarks></remarks>
Public Property Execute As ExecuteType
Set(value As ExecuteType)
_Execute = value
End Set
Get
Return _Execute
End Get
End Property
''' <summary>最大表示ファイル数プロパティ</summary>
''' <remarks></remarks>
Public Property PageSize As Integer
Set(value As Integer)
_PageSize = value
End Set
Get
Return _PageSize
End Get
End Property
End Structure
''' <summary>コマンド</summary>
''' <remarks>コマンドキーワードとその値を提供する</remarks>
Private Structure Command
''' <summary>キーワード</summary>
Private Shared _KeyWord As String = String.Empty
''' <summary>値</summary>
Private Shared _Value As String = String.Empty
''' <summary>キーワードプロパティ</summary>
''' <remarks></remarks>
Public Property KeyWord As String
Set(value As String)
_KeyWord = value
End Set
Get
Return _KeyWord
End Get
End Property
''' <summary>値プロパティ</summary>
''' <remarks></remarks>
Public Property Value As String
Set(value As String)
_Value = value
End Set
Get
Return _Value
End Get
End Property
''' <summary>
''' 引数付きコンストラクタ
''' </summary>
''' <param name="pCommandLineArg">コマンドライン引数</param>
''' <param name="pKeyWord">キーワード</param>
''' <remarks></remarks>
Sub New(ByVal pCommandLineArg As String, ByVal pKeyWord As String)
' コマンドライン引数よりもキーワードの方が文字数が多い時
'または コマンドライン引数の文字数よりキーワード+1の文字数の方が大きかったら
If pCommandLineArg.Length < pKeyWord.Length _
OrElse pCommandLineArg.Length < pKeyWord.Length + 1 Then
'空文字をセット
KeyWord = String.Empty
Value = String.Empty
Else
'コマンドライン引数からキーワード部分をセット
KeyWord = pCommandLineArg.Substring(0, pKeyWord.Length)
'KeyWord=○○○から値プロパティに「○○○」の部分をセットする
Value = pCommandLineArg.Substring(KeyWord.Length + 1)
End If
End Sub
End Structure
#End Region
#Region "プロパティ"
''' <summary>
''' CommandLineクラスにアクセスするためのプロパティ
''' </summary>
''' <remarks>
''' ※デザインパターンのSingletonパターンです
''' インスタンスがただ1つであることを保証する
''' </remarks>
Public Shared ReadOnly Property Instance() As CommandLine
Get
'インスタンスが作成されてなかったらインスタンスを作成
If _instance Is Nothing Then _instance = New CommandLine
Return _instance
End Get
End Property
''' <summary>
''' フォルダパスプロパティ
''' </summary>
''' <remarks></remarks>
Public ReadOnly Property FolderPath As String
Get
Return _Commands.FolderPath
End Get
End Property
''' <summary>
''' ヘルプコマンドが存在するかプロパティ
''' </summary>
''' <remarks></remarks>
Public ReadOnly Property HasHelpCommand As Boolean
Get
Return _Commands.HasHelpCommand
End Get
End Property
''' <summary>
''' フォームタイププロパティ
''' </summary>
''' <remarks></remarks>
Public ReadOnly Property TargetForm As CommandLine.FormType
Get
Return _Commands.FormType
End Get
End Property
''' <summary>
''' 出力形式プロパティ
''' </summary>
''' <remarks></remarks>
Public ReadOnly Property Output As OutputType
Get
Return _Commands.Output
End Get
End Property
''' <summary>
''' 拡張子プロパティ
''' </summary>
''' <remarks></remarks>
Public ReadOnly Property Extension As OutputFileFormat
Get
Return _Commands.Extension
End Get
End Property
''' <summary>
''' 実行タイププロパティ
''' </summary>
''' <remarks></remarks>
Public ReadOnly Property Execute As ExecuteType
Get
Return _Commands.Execute
End Get
End Property
''' <summary>
''' 最大表示ファイル数プロパティ
''' </summary>
''' <remarks>
''' リスト表示の1ページ内最大表示ファイル数
''' </remarks>
Public ReadOnly Property MaxCountInPage As Integer
Get
Return _Commands.PageSize
End Get
End Property
''' <summary>
''' 処理タイププロパティ
''' </summary>
''' <remarks></remarks>
Public ReadOnly Property ProcessMode As ProcessType
Get
Return _GetProcessMode(_Commands)
End Get
End Property
#End Region
#Region "コンストラクタ"
''' <summary>
''' コンストラクタ
''' </summary>
''' <remarks></remarks>
Private Sub New()
'コマンドライン引数分繰り返す
For Each mCommand As String In My.Application.CommandLineArgs
'ヘルプコマンドが存在するかをセット、ヘルプコマンドがあった場合はヘルプコマンド以外がセットされていても無視して処理を終了
If _SetHelpCommand(mCommand, _Commands) Then Exit Sub
'フォルダパスをセット、セット出来た時は次の繰り返しへ
If _SetFolderPath(mCommand, _Commands) Then Continue For
'フォームタイプコマンドをセット、セット出来た時は次の繰り返しへ
If _SetFormTypeCommand(mCommand, _Commands) Then Continue For
'出力形式コマンドをセット、セット出来た時は次の繰り返しへ
If _SetOutputCommand(mCommand, _Commands) Then Continue For
'拡張子コマンドをセット、セット出来た時は次の繰り返しへ
If _SetExtensionCommand(mCommand, _Commands) Then Continue For
'実行タイプコマンドをセット、セット出来た時は次の繰り返しへ
If _SetExecuteCommand(mCommand, _Commands) Then Continue For
'最大表示ファイル数コマンドをセット、セット出来た時は次の繰り返しへ
If _SetPageSizeCommand(mCommand, _Commands) Then Continue For
Next
'拡張子コマンドの値が不正だった時、正しい値をセットする
_Commands.Extension = _GetCorrectExtension(_Commands.FormType, _Commands.Extension)
End Sub
#End Region
#Region "メソッド"
''' <summary>
''' フォルダパスをセット
''' </summary>
''' <param name="pCommandLineArg">対象コマンドライン引数</param>
''' <param name="pCommands">コマンドライン格納変数</param>
''' <returns>True:フォルダパスをセット、False:フォルダパスを未セット</returns>
''' <remarks>
''' 対象のコマンドライン引数がフォルダパスの時、コマンドライン格納変数にセットする
''' </remarks>
Private Function _SetFolderPath(ByVal pCommandLineArg As String, ByRef pCommands As CommandList) As Boolean
'入力パスが空の時、フォルダパスを未セット
If String.IsNullOrEmpty(pCommandLineArg) Then Return False
'入力パスがディレクトリで無かった時、フォルダパスを未セット
If Not System.IO.Directory.Exists(pCommandLineArg) Then Return False
'フォルダパスをセット
pCommands.FolderPath = pCommandLineArg
Return True
End Function
''' <summary>
''' ヘルプコマンドが存在するかをセット
''' </summary>
''' <param name="pCommandLineArg">対象コマンドライン引数</param>
''' <param name="pCommands">コマンドライン格納変数</param>
''' <returns>True:ヘルプコマンドが存在するかをセット、False:ヘルプコマンドが存在するかを未セット</returns>
''' <remarks>
''' 対象のコマンドライン引数がヘルプコマンドの時、コマンドライン格納変数にセットする
''' </remarks>
Private Function _SetHelpCommand(ByVal pCommandLineArg As String, ByRef pCommands As CommandList) As Boolean
'コマンドがヘルプだったらコマンドライン格納変数にセット
If pCommandLineArg = cKeyWords.Help Then
_Commands.HasHelpCommand = True
Return True
Else
_Commands.HasHelpCommand = False
Return False
End If
End Function
''' <summary>
''' フォームタイプコマンドをセット
''' </summary>
''' <param name="pCommandLineArg">対象コマンドライン引数</param>
''' <param name="pCommands">コマンドライン格納変数</param>
''' <returns>True:フォームタイプコマンドをセット、False:フォームタイプコマンドを未セット</returns>
''' <remarks>
''' 対象のコマンドライン引数がフォームタイプコマンドの時、コマンドライン格納変数にセットする
''' </remarks>
Private Function _SetFormTypeCommand(ByVal pCommandLineArg As String, ByRef pCommands As CommandList) As Boolean
'コマンドライン引数から拡張子コマンドと拡張子を取得
Dim mCommand As New Command(pCommandLineArg, cKeyWords.Form)
'対象コマンドがフォームタイプコマンドの時
If mCommand.KeyWord.ToLower = cKeyWords.Form.ToLower Then
Select Case mCommand.Value.ToLower
Case FormType.Text.ToString.ToLower
pCommands.FormType = FormType.Text
Case FormType.List.ToString.ToLower
pCommands.FormType = FormType.List
Case Else
Return False
End Select
Return True
Else
Return False
End If
End Function
''' <summary>
''' 出力形式コマンドをセット
''' </summary>
''' <param name="pCommandLineArg">対象コマンドライン引数</param>
''' <param name="pCommands">コマンドライン格納変数</param>
''' <returns>True:出力形式コマンドをセット、False:出力形式コマンドを未セット</returns>
''' <remarks>
''' 対象のコマンドライン引数が出力形式コマンドの時、コマンドライン格納変数にセットする
''' </remarks>
Private Function _SetOutputCommand(ByVal pCommandLineArg As String, ByRef pCommands As CommandList) As Boolean
'コマンドライン引数から拡張子コマンドと拡張子を取得
Dim mCommand As New Command(pCommandLineArg, cKeyWords.Output)
'対象コマンドが出力形式コマンドの時
If mCommand.KeyWord.ToLower = cKeyWords.Output.ToLower Then
Select Case mCommand.Value.ToLower
Case OutputType.ClipBoard.ToString.ToLower
pCommands.Output = OutputType.ClipBoard
Case OutputType.SaveDialog.ToString.ToLower
pCommands.Output = OutputType.SaveDialog
Case Else
Return False
End Select
Return True
Else
Return False
End If
End Function
''' <summary>
''' 拡張子コマンドをセット
''' </summary>
''' <param name="pCommandLineArg">対象コマンドライン引数</param>
''' <param name="pCommands">コマンドライン格納変数</param>
''' <returns>True:拡張子コマンドをセット、False:拡張子コマンドを未セット</returns>
''' <remarks>
''' 対象のコマンドライン引数が出力形式コマンドの時、コマンドライン格納変数にセットする
''' </remarks>
Private Function _SetExtensionCommand(ByVal pCommandLineArg As String, ByRef pCommands As CommandList) As Boolean
'コマンドライン引数から拡張子コマンドと拡張子を取得
Dim mCommand As New Command(pCommandLineArg, cKeyWords.Extension)
'対象コマンドが拡張子コマンドの時
If mCommand.KeyWord.ToLower = cKeyWords.Extension.ToLower Then
Select Case mCommand.Value.ToLower
Case OutputFileFormat.TXT.ToString.ToLower
pCommands.Extension = OutputFileFormat.TXT
Case OutputFileFormat.CSV.ToString.ToLower
pCommands.Extension = OutputFileFormat.CSV
Case OutputFileFormat.TSV.ToString.ToLower
pCommands.Extension = OutputFileFormat.TSV
Case OutputFileFormat.HTML.ToString.ToLower
pCommands.Extension = OutputFileFormat.HTML
Case Else
Return False
End Select
Return True
Else
Return False
End If
End Function
''' <summary>
''' 実行タイプコマンドをセット
''' </summary>
''' <param name="pCommandLineArg">対象コマンドライン引数</param>
''' <param name="pCommands">コマンドライン格納変数</param>
''' <returns>True:実行タイプコマンドをセット、False:実行タイプコマンドを未セット</returns>
''' <remarks>
''' 対象のコマンドライン引数が出力形式コマンドの時、コマンドライン格納変数にセットする
''' </remarks>
Private Function _SetExecuteCommand(ByVal pCommandLineArg As String, ByRef pCommands As CommandList) As Boolean
'対象コマンドが実行タイプコマンドの時
If pCommandLineArg.ToLower = cKeyWords.Execute.ToLower Then
pCommands.Execute = ExecuteType.Run
Return True
Else
Return False
End If
End Function
''' <summary>
''' 最大表示ファイル数コマンドをセット
''' </summary>
''' <param name="pCommandLineArg">対象コマンドライン引数</param>
''' <param name="pCommands">コマンドライン格納変数</param>
''' <returns>True:最大表示ファイル数コマンドをセット、False:最大表示ファイル数コマンドを未セット</returns>
''' <remarks>
''' 対象のコマンドライン引数が最大表示ファイル数コマンドの時、コマンドライン格納変数にセットする
''' </remarks>
Private Function _SetPageSizeCommand(ByVal pCommandLineArg As String, ByRef pCommands As CommandList) As Boolean
'コマンドライン引数から拡張子コマンドと拡張子を取得
Dim mCommand As New Command(pCommandLineArg, cKeyWords.PageSize)
'対象コマンドが最大表示ファイル数コマンドの時
If mCommand.KeyWord.ToLower = cKeyWords.PageSize.ToLower Then
Dim mSetPageSize As Integer
'取得した最大表示ファイル数が数値に変換できる時
If Integer.TryParse(mCommand.Value, mSetPageSize) Then
'文字列を数値に変換したものをセット
pCommands.PageSize = mSetPageSize
Return True
Else
Return False
End If
Else
Return False
End If
End Function
''' <summary>
''' 処理タイプを取得
''' </summary>
''' <param name="pCommands">コマンドライン格納変数</param>
''' <returns>処理タイプ</returns>
''' <remarks></remarks>
Private Function _GetProcessMode(ByVal pCommands As CommandList) As ProcessType
'コマンドライン引数にヘルプコマンドがあった時はヘルプ処理を返す
If pCommands.HasHelpCommand Then Return ProcessType.Help
'フォルダパス項目が空文字の時
If String.IsNullOrEmpty(pCommands.FolderPath) Then
'通常処理を返す
Return ProcessType.Normarl
Else
'コマンド処理を返す
Return ProcessType.Command
End If
End Function
''' <summary>
''' フォームにあった正しい拡張子の値を取得
''' </summary>
''' <param name="pFormType">フォームタイプ</param>
''' <param name="pExtension">拡張子コマンドの値</param>
''' <returns>フォームにあった正しい拡張子の値</returns>
''' <remarks></remarks>
Private Function _GetCorrectExtension(ByVal pFormType As FormType, ByVal pExtension As OutputFileFormat) As OutputFileFormat
Dim mCorrectExtension As OutputFileFormat = pExtension
'フォームタイプごと処理を分岐
Select Case pFormType
Case FormType.Text
'拡張子コマンドが出力文字列フォームで使用出来る拡張子と一致しなかったら
If Not cTextFormExtensionList.Contains(pExtension) Then
'出力文字列フォームのデフォルトの拡張子をセット
mCorrectExtension = OutputFileFormat.TXT
End If
Case FormType.List
'拡張子コマンドがリスト表示フォームで使用出来る拡張子と一致しなかったら
If Not cListFormExtensionList.Contains(pExtension) Then
'リスト表示フォームのデフォルトの拡張子をセット
mCorrectExtension = OutputFileFormat.CSV
End If
End Select
Return mCorrectExtension
End Function
#End Region
#Region "外部公開メソッド"
''' <summary>
''' コマンドリストを表示
''' </summary>
''' <remarks></remarks>
Public Shared Sub ShowCommnadList()
'コマンドリストの文字列を作成する
Dim mCommnadListString As New System.Text.StringBuilder
With mCommnadListString
.AppendLine("ヘルプ :/? ")
.AppendLine(" ・コマンドの一覧を表示します。その他のコマンドが設定されて ")
.AppendLine(" いた場合はすべて無視されヘルプコマンドだけ実行され、処理 ")
.AppendLine(" を終了します ")
.AppendLine("フォームタイプ :Form=(Text | List) ")
.AppendLine(" ・Text:出力文字列フォーム ")
.AppendLine(" ・List:リスト表示フォーム ")
.AppendLine(" ※デフォルトは「/Form/=Text」 ")
.AppendLine("出力形式 :/Output=(ClipBoard | SaveDialog) ")
.AppendLine(" ・ClipBoard :クリップボードにコピー ")
.AppendLine(" ・SaveDialog:名前を付けて保存ダイアログで保存 ")
.AppendLine("拡張子 :/Extension(txt | csv | tsv | html) ")
.AppendLine(" ・txt :TXT形式で出力 ")
.AppendLine(" ・csv :CSV形式で出力 ")
.AppendLine(" ・tsv :TSV形式で出力 ")
.AppendLine(" ・html:HTML形式で出力 ")
.AppendLine(" ※デフォルトの拡張子はフォームによって異なります ")
.AppendLine(" 「/Extension=txt」(/Form=Text) ")
.AppendLine(" 「/Extension=csv」(/Form=List) ")
.AppendLine(" ※フォームによって使用できる拡張子が違います ")
.AppendLine(" txt,html(/Form=Texxt) ")
.AppendLine(" csv,tsv,html(/Form=List) ")
.AppendLine(" ※htmlは以下の設定では使用出来ません ")
.AppendLine(" 「/Output=ClipBoard」 ")
.AppendLine("実行 :/Execute ")
.AppendLine(" ・保存したファイルをただちに実行します ")
.AppendLine("最大表示ファイル数:/PageSize=数値 ")
.AppendLine(" ・数値のみ有効でそれ以外は無視されます ")
.AppendLine(" リスト表示フォームの際、1ページに表示する最大ファイル数 ")
.AppendLine(" ※デフォルトは「/PageSize=1000」 ")
.AppendLine(" ")
.AppendLine("不正なコマンドライン引数を使用した場合 ")
.AppendLine(" ・不正なキーワードの場合は無視されます ")
.AppendLine(" ・不正な値の場合はデフォルト設定で実行されます ")
End With
MessageBox.Show(mCommnadListString.ToString, "コマンドリスト", MessageBoxButtons.OK, MessageBoxIcon.Information)
mCommnadListString = Nothing
End Sub
''' <summary>
''' コマンドモードの文言をフォームタイトルにセットする
''' </summary>
''' <param name="pForm">対象フォーム</param>
''' <remarks></remarks>
Public Shared Sub SetCommandModeToTitle(ByVal pForm As Form)
'処理タイプがコマンド処理の時
If CommandLine.Instance.ProcessMode = ProcessType.Command Then
'フォームのタイトルに(コマンドモード)を付加する
pForm.Text = pForm.Text & "(コマンドモード)"
End If
End Sub
''' <summary>
''' アプリケーションに渡されたコマンドライン引数を表示(メッセージボックス)
''' </summary>
''' <remarks>
''' ※Conditional("DEBUG")によってリリース時はコンパイルされません
''' </remarks>
<Conditional("DEBUG")> _
Public Shared Sub ShowCommandLineArgListToMessageBox()
'コマンドリストの文字列を作成する
Dim mCommnadLineArgListString As New System.Text.StringBuilder
With mCommnadLineArgListString
.AppendLine("①フォルダパス ")
.AppendLine("→" & Instance.FolderPath & " ")
.AppendLine("②ヘルプ ")
.AppendLine("→" & Instance.HasHelpCommand & " ")
.AppendLine("③フォームタイプ ")
.AppendLine("→" & Instance.TargetForm.ToString & " ")
.AppendLine("④出力形式 ")
.AppendLine("→" & Instance.Output.ToString & " ")
.AppendLine("⑤拡張子 ")
.AppendLine("→" & Instance.Extension.ToString & " ")
.AppendLine("⑥実行タイプ ")
.AppendLine("→" & Instance.Execute.ToString & " ")
.AppendLine("⑦最大表示ファイル数 ")
.AppendLine("→" & Instance.MaxCountInPage & " ")
End With
MessageBox.Show(mCommnadLineArgListString.ToString, "コマンドライン引数", MessageBoxButtons.OK, MessageBoxIcon.Information)
mCommnadLineArgListString = Nothing
End Sub
''' <summary>
''' アプリケーションに渡されたコマンドライン引数を表示(Messenger風通知メッセージ)