-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployeeBook.java
454 lines (407 loc) · 14.7 KB
/
EmployeeBook.java
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
// SkyPro
// Курсовая работа «Введение в профессию и синтаксис языка»
// Константин Терских, [email protected], 2024
// https://google.github.io/styleguide/javaguide.html
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Objects;
/**
* Все сотрудники.
*
* @author Константин Терских, [email protected], 2024
* @version 1.1
*/
public class EmployeeBook {
/**
* Простое хранилище записей {@link Employee} о сотрудниках.<br>
* Размер задаётся в конструкторе {@link EmployeeBook}.
*/
private final Employee[] employees;
/**
* Конструктор по умолчанию.<br>
* Создан только для удовлетворения анализатора.
*/
@SuppressWarnings("unused")
public EmployeeBook() {
assert false;
this.employees = new Employee[0];
}
/**
* Конструктор с внедрением уже готового хранилища.
*
* @param employees массив записей о сотрудниках
*/
@SuppressWarnings("unused")
public EmployeeBook(@NotNull Employee[] employees) {
this.employees = employees;
}
/**
* Конструктор, в котором хранилище создаётся с учётом заданного размера.
*
* @param capacity вместимость хранилища
*/
public EmployeeBook(int capacity) {
this.employees = new Employee[capacity];
}
/**
* Универсальный признак "не найдено".
*/
public static final int NOT_FOUND = -1;
/**
* Получение первой от нуля свободной или занятой ячейки в хранилище.<br>
* с учётом или без учёта отдела.
*
* @param division отдел
* @param free свободная или занятая ячейка
* @return индекс свободной ячейки или {@link EmployeeBook#NOT_FOUND}
*/
private int getFirstIndex(@Nullable Division division, boolean free) {
if (employees == null) {
return NOT_FOUND;
}
for (int i = 0; i < employees.length; i++) {
if (division != null && !matchDivision(employees[i], division)) {
continue;
}
// Проверка наличия свободной ячейки
if (free) {
if (employees[i] == null) {
return i;
}
} else {
if (employees[i] != null) {
return i;
}
}
}
return NOT_FOUND;
}
/**
* Добавление нового сотрудника в хранилище.
*
* @param employee запись о сотруднике {@link Employee}
*/
public void addEmployee(@NotNull Employee employee) {
int freeIndex = getFirstIndex(null, true);
if (freeIndex == NOT_FOUND) {
return;
}
employees[freeIndex] = employee;
}
/**
* Получение записи о сотруднике по ID.
*
* @param id ID сотрудника {@link Employee#getId()}
* @return запись о сотруднике {@link Employee} или {@code null}
*/
@Nullable
public Employee getEmployee(int id) {
for (Employee employee : employees) {
if (employee.getId() == id) {
return employee;
}
}
return null;
}
/**
* Удаление сотрудника по ID.
*
* @param id ID сотрудника {@link Employee#getId()}
*/
public void removeEmployee(int id) {
for (int i = 0; i < employees.length; i++) {
if (employees[i] != null && employees[i].getId() == id) {
employees[i] = null;
return;
}
}
}
/**
* Сообщение о том, что книга {@link #employees} не наёдена.
*/
public static final String BOOK_NOT_FOUND = "Книга не найдена";
/**
* Проверка сотрудника на принадлежность к отделу.
*
* @param employee сотрудник {@link Employee}
* @param division отдел {@link Division}
* @return {@code true} если сотрудник принадлежит отделу
*/
private boolean matchDivision(@NotNull Employee employee, @NotNull Division division) {
return Objects.equals(employee.getDivision(), division);
}
/**
* Подсчёт суммы заработной платы по отделу или по всем записям.
*
* @param division отдел {@link Division}
* @return сумма вознаграждений
*/
public double getSalarySum(@Nullable Division division) {
double sum = 0;
for (Employee employee : employees) {
if (employee == null) {
continue;
}
if (division != null && !matchDivision(employee, division)) {
continue;
}
sum += employee.getSalary().getValue();
}
return sum;
}
/**
* Получение реального количества сотрудников в отделе или в целом.
*
* @param division отдел {@link Division} или {@code null}
* @return количество сотрудников
*/
public int getEmployeeCount(@Nullable Division division) {
int count = 0;
for (Employee employee : employees) {
if (employee == null) {
continue;
}
if (division != null && !matchDivision(employee, division)) {
continue;
}
count++;
}
return count;
}
/**
* Подсчёт средней заработной платы по отделу или по всем записям.
*
* @param division отдел {@link Division} или {@code null}
* @return средняя заработная плата
*/
public double getSalaryAverage(@Nullable Division division) {
double sum = 0;
for (Employee employee : employees) {
if (employee == null) {
continue;
}
if (division != null && !matchDivision(employee, division)) {
continue;
}
sum += employee.getSalary().getValue();
}
int employeesCount = getEmployeeCount(division);
return sum / employeesCount;
}
/**
* Получение сотрудника с наименьшей зарплатой
*
* @param division отдел {@link Division} или {@code null}
* @return сотрудник с наименьшей зарплатой или {@code null}
*/
@Nullable
public Employee getEmployeePoorest(@Nullable Division division) {
int startIndex = getFirstIndex(division, false);
if (startIndex == NOT_FOUND) {
return null;
}
Employee poorest = employees[startIndex];
for (int i = startIndex + 1; i < employees.length; i++) {
if (employees[i] == null) {
continue;
}
if (division != null && !matchDivision(employees[i], division)) {
continue;
}
if (employees[i].getSalary().getValue() < poorest.getSalary().getValue()) {
poorest = employees[i];
}
}
return poorest;
}
/**
* Получение сотрудника с наибольшей зарплатой
*
* @param division отдел {@link Division} или {@code null}
* @return сотрудник с наибольшей зарплатой или {@code null}
*/
@Nullable
public Employee getEmployeeRichest(@Nullable Division division) {
int startIndex = getFirstIndex(division, false);
if (startIndex == NOT_FOUND) {
return null;
}
Employee richest = employees[startIndex];
for (int i = startIndex + 1; i < employees.length; i++) {
if (employees[i] == null) {
continue;
}
if (division != null && !matchDivision(employees[i], division)) {
continue;
}
if (employees[i].getSalary().getValue() > richest.getSalary().getValue()) {
richest = employees[i];
}
}
return richest;
}
/**
* Индексация зарплат сотрудников.
*
* @param division отдел {@link Division}
* @param positivePercentage положительное число, %
*/
public void performSalaryIndexing(@Nullable Division division, double positivePercentage) {
if (positivePercentage < 0) {
throw new IllegalArgumentException("Параметр positivePercentage должен быть положительным числом");
}
for (Employee employee : employees) {
if (employee == null) {
continue;
}
if (division != null && !matchDivision(employee, division)) {
continue;
}
employee.getSalary().performIndexing(positivePercentage);
}
}
/**
* Меньше
*/
public static final int LESS = -2;
/**
* Меньше или равно
*/
public static final int LESS_OR_EQUAL = -1;
/**
* Равно
*/
public static final int EQUAL = 0;
/**
* Больше или равно
*/
public static final int GREATER_OR_EQUAL = 1;
/**
* Больше
*/
public static final int GREATER = 2;
/**
* Получение сотрудников с выборкой по зарплате.
*
* @param salary граница зарплаты
* @param compare вид сравнения с границей зарплаты
* @param maxCount максимальное количество элементов в выходном массиве
* @param division отдел {@link Division} или {@code null}
* @return выбранные сотрудники
*/
@Nullable
public Employee[] getEmployees(double salary, int compare, int maxCount, @Nullable Division division) {
if (salary <= 0) {
//throw new IllegalArgumentException("Параметр salary должен быть положительным числом");
return null;
}
if (maxCount <= 0) {
//throw new IllegalArgumentException("Параметр maxCount должен быть положительным числом");
return null;
}
Employee[] result = new Employee[maxCount];
Arrays.fill(result, null);
int index = 0;
for (Employee employee : employees) {
if (index >= maxCount) {
break;
}
if (employee == null) {
continue;
}
if (division != null && !matchDivision(employee, division)) {
continue;
}
switch (compare) {
case LESS -> {
if (employee.getSalary().getValue() < salary) {
result[index++] = employee;
}
}
case LESS_OR_EQUAL -> {
if (employee.getSalary().getValue() <= salary) {
result[index++] = employee;
}
}
case EQUAL -> {
if (employee.getSalary().getValue() == salary) {
result[index++] = employee;
}
}
case GREATER_OR_EQUAL -> {
if (employee.getSalary().getValue() >= salary) {
result[index++] = employee;
}
}
case GREATER -> {
if (employee.getSalary().getValue() > salary) {
result[index++] = employee;
}
}
default -> {
//throw new IllegalArgumentException("Неизвестный вид сравнения");
}
}
}
return result;
}
/**
* Печать всех сотрудников в строку.
*
* @return строки информации о сотрудниках
*/
@Override
public String toString() {
if (employees == null) {
return BOOK_NOT_FOUND;
}
StringBuilder sb = new StringBuilder();
for (Employee employee : employees) {
if (employee != null) {
sb.append("\t").append(employee).append("\n");
}
}
return sb.toString();
}
/**
* Возвращает короткую версию информации о каждом сотруднике плюс выбранные поля.
*
* @param withId выводить id
* @param withDivision выводить отдел
* @param withSalary выводить зарплату
* @return информация о каждом сотруднике
*/
@NotNull
public String toStringShort(boolean withId, boolean withDivision, boolean withSalary) {
if (employees == null) {
return BOOK_NOT_FOUND;
}
StringBuilder sb = new StringBuilder();
for (Employee employee : employees) {
if (employee != null) {
sb.append("\t").append(employee.toStringShort(withId, withDivision, withSalary)).append("\n");
}
}
return sb.toString();
}
/**
* Печать всех сотрудников.
*
* @param out поток вывода
* @param division отдел
*/
public void printEmployees(@NotNull PrintWriter out, @Nullable Division division) {
for (Employee employee : employees) {
if (employee == null) {
continue;
}
if (division != null && !matchDivision(employee, division)) {
continue;
}
out.print("\t");
out.println(employee);
}
}
}