-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
260 lines (239 loc) · 9.3 KB
/
Program.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
// -----------------------------------------------------------------------------
// ReordenarAsignaciones (21/may/23 00.19)
// Invertir las asignaciones:
// de controles a tipo de datos y viceversa
//
// En este código se utilizan las extensiones AsDecimal, AsInteger, AsDouble, AsDate, AsDateTime y AsTimeSpan
// que extán definidas en una clase (módulo de VB) llamado Extensiones.
//
// Para ver ejemplos, mira en Ejemplos.txt
//
// (c) Guillermo (elGuille) Som, 2023
// -----------------------------------------------------------------------------
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace ReordenarAsignaciones;
internal class Program
{
// La versión 11
//#error version
// Intentar no pasar de estas marcas: 60 caracteres. 2 3 4 5 6
// ---------|---------|---------|---------|---------|---------|
//[COPIAR]AppDescripcionCopia = " credo repositorio de nuget"
/// <summary>
/// La versión actual.
/// </summary>
public static string AppFileVersion { get; } = "1.2.1";
/// <summary>
/// La fecha de modificación.
/// </summary>
public static string AppFechaVersion { get; } = "21-may-2023";
/// <summary>
/// El nombre de la aplicación.
/// </summary>
public static string AppName { get; set; } = "Reordenar Asignaciones";
/// <summary>
/// El color del texto de la consola.
/// </summary>
private static ConsoleColor ColorTexto { get; set; } = ConsoleColor.Yellow;
/// <summary>
/// El color del texto de la parte derecha del título.
/// </summary>
private static ConsoleColor ColorTituloDerecha { get; set; } = ConsoleColor.Green;
/// <summary>
/// El color del texto de la parte izquierda del título.
/// </summary>
private static ConsoleColor ColorTituloIzquierda { get; set; } = ConsoleColor.Cyan;
/// <summary>
/// La longitud de las líneas del título.
/// </summary>
private static int LongitudLineaTitulo { get; set; } = 80;
/// <summary>
/// El retorno de carro según sea Windows u otro sistema.
/// </summary>
public static string CrLf => RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? "\r" : "\r\n";
[STAThread]
static void Main(string[] args)
{
MostrarTitulo();
if (args.Length == 0)
{
// pedir la opción a usar
Console.WriteLine("Debes indicar en la línea de comandos lo que hay que procesar.");
}
else
{
// se supone que se ha indicado lo que hay que hacer.
string res = InvertirAsignaciones(args);
// Copiar en el portapapeles
//ClipBoard.Set(res);
Console.WriteLine(res);
}
Console.WriteLine();
Console.WriteLine("Pulsa INTRO para terminar.");
Console.ReadLine();
}
/// <summary>
/// Mostrar el título en la app de consola.
/// </summary>
private static void MostrarTitulo()
{
//string titulo = $"{AppName} del {AppFechaVersion} - v{AppFileVersion}";
string tituloIzq = $"{AppName} - v{AppFileVersion}";
string tituloDer = $"revisión del {AppFechaVersion}";
int espaciosMid = LongitudLineaTitulo - tituloIzq.Length - tituloDer.Length;
string tituloSep = new string(' ', espaciosMid);
string titulo = $"{tituloIzq}{tituloSep}{tituloDer}";
Console.Clear();
Console.ForegroundColor = ColorTexto;
Console.Title = titulo;
StringBuilder sb = new();
string lineas = new('-', LongitudLineaTitulo);
Console.WriteLine(lineas);
//Console.WriteLine($"{titulo}");
Console.ForegroundColor = ColorTituloIzquierda;
Console.Write($"{tituloIzq}");
Console.Write($"{tituloSep}");
Console.ForegroundColor = ColorTituloDerecha;
Console.WriteLine($"{tituloDer}");
Console.ForegroundColor = ColorTexto;
sb.AppendLine();
sb.AppendLine($"Utilidad para invertir las asignaciones.");
sb.AppendLine(lineas);
Console.WriteLine(sb.ToString());
Console.ForegroundColor = ConsoleColor.White;
}
/// <summary>
/// Invertir las asignaciones del array indicado.
/// </summary>
/// <param name="args"></param>
/// <returns>Una cadena con la conversión realizada.</returns>
/// <remarks>El formato del array es: {"parteIzquierda", "=", "parteDerecha"}
/// <para>Es decir la asignación estará en tres valores consecutivos:</para>
/// La parte izquierda, el signo igual y la parte derecha.
/// </remarks>
private static string InvertirAsignaciones(string[] args)
{
StringBuilder sb = new();
// Al indicarse en la línea de comandos el formato será {"parteIzquierda", "=", "parteDerecha"}
for (int i = 0; i < args.Length - 2; i += 3)
{
string leftPart = args[i].Trim();
string rightPart = args[i + 2].Trim().TrimEnd(';');
if (rightPart.Contains("txt", StringComparison.OrdinalIgnoreCase))
{
int j = rightPart.IndexOf(".Text.");
if (j > -1)
{
if (rightPart.Contains(".AsInteger()"))
{
leftPart += ".ToString()";
}
else if (rightPart.Contains(".AsDecimalInt()"))
{
leftPart += ".ToString()";
}
else if (rightPart.Contains(".AsDecimal()"))
{
leftPart += ".ToString(\"0.##\")";
}
else if (rightPart.Contains(".AsDouble()"))
{
leftPart += ".ToString(\"0.##\")";
}
else if (rightPart.Contains(".AsDate()"))
{
leftPart += ".ToString(\"dd/MM/yyyy\")";
}
else if (rightPart.Contains(".AsDateTime()"))
{
leftPart += ".ToString(\"dd/MM/yyyy HH:mm\")";
}
else if (rightPart.Contains(".AsTimeSpan()"))
{
leftPart += ".ToString(\"hh\\\\:mm\")";
}
rightPart = rightPart.Substring(0, j + 5);
}
else
{
j = rightPart.IndexOf(".ToString(");
if (j > -1)
{
rightPart = rightPart.Substring(0, j - 1);
}
}
}
else
{
int j = leftPart.IndexOf(".Text.");
if (j > -1)
{
if (leftPart.Contains(".AsInteger()"))
{
rightPart += ".ToString()";
}
else if (leftPart.Contains(".AsDecimalInt()"))
{
rightPart += ".ToString()";
}
else if (leftPart.Contains(".AsDecimal()"))
{
rightPart += ".ToString(\"0.##\")";
}
else if (leftPart.Contains(".AsDouble()"))
{
rightPart += ".ToString(\"0.##\")";
}
else if (leftPart.Contains(".AsDate()"))
{
rightPart += ".ToString(\"dd/MM/yyyy\")";
}
else if (leftPart.Contains(".AsDateTime()"))
{
rightPart += ".ToString(\"dd/MM/yyyy HH:mm\")";
}
else if (leftPart.Contains(".AsTimeSpan()"))
{
rightPart += ".ToString(\"hh\\\\:mm\")";
}
leftPart = leftPart.Substring(0, j + 5);
}
else
{
if (rightPart.Contains(".ToString()"))
{
leftPart += ".AsInteger()";
}
else if (rightPart.Contains(".ToString(hh\\\\:mm)"))
{
leftPart += ".AsTimeSpan()";
}
else if (rightPart.Contains(".ToString(dd/MM/yyyy HH:mm)"))
{
leftPart += ".AsDateTime()";
}
else if (rightPart.Contains(".ToString(dd/MM/yyyy)"))
{
leftPart += ".AsDate()";
}
else if (rightPart.Contains(".ToString(0.##)"))
{
leftPart += ".AsDecimal()";
}
j = rightPart.IndexOf(".ToString(");
if (j > - 1)
{
rightPart = rightPart.Substring(0, j);
}
}
}
sb.Append(rightPart);
sb.Append(" = ");
sb.Append(leftPart);
sb.AppendLine(";");
}
return sb.ToString();
}
}