-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
168 lines (141 loc) · 4.36 KB
/
Form1.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
using Newtonsoft.Json;
using PlinQandParallell.Properties;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace PlinQandParallell
{
public partial class PlinQandParallell : Form
{
List<Persona> _users = new List<Persona>();
Stopwatch timer = new Stopwatch();
public PlinQandParallell()
{
InitializeComponent();
_users = ReadJSON();
MaximizeBox = false;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
Sequencial();
timer.Reset();
Parallel();
}
public List<Persona> ReadJSON()
{
string json = File.ReadAllText("people.json");
return JsonConvert.DeserializeObject<List<Persona>>(json);
}
private void Sequencial()
{
ListViewItem _list;
string[] _valores;
timer.Start();
foreach (Persona _user in _users)
{
_valores = sequencial(_user);
_list = new ListViewItem(_valores[0]);
_list.SubItems.Add(_valores[1]);
_list.SubItems.Add(_valores[2]);
listJson.Items.Add(_list);
}
timer.Stop();
timeS.AppendText(timer.Elapsed.ToString("hh\\:mm\\:ss\\.fff"));
}
private void Parallel()
{
ListViewItem _list;
string[] _valores;
timer.Start();
foreach (Persona _user in _users)
{
_valores = parallel(_user);
_list = new ListViewItem(_valores[0]);
_list.SubItems.Add(_valores[1]);
_list.SubItems.Add(_valores[2]);
listJson2.Items.Add(_list);
}
timer.Stop();
timeP.AppendText(timer.Elapsed.ToString("hh\\:mm\\:ss\\.fff"));
}
public string[] sequencial(Persona _user)
{
string[] _fila = new string[3];
if (!_user.ComprobarNom())
_fila[0] = _user.Name;
else
_fila[0] = "NO NAME";
if (_user.ComprobarEmail())
_fila[1] = _user.email;
else
_fila[1] = "NO EMAIL";
if (_user.ComprobarDNI())
_fila[2] = _user.dni;
else
_fila[2] = "NO DNI";
return _fila;
}
public string[] parallel(Persona _user)
{
string[] _fila = new string[3];
System.Threading.Tasks.Parallel.Invoke(
() =>
{
if (!_user.ComprobarNom())
_fila[0] = _user.Name;
else
_fila[0] = "NO NAME";
},
() =>
{
if (_user.ComprobarEmail())
_fila[1] = _user.email;
else
_fila[1] = "NO EMAIL";
},
() =>
{
if (_user.ComprobarDNI())
_fila[2] = _user.dni;
else
_fila[2] = "NO DNI";
}
);
return _fila;
}
private void reset_Click(object sender, EventArgs e)
{
listJson.Items.Clear();
listJson2.Items.Clear();
timeS.ResetText();
timeP.ResetText();
timer.Reset();
}
private void btSequencial_Click(object sender, EventArgs e)
{
listJson.Items.Clear();
timeS.ResetText();
timer.Reset();
Sequencial();
}
private void btParallel_Click(object sender, EventArgs e)
{
listJson2.Items.Clear();
timeP.ResetText();
timer.Reset();
Parallel();
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/TheHypnoo");
}
}
}