summaryrefslogtreecommitdiff
path: root/test/testsuites/barcode/barcode_test_suite.c
blob: e6c9fac53961b4076ef90d8a9e5c62c412def67d (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
/**
 * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <mv_barcode.h>

#include <image_helper.h>
#include <mv_private.h>

#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

#include <libswscale/swscale.h>
#include <libavcodec/avcodec.h>
#include <libavutil/pixfmt.h>

#include <curses.h>
#include <error.h>
#include <argp.h>

#define MINX 0
#define MINY 0
#define MANUAL 0
#define AUTO 1
#define MININTERVAL 0
#define MAXINTERVAL 9

#define ARRAY_SIZE(x) (sizeof((x)) / sizeof((x)[0]))

typedef struct {
	mv_barcode_type_e type;
	mv_barcode_qr_ecc_e ecc;
	mv_barcode_qr_mode_e mode;
	int is_hrt;
	int version;
	size_t width;
	size_t height;
	mv_barcode_image_format_e out_image_format;
	mv_colorspace_e colorspace;
	char *message;
	char *file_name;
	char *out_file_name;
	unsigned char *out_buffer_ptr;
	char *front_color;
	char *back_color;
} barcode_model_s;

typedef enum { MV_TS_GENERATE_TO_IMAGE_FCN, MV_TS_GENERATE_TO_SOURCE_FCN } generation_fcn_e;

static int current_y = MINY;
static int mode = MANUAL;
static int test_interval = 0;

static const char doc[] = "mv_barcode_test -- mediavision barcode test";
static const char args_doc[] = "";

static struct argp_option arg_options[] = {
	{ "mode", 'm', "MODE", OPTION_ARG_OPTIONAL, "Run test by MODE [0=manual|1=auto] (default 0)" },
	{ "interval", 'i', "TIME", OPTION_ARG_OPTIONAL, "Run test by TIME (default 0 sec, maximum 9 sec) interval" },
	{ 0 }
};

struct arguments {
	int mode;
	int interval;
};

int convert_rgb_to(unsigned char *src_buffer, unsigned char **dst_buffer, image_data_s image_data,
				   mv_colorspace_e dst_colorspace, unsigned long *cvt_buffer_size)
{
	enum AVPixelFormat pixel_format = AV_PIX_FMT_NONE;

	MEDIA_VISION_FUNCTION_ENTER();

	switch (dst_colorspace) {
	case MEDIA_VISION_COLORSPACE_Y800:
		pixel_format = AV_PIX_FMT_GRAY8;
		break;
	case MEDIA_VISION_COLORSPACE_I420:
		pixel_format = AV_PIX_FMT_YUV420P;
		break;
	case MEDIA_VISION_COLORSPACE_NV12:
		pixel_format = AV_PIX_FMT_NV12;
		break;
	case MEDIA_VISION_COLORSPACE_YV12:
		/* the same as I420 with inversed U and V */
		pixel_format = AV_PIX_FMT_YUV420P;
		break;
	case MEDIA_VISION_COLORSPACE_NV21:
		pixel_format = AV_PIX_FMT_NV21;
		break;
	case MEDIA_VISION_COLORSPACE_YUYV:
		pixel_format = AV_PIX_FMT_YUYV422;
		break;
	case MEDIA_VISION_COLORSPACE_UYVY:
		pixel_format = AV_PIX_FMT_UYVY422;
		break;
	case MEDIA_VISION_COLORSPACE_422P:
		pixel_format = AV_PIX_FMT_YUV422P;
		break;
	case MEDIA_VISION_COLORSPACE_RGB565:
		pixel_format = AV_PIX_FMT_RGB565BE;
		break;
	case MEDIA_VISION_COLORSPACE_RGBA:
		pixel_format = AV_PIX_FMT_RGBA;
		break;
	case MEDIA_VISION_COLORSPACE_RGB888:
		*cvt_buffer_size = image_data.image_width * image_data.image_height * 3;
		(*dst_buffer) = (unsigned char *) malloc(*cvt_buffer_size);
		memcpy(*dst_buffer, src_buffer, *cvt_buffer_size);

		MEDIA_VISION_FUNCTION_LEAVE();
		return MEDIA_VISION_ERROR_NONE;
	default:
		MEDIA_VISION_FUNCTION_LEAVE();
		return MEDIA_VISION_ERROR_NOT_SUPPORTED;
	}

	AVPicture src_picture;
	AVPicture dst_picture;

	avpicture_fill(&src_picture, (uint8_t *) src_buffer, AV_PIX_FMT_RGB24, image_data.image_width,
				   image_data.image_height);

	avpicture_alloc(&dst_picture, pixel_format, image_data.image_width, image_data.image_height);

	struct SwsContext *context = sws_getContext(image_data.image_width, image_data.image_height, AV_PIX_FMT_RGB24,
												image_data.image_width, image_data.image_height, pixel_format,
												SWS_FAST_BILINEAR, 0, 0, 0);

	sws_scale(context, (const uint8_t *const *) src_picture.data, src_picture.linesize, 0, image_data.image_height,
			  dst_picture.data, dst_picture.linesize);

	int picture_size = avpicture_get_size(pixel_format, image_data.image_width, image_data.image_height);
	if (picture_size < 0) {
		avpicture_free(&dst_picture);
		MEDIA_VISION_FUNCTION_LEAVE();
		return MEDIA_VISION_ERROR_OUT_OF_MEMORY;
	}
	*cvt_buffer_size = (unsigned long) picture_size;

	(*dst_buffer) = (unsigned char *) malloc(*cvt_buffer_size);
	memcpy(*dst_buffer, dst_picture.data[0], *cvt_buffer_size);

	avpicture_free(&dst_picture);

	MEDIA_VISION_FUNCTION_LEAVE();

	return MEDIA_VISION_ERROR_NONE;
}

int find_min_x(const mv_quadrangle_s *quadrangle, int *minX)
{
	MEDIA_VISION_FUNCTION_ENTER();

	if (NULL == quadrangle) {
		MEDIA_VISION_FUNCTION_LEAVE();
		return MEDIA_VISION_ERROR_INVALID_PARAMETER;
	}

	*minX = quadrangle->points[0].x;
	*minX = quadrangle->points[1].x < *minX ? quadrangle->points[1].x : *minX;
	*minX = quadrangle->points[2].x < *minX ? quadrangle->points[2].x : *minX;
	*minX = quadrangle->points[3].x < *minX ? quadrangle->points[3].x : *minX;

	MEDIA_VISION_FUNCTION_LEAVE();

	return MEDIA_VISION_ERROR_NONE;
}

int find_min_y(const mv_quadrangle_s *quadrangle, int *minY)
{
	MEDIA_VISION_FUNCTION_ENTER();

	if (NULL == quadrangle) {
		MEDIA_VISION_FUNCTION_LEAVE();
		return MEDIA_VISION_ERROR_INVALID_PARAMETER;
	}

	*minY = quadrangle->points[0].y;
	*minY = quadrangle->points[1].y < *minY ? quadrangle->points[1].y : *minY;
	*minY = quadrangle->points[2].y < *minY ? quadrangle->points[2].y : *minY;
	*minY = quadrangle->points[3].y < *minY ? quadrangle->points[3].y : *minY;

	MEDIA_VISION_FUNCTION_LEAVE();

	return MEDIA_VISION_ERROR_NONE;
}

int find_max_x(const mv_quadrangle_s *quadrangle, int *maxX)
{
	MEDIA_VISION_FUNCTION_ENTER();

	if (NULL == quadrangle) {
		MEDIA_VISION_FUNCTION_LEAVE();
		return MEDIA_VISION_ERROR_INVALID_PARAMETER;
	}

	*maxX = quadrangle->points[0].x;
	*maxX = quadrangle->points[1].x > *maxX ? quadrangle->points[1].x : *maxX;
	*maxX = quadrangle->points[2].x > *maxX ? quadrangle->points[2].x : *maxX;
	*maxX = quadrangle->points[3].x > *maxX ? quadrangle->points[3].x : *maxX;

	MEDIA_VISION_FUNCTION_LEAVE();

	return MEDIA_VISION_ERROR_NONE;
}

int find_max_y(const mv_quadrangle_s *quadrangle, int *maxY)
{
	MEDIA_VISION_FUNCTION_ENTER();

	if (NULL == quadrangle) {
		MEDIA_VISION_FUNCTION_LEAVE();
		return MEDIA_VISION_ERROR_INVALID_PARAMETER;
	}

	*maxY = quadrangle->points[0].y;
	*maxY = quadrangle->points[1].y > *maxY ? quadrangle->points[1].y : *maxY;
	*maxY = quadrangle->points[2].y > *maxY ? quadrangle->points[2].y : *maxY;
	*maxY = quadrangle->points[3].y > *maxY ? quadrangle->points[3].y : *maxY;

	MEDIA_VISION_FUNCTION_LEAVE();

	return MEDIA_VISION_ERROR_NONE;
}

bool _mv_engine_config_supported_attribute(mv_config_attribute_type_e attribute_type, const char *attribute_name,
										   void *user_data)
{
	mvprintw(current_y++, MINX, "Callback call for engine configuration attribute");

	if (user_data == NULL)
		return false;

	mv_engine_config_h mv_engine_config = (mv_engine_config_h *) user_data;

	int int_value = 0;
	double double_value = 0.0;
	bool bool_value = false;
	char *str_value = NULL;
	switch (attribute_type) {
	case MV_ENGINE_CONFIG_ATTR_TYPE_DOUBLE:
		if (MEDIA_VISION_ERROR_KEY_NOT_AVAILABLE ==
			mv_engine_config_get_double_attribute(mv_engine_config, attribute_name, &double_value)) {
			mvprintw(current_y++, MINX, "Default double attribute %s wasn't set in engine", attribute_name);
			return false;
		}
		mvprintw(current_y++, MINX, "Default double attribute %s was set to %f in engine", attribute_name,
				 double_value);
		break;
	case MV_ENGINE_CONFIG_ATTR_TYPE_INTEGER:
		if (MEDIA_VISION_ERROR_KEY_NOT_AVAILABLE ==
			mv_engine_config_get_int_attribute(mv_engine_config, attribute_name, &int_value)) {
			mvprintw(current_y++, MINX, "Default integer attribute %s wasn't set in engine", attribute_name);
			return false;
		}
		mvprintw(current_y++, MINX, "Default integer attribute %s was set to %d in engine", attribute_name, int_value);
		break;
	case MV_ENGINE_CONFIG_ATTR_TYPE_BOOLEAN:
		if (MEDIA_VISION_ERROR_KEY_NOT_AVAILABLE ==
			mv_engine_config_get_bool_attribute(mv_engine_config, attribute_name, &bool_value)) {
			mvprintw(current_y++, MINX, "Default bool attribute %s wasn't set in engine", attribute_name);
			return false;
		}
		mvprintw(current_y++, MINX, "Default bool attribute %s was set to %s in engine", attribute_name,
				 bool_value ? "TRUE" : "FALSE");
		break;
	case MV_ENGINE_CONFIG_ATTR_TYPE_STRING:
		if (MEDIA_VISION_ERROR_KEY_NOT_AVAILABLE ==
			mv_engine_config_get_string_attribute(mv_engine_config, attribute_name, &str_value)) {
			mvprintw(current_y++, MINX, "Default string attribute %s wasn't set in engine", attribute_name);
			return false;
		}
		mvprintw(current_y++, MINX, "Default string attribute %s was set to %s in engine", attribute_name, str_value);

		free(str_value);
		str_value = NULL;
		break;
	default:
		mvprintw(current_y++, MINX, "Not supported attribute type");
		return false;
	}

	return true;
}

void barcode_detected_cb(mv_source_h source, mv_engine_config_h engine_cfg, const mv_quadrangle_s *barcodes_locations,
						 const char *messages[], const mv_barcode_type_e *types, int number_of_barcodes,
						 void *user_data)
{
	MEDIA_VISION_FUNCTION_ENTER();

	mvprintw(current_y++, MINX, "%i barcodes were detected on the image.", number_of_barcodes);
	if (number_of_barcodes > 0) {
		int is_source_data_loaded = 0;

		char *file_name = NULL;
		unsigned char *out_buffer = NULL;
		unsigned char *draw_buffer = NULL;
		unsigned int buf_size = 0;
		image_data_s image_data = { 0, 0, MEDIA_VISION_COLORSPACE_INVALID };
		/* Check Media Vision source: */
		if (MEDIA_VISION_ERROR_NONE != mv_source_get_buffer(source, &out_buffer, &buf_size) ||
			MEDIA_VISION_ERROR_NONE != mv_source_get_width(source, &(image_data.image_width)) ||
			MEDIA_VISION_ERROR_NONE != mv_source_get_height(source, &(image_data.image_height)) ||
			MEDIA_VISION_ERROR_NONE != mv_source_get_colorspace(source, &(image_data.image_colorspace)) ||
			user_data == NULL) {
			mvprintw(current_y++, MINX, "ERROR : Creating out image is impossible.");
		} else {
			file_name = ((barcode_model_s *) user_data)->out_file_name;
			draw_buffer = ((barcode_model_s *) user_data)->out_buffer_ptr;
			image_data.image_colorspace = MEDIA_VISION_COLORSPACE_RGB888;
			is_source_data_loaded = 1;
		}

		int i = 0;
		for (i = 0; i < number_of_barcodes; ++i) {
			const char *cur_message = messages[i];
			mv_barcode_type_e cur_type = types[i];
			const char *str_type = NULL;
			switch (cur_type) {
			case MV_BARCODE_QR:
				str_type = "QR";
				break;
			case MV_BARCODE_UPC_A:
				str_type = "UPC-A";
				break;
			case MV_BARCODE_UPC_E:
				str_type = "UPC-E";
				break;
			case MV_BARCODE_EAN_8:
			case MV_BARCODE_EAN_13:
				str_type = "EAN-8/13";
				break;
			case MV_BARCODE_CODE128:
				str_type = "CODE128";
				break;
			case MV_BARCODE_CODE39:
				str_type = "CODE39";
				break;
			case MV_BARCODE_I2_5:
				str_type = "I25";
				break;
			case MV_BARCODE_EAN_2:
				str_type = "EAN_2";
				break;
			case MV_BARCODE_EAN_5:
				str_type = "EAN_5";
				break;
			case MV_BARCODE_CODE93:
				str_type = "CODE93";
				break;
			case MV_BARCODE_CODABAR:
				str_type = "CODABAR";
				break;
			case MV_BARCODE_DATABAR:
				str_type = "DATABAR";
				break;
			case MV_BARCODE_DATABAR_EXPAND:
				str_type = "DATABAR_EXPAND";
				break;
			default:
				str_type = "Undetected";
				break;
			}
			mvprintw(current_y++, MINX, "\tBarcode %i : type is %s", i, str_type);
			if (cur_message != NULL)
				mvprintw(current_y++, MINX, "\t            message is %s", cur_message);
			else
				mvprintw(current_y++, MINX, "\t            message wasn't detected");

			if (is_source_data_loaded == 1) {
				int minX = 0;
				int minY = 0;
				int maxX = 0;
				int maxY = 0;
				if (MEDIA_VISION_ERROR_NONE != find_min_x(&barcodes_locations[i], &minX) ||
					MEDIA_VISION_ERROR_NONE != find_min_y(&barcodes_locations[i], &minY) ||
					MEDIA_VISION_ERROR_NONE != find_max_x(&barcodes_locations[i], &maxX) ||
					MEDIA_VISION_ERROR_NONE != find_max_y(&barcodes_locations[i], &maxY)) {
					continue;
				}

				const int drawing_color[] = { 255, 0, 0 };

				if (MEDIA_VISION_ERROR_NONE !=
					draw_rectangle_on_buffer(minX, minY, maxX, maxY, 6, drawing_color, &image_data, draw_buffer))
					continue;
			}
		}

		if (file_name != NULL &&
			MEDIA_VISION_ERROR_NONE == save_image_from_buffer(file_name, draw_buffer, &image_data, 100))
			mvprintw(current_y++, MINX, "Image was generated as %s", file_name);
		else
			mvprintw(current_y++, MINX, "ERROR : Failed to generate output file. Check file name and permissions.");

		current_y++;
	}
	getch();

	MEDIA_VISION_FUNCTION_LEAVE();
}

int generate_barcode_to_image(barcode_model_s model)
{
	MEDIA_VISION_FUNCTION_ENTER();

	if (model.message == NULL || model.file_name == NULL) {
		MEDIA_VISION_FUNCTION_LEAVE();

		return MEDIA_VISION_ERROR_INVALID_PARAMETER;
	}

	LOGI("Call the mv_barcode_generate_image() function");

	mv_engine_config_h mv_engine_config;
	int err = mv_create_engine_config(&mv_engine_config);

	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Errors were occurred during creating the media engine "
				 "config : %i",
				 err);
		MEDIA_VISION_FUNCTION_LEAVE();

		return err;
	}

	err = mv_engine_config_set_int_attribute(mv_engine_config, MV_BARCODE_GENERATE_ATTR_TEXT, model.is_hrt);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Errors were occurred during set integer attribute to "
				 "media engine config : %i",
				 err);
		goto cleanup;
	}

	err = mv_engine_config_set_string_attribute(mv_engine_config, MV_BARCODE_GENERATE_ATTR_COLOR_FRONT,
												model.front_color);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Errors were occurred during set string attribute to "
				 "media engine config : %i",
				 err);
		goto cleanup;
	}

	err = mv_engine_config_set_string_attribute(mv_engine_config, MV_BARCODE_GENERATE_ATTR_COLOR_BACK,
												model.back_color);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Errors were occurred during set string attribute to "
				 "media engine config : %i",
				 err);
		goto cleanup;
	}
	err = mv_barcode_generate_image(mv_engine_config, model.message, model.width, model.height, model.type, model.mode,
									model.ecc, model.version, model.file_name, model.out_image_format);
	if (MEDIA_VISION_ERROR_NONE != err)
		mvprintw(current_y++, MINX, "ERROR : Errors were occurred during generate image error : %i", err);
cleanup:
	if (MEDIA_VISION_ERROR_NONE != err) {
		int err2 = mv_destroy_engine_config(mv_engine_config);
		if (MEDIA_VISION_ERROR_NONE != err2)
			mvprintw(current_y++, MINX, "ERROR : Errors were occurred during destroying the media engine config : %i",
					 err2);

	} else {
		err = mv_destroy_engine_config(mv_engine_config);
		if (MEDIA_VISION_ERROR_NONE != err)
			mvprintw(current_y++, MINX, "ERROR : Errors were occurred during destroying the media engine config : %i",
					 err);
	}
	MEDIA_VISION_FUNCTION_LEAVE();
	return err;
}
int generate_barcode_to_source(barcode_model_s model)
{
	MEDIA_VISION_FUNCTION_ENTER();

	if (model.message == NULL || model.file_name == NULL) {
		MEDIA_VISION_FUNCTION_LEAVE();

		return MEDIA_VISION_ERROR_INVALID_PARAMETER;
	}

	LOGI("mv_source_h creation started");

	mv_source_h source = NULL;
	int err = mv_create_source(&source);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Error occurred when trying to create Media Vision "
				 "source. Error code : %i",
				 err);

		MEDIA_VISION_FUNCTION_LEAVE();

		return err;
	}

	LOGI("mv_source_h creation finished");

	LOGI("Call the mv_barcode_generate_source() function");

	mv_engine_config_h mv_engine_config;
	err = mv_create_engine_config(&mv_engine_config);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Errors were occurred during creating the media engine "
				 "config : %i",
				 err);
		goto clean_source;
	}

	err = mv_engine_config_set_string_attribute(mv_engine_config, MV_BARCODE_GENERATE_ATTR_COLOR_FRONT,
												model.front_color);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Errors were occurred during set string attribute to "
				 "media engine config : %i",
				 err);
		goto clean_all;
	}

	err = mv_engine_config_set_string_attribute(mv_engine_config, MV_BARCODE_GENERATE_ATTR_COLOR_BACK,
												model.back_color);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Errors were occurred during set string attribute to "
				 "media engine config : %i",
				 err);
		goto clean_all;
	}

	err = mv_barcode_generate_source(mv_engine_config, model.message, model.type, model.mode, model.ecc, model.version,
									 source);

	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Error occurred during generation barcode to the "
				 "Media Vision source. Error code : %i",
				 err);
		goto clean_all;
	}

	unsigned char *data_buffer = NULL;
	unsigned int buffer_size = 0;
	unsigned int image_width = 0;
	unsigned int image_height = 0;
	mv_colorspace_e image_colorspace = MEDIA_VISION_COLORSPACE_INVALID;

	err = mv_source_get_buffer(source, &data_buffer, &buffer_size);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Error occurred when trying to get buffer from "
				 "Media Vision source. Error code : %i",
				 err);
		goto clean_all;
	}

	err = mv_source_get_width(source, &image_width);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Error occurred when trying to get width of "
				 "Media Vision source. Error code : %i",
				 err);
		goto clean_all;
	}

	err = mv_source_get_height(source, &image_height);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Error occurred when trying to get height of "
				 "Media Vision source. Error code : %i",
				 err);
		goto clean_all;
	}

	err = mv_source_get_colorspace(source, &image_colorspace);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Error occurred when trying to get colorspace of "
				 "Media Vision source. Error code : %i",
				 err);
		goto clean_all;
	}

	const image_data_s image_data = { image_width, image_height, image_colorspace };

	char *jpeg_file_name;
	if (0 == strcmp(model.file_name + strlen(model.file_name) - 4, ".jpg") ||
		0 == strcmp(model.file_name + strlen(model.file_name) - 5, ".jpeg")) {
		jpeg_file_name = strdup(model.file_name);
		if (jpeg_file_name == NULL) {
			err = MEDIA_VISION_ERROR_OUT_OF_MEMORY;
			goto clean_all;
		}
	} else {
		size_t size = strlen(model.file_name);
		jpeg_file_name = (char *) malloc(size + 5);
		if (jpeg_file_name == NULL) {
			err = MEDIA_VISION_ERROR_OUT_OF_MEMORY;
			goto clean_all;
		}
		strncpy(jpeg_file_name, model.file_name, size);
		strncat(jpeg_file_name, ".jpg", 4);
	}
	err = save_image_from_buffer(jpeg_file_name, data_buffer, &image_data, 100);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Error occurred when try to save image from buffer."
				 "Error code : %i",
				 err);
	}
	free(jpeg_file_name);
clean_all:
	if (MEDIA_VISION_ERROR_NONE != err) {
		int err2 = mv_destroy_engine_config(mv_engine_config);
		if (MEDIA_VISION_ERROR_NONE != err2)
			mvprintw(current_y++, MINX, "ERROR : Errors were occurred during destroying the media engine config : %i",
					 err2);
	} else {
		err = mv_destroy_engine_config(mv_engine_config);
		if (MEDIA_VISION_ERROR_NONE != err)
			mvprintw(current_y++, MINX, "ERROR : Errors were occurred during destroying the media engine config : %i",
					 err);
	}
clean_source:
	if (MEDIA_VISION_ERROR_NONE != err) {
		int err2 = mv_destroy_source(source);
		if (MEDIA_VISION_ERROR_NONE != err2)
			mvprintw(current_y++, MINX,
					 "ERROR : Error occurred when try to destroy Media Vision source. Error code : %i", err2);
	} else {
		err = mv_destroy_source(source);
		if (MEDIA_VISION_ERROR_NONE != err)
			mvprintw(current_y++, MINX,
					 "ERROR : Error occurred when try to destroy Media Vision source. Error code : %i", err);
	}
	MEDIA_VISION_FUNCTION_LEAVE();
	return err;
}

int detect_barcode(barcode_model_s model, mv_rectangle_s roi)
{
	MEDIA_VISION_FUNCTION_ENTER();

	unsigned char *data_buffer = NULL;
	unsigned long buffer_size = 0;
	image_data_s image_data;

	int err = load_image_to_buffer(model.file_name, &data_buffer, &buffer_size, &image_data);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX, "ERROR : Errors were occurred during opening the file!!! code : %i", err);

		if (data_buffer != NULL)
			destroy_loaded_buffer(data_buffer);

		MEDIA_VISION_FUNCTION_LEAVE();

		return err;
	}

	unsigned char *converted_buffer = NULL;
	unsigned long converted_buffer_size = 0;
	err = convert_rgb_to(data_buffer, &converted_buffer, image_data, model.colorspace, &converted_buffer_size);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX, "ERROR : Can't convert to the selected colorspace!!! code : %i", err);

		if (data_buffer != NULL)
			destroy_loaded_buffer(data_buffer);

		free(converted_buffer);

		MEDIA_VISION_FUNCTION_LEAVE();

		return err;
	}

	model.out_buffer_ptr = data_buffer;

	mv_engine_config_h mv_engine_config = NULL;
	err = mv_create_engine_config(&mv_engine_config);
	if (MEDIA_VISION_ERROR_NONE != err)
		mvprintw(current_y++, MINX, "ERROR : Errors were occurred during creating the media engine config : %i", err);

	mv_engine_config_foreach_supported_attribute(_mv_engine_config_supported_attribute, mv_engine_config);

	err = mv_engine_config_set_int_attribute(mv_engine_config, MV_BARCODE_DETECT_ATTR_TARGET,
											 MV_BARCODE_DETECT_ATTR_TARGET_ALL);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX,
				 "ERROR : Errors were occurred during target attribute"
				 "configuration : %i",
				 err);
	}

	mv_source_h source;
	err = mv_create_source(&source);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX, "ERROR : Errors were occurred during creating the source!!! code : %i", err);

		if (data_buffer != NULL)
			destroy_loaded_buffer(data_buffer);

		free(converted_buffer);

		if (mv_engine_config)
			mv_destroy_engine_config(mv_engine_config);

		MEDIA_VISION_FUNCTION_LEAVE();

		return err;
	}

	err = mv_source_fill_by_buffer(source, converted_buffer, converted_buffer_size, image_data.image_width,
								   image_data.image_height, model.colorspace);
	if (MEDIA_VISION_ERROR_NONE != err) {
		mvprintw(current_y++, MINX, "ERROR : Errors were occurred during filling the source!!! code : %i", err);

		if (data_buffer != NULL)
			destroy_loaded_buffer(data_buffer);

		free(converted_buffer);

		if (mv_engine_config)
			mv_destroy_engine_config(mv_engine_config);

		mv_destroy_source(source);
		MEDIA_VISION_FUNCTION_LEAVE();

		return err;
	}

	free(converted_buffer);

	err = mv_barcode_detect(source, mv_engine_config, roi, barcode_detected_cb, &model);

	if (data_buffer != NULL)
		destroy_loaded_buffer(data_buffer);

	if (MEDIA_VISION_ERROR_NONE != err)
		mvprintw(current_y++, MINX, "ERROR : Errors were occurred during barcode detection!!! code : %i", err);

	err = mv_destroy_source(source);
	if (MEDIA_VISION_ERROR_NONE != err)
		mvprintw(current_y++, MINX, "ERROR : Errors were occurred during destroying the source!!! code : %i", err);

	err = mv_destroy_engine_config(mv_engine_config);
	if (MEDIA_VISION_ERROR_NONE != err)
		mvprintw(current_y++, MINX, "ERROR : Error were occurred during destroying the source!!! code : %i", err);

	MEDIA_VISION_FUNCTION_LEAVE();

	return err;
}

int input_string(const char *prompt, size_t max_len, char **string)
{
	MEDIA_VISION_FUNCTION_ENTER();

	mvaddstr(current_y++, MINX, prompt);

	char buffer[max_len];
	int err = getnstr(buffer, max_len);
	if (err != OK) {
		LOGE("getnstr failed with error code (0x%08x)", err);
		MEDIA_VISION_FUNCTION_LEAVE();
		return -1;
	}

	size_t string_len = strlen(buffer);
	buffer[string_len] = '\0';
	size_t real_string_len = string_len + 1;
	*string = (char *) malloc(real_string_len * sizeof(char));
	if (*string == NULL) {
		MEDIA_VISION_FUNCTION_LEAVE();
		return -1;
	}

	strncpy(*string, buffer, real_string_len);
	size_t str_len = strlen(*string);

	if (test_interval > 0)
		sleep(test_interval);

	MEDIA_VISION_FUNCTION_LEAVE();

	return str_len;
}

int input_size(const char *prompt, size_t max_size, size_t *size)
{
	MEDIA_VISION_FUNCTION_ENTER();

	char buffer[20];
	mvaddstr(current_y++, MINX, prompt);

	int err = getnstr(buffer, 20);
	if (err != OK) {
		LOGE("getnstr failed with error code (0x%08x)", err);
		MEDIA_VISION_FUNCTION_LEAVE();
		return -1;
	}
	*size = atoi(buffer);
	int ret = (*size > max_size ? -1 : 0);

	if (test_interval > 0)
		sleep(test_interval);

	MEDIA_VISION_FUNCTION_LEAVE();

	return ret;
}

int input_int(const char *prompt, int min_value, int max_value, int *value)
{
	MEDIA_VISION_FUNCTION_ENTER();

	char buffer[20];
	mvaddstr(current_y++, MINX, prompt);

	int err = getnstr(buffer, 20);
	if (err != OK) {
		LOGE("getnstr failed with error code (0x%08x)", err);
		MEDIA_VISION_FUNCTION_LEAVE();
		return -1;
	}
	*value = atoi(buffer);
	int ret = (*value < min_value || *value > max_value ? -1 : 0);

	if (test_interval > 0)
		sleep(test_interval);

	MEDIA_VISION_FUNCTION_LEAVE();

	return ret;
}

int show_menu(const char *title, const int *options, const char **names, int cnt)
{
	MEDIA_VISION_FUNCTION_ENTER();

	erase();
	refresh();

	current_y = MINY;
	mvaddstr(current_y++, MINX, "***************************");
	mvprintw(current_y++, MINX, "* %23s *", title);
	mvaddstr(current_y++, MINX, "*-------------------------*");
	int i = 0;
	for (i = 0; i < cnt; ++i) {
		mvprintw(current_y++, MINX, "* %2i. %19s *", options[i], names[i]);
	}
	mvaddstr(current_y++, MINX, "***************************");

	char buf[256];
	int selection = 0;
	bool condition = false;
	refresh();
	do {
		mvaddstr(current_y++, MINX, "Your Choice : ");
		getstr(&buf);
		selection = atoi(buf);
		condition = selection > options[cnt - 1];
		if (condition)
			mvprintw(current_y++, MINX, "You pressed invalid menu, try again");

		refresh();
	} while (condition);

	if (test_interval > 0)
		sleep(test_interval);

	MEDIA_VISION_FUNCTION_LEAVE();

	return selection;
}

mv_barcode_type_e select_type(void)
{
	mv_barcode_type_e selected_type = MV_BARCODE_UNKNOWN;
	int sel_opt = 0;
	const int options[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 };
	const char *names[] = { "qr",			"upca", "upce", "ean8",	  "ean13",	 "code39",	"code128",
							"interleave25", "ean2", "ean5", "code93", "codabar", "databar", "databarExpand" };

	MEDIA_VISION_FUNCTION_ENTER();

	while (sel_opt == 0) {
		sel_opt = show_menu("Select barcode type : ", options, names, ARRAY_SIZE(options));

		switch (sel_opt) {
		case 1:
			selected_type = MV_BARCODE_QR;
			break;
		case 2:
			selected_type = MV_BARCODE_UPC_A;
			break;
		case 3:
			selected_type = MV_BARCODE_UPC_E;
			break;
		case 4:
			selected_type = MV_BARCODE_EAN_8;
			break;
		case 5:
			selected_type = MV_BARCODE_EAN_13;
			break;
		case 6:
			selected_type = MV_BARCODE_CODE39;
			break;
		case 7:
			selected_type = MV_BARCODE_CODE128;
			break;
		case 8:
			selected_type = MV_BARCODE_I2_5;
			break;
		case 9:
			selected_type = MV_BARCODE_EAN_2;
			break;
		case 10:
			selected_type = MV_BARCODE_EAN_5;
			break;
		case 11:
			selected_type = MV_BARCODE_CODE93;
			break;
		case 12:
			selected_type = MV_BARCODE_CODABAR;
			break;
		case 13:
			selected_type = MV_BARCODE_DATABAR;
			break;
		case 14:
			selected_type = MV_BARCODE_DATABAR_EXPAND;
			break;
		default:
			sel_opt = 0;
			break;
		}
	}

	MEDIA_VISION_FUNCTION_LEAVE();

	return selected_type;
}

mv_barcode_qr_mode_e select_mode(void)
{
	mv_barcode_qr_mode_e selected_mode = MV_BARCODE_QR_MODE_UNAVAILABLE;
	int sel_opt = 0;
	const int options[] = { 1, 2, 3, 4 };
	const char *names[] = { "numeric", "alphanumeric", "byte", "utf8" };

	MEDIA_VISION_FUNCTION_ENTER();

	while (sel_opt == 0) {
		sel_opt = show_menu("Select encoding mode : ", options, names, ARRAY_SIZE(options));
		switch (sel_opt) {
		case 1:
			selected_mode = MV_BARCODE_QR_MODE_NUMERIC;
			break;
		case 2:
			selected_mode = MV_BARCODE_QR_MODE_ALPHANUMERIC;
			break;
		case 3:
			selected_mode = MV_BARCODE_QR_MODE_BYTE;
			break;
		case 4:
			selected_mode = MV_BARCODE_QR_MODE_UTF8;
			break;
		default:
			sel_opt = 0;
			break;
		}
	}

	MEDIA_VISION_FUNCTION_LEAVE();

	return selected_mode;
}

mv_barcode_qr_ecc_e select_ecc(void)
{
	mv_barcode_qr_ecc_e selected_ecc = MV_BARCODE_QR_ECC_UNAVAILABLE;
	int sel_opt = 0;
	const int options[] = { 1, 2, 3, 4 };
	const char *names[] = { "low", "medium", "quartile", "high" };

	MEDIA_VISION_FUNCTION_ENTER();

	while (sel_opt == 0) {
		sel_opt = show_menu("Select ECC level : ", options, names, ARRAY_SIZE(options));
		switch (sel_opt) {
		case 1:
			selected_ecc = MV_BARCODE_QR_ECC_LOW;
			break;
		case 2:
			selected_ecc = MV_BARCODE_QR_ECC_MEDIUM;
			break;
		case 3:
			selected_ecc = MV_BARCODE_QR_ECC_QUARTILE;
			break;
		case 4:
			selected_ecc = MV_BARCODE_QR_ECC_HIGH;
			break;
		default:
			sel_opt = 0;
			break;
		}
	}

	MEDIA_VISION_FUNCTION_LEAVE();

	return selected_ecc;
}

int select_attribute_text(void)
{
	MEDIA_VISION_FUNCTION_ENTER();

	int sel_opt = 0;
	int selected_attr = 0;
	const int options[] = { 1, 2 };
	const char *names[] = { "Invisible", "Visible" };

	while (sel_opt == 0) {
		sel_opt = show_menu("Select attribute text", options, names, ARRAY_SIZE(options));
		switch (sel_opt) {
		case 1:
			selected_attr = 0;
			break;
		case 2:
			selected_attr = 1;
			break;
		default:
			sel_opt = 0;
			break;
		}
	}

	MEDIA_VISION_FUNCTION_LEAVE();

	return selected_attr;
}

int select_version(void)
{
	MEDIA_VISION_FUNCTION_ENTER();

	int sel_opt = 0;
	while (sel_opt == 0) {
		const int options[] = { 1, 40 };
		const char *names[] = { "1..", "..40" };
		sel_opt = show_menu("Select QR version : ", options, names, ARRAY_SIZE(options));
		if (sel_opt < 1 || sel_opt > 40)
			sel_opt = 0;
	}

	MEDIA_VISION_FUNCTION_LEAVE();

	return sel_opt;
}

generation_fcn_e select_gen_function(void)
{
	generation_fcn_e ret_fcn_type = MV_TS_GENERATE_TO_IMAGE_FCN;
	int sel_opt = 0;
	const int options[] = { 1, 2 };
	const char *names[] = { "Generate to file", "Generate to source" };

	MEDIA_VISION_FUNCTION_ENTER();

	while (sel_opt == 0) {
		sel_opt = show_menu("Select API function : ", options, names, ARRAY_SIZE(options));
		switch (sel_opt) {
		case 1:
			ret_fcn_type = MV_TS_GENERATE_TO_IMAGE_FCN;
			break;
		case 2:
			ret_fcn_type = MV_TS_GENERATE_TO_SOURCE_FCN;
			break;
		default:
			sel_opt = 0;
			break;
		}
	}

	MEDIA_VISION_FUNCTION_LEAVE();

	return ret_fcn_type;
}

mv_barcode_image_format_e select_file_format(void)
{
	mv_barcode_image_format_e image_format = MV_BARCODE_IMAGE_FORMAT_JPG;
	int sel_opt = 0;
	const int options[] = { 1, 2, 3 };
	const char *names[] = { "BMP", "JPG", "PNG" };

	MEDIA_VISION_FUNCTION_ENTER();

	while (sel_opt == 0) {
		sel_opt = show_menu("Select file format : ", options, names, ARRAY_SIZE(options));
		switch (sel_opt) {
		case 1:
			image_format = MV_BARCODE_IMAGE_FORMAT_BMP;
			break;
		case 2:
			image_format = MV_BARCODE_IMAGE_FORMAT_JPG;
			break;
		case 3:
			image_format = MV_BARCODE_IMAGE_FORMAT_PNG;
			break;
		default:
			sel_opt = 0;
			break;
		}
	}

	MEDIA_VISION_FUNCTION_LEAVE();

	return image_format;
}

int perform_detect()
{
	MEDIA_VISION_FUNCTION_ENTER();

	barcode_model_s detect_model = { MV_BARCODE_UNKNOWN,
									 MV_BARCODE_QR_ECC_UNAVAILABLE,
									 MV_BARCODE_QR_MODE_UNAVAILABLE,
									 0,
									 0,
									 0,
									 0,
									 MV_BARCODE_IMAGE_FORMAT_PNG,
									 MEDIA_VISION_COLORSPACE_INVALID,
									 NULL,
									 NULL,
									 NULL,
									 NULL,
									 NULL,
									 NULL };

	while (input_string("Input file name to be analyzed : ", 1024, &(detect_model.file_name)) == -1)
		mvprintw(current_y++, MINX, "Incorrect input! Try again.");

	LOGI("Barcode input image has been specified");

	mv_rectangle_s roi = { { 0, 0 }, 0, 0 };

	while (input_int("Input x coordinate for ROI top left vertex : ", 0, 10000, &(roi.point.x)) == -1)
		mvprintw(current_y++, MINX, "Incorrect input! Try again.");

	while (input_int("Input y coordinate for ROI top left vertex : ", 0, 10000, &(roi.point.y)) == -1)
		mvprintw(current_y++, MINX, "Incorrect input! Try again.");

	while (input_int("Input ROI width : ", 0, 10000, &(roi.width)) == -1)
		mvprintw(current_y++, MINX, "Incorrect input! Try again.");

	while (input_int("Input ROI height : ", 0, 10000, &(roi.height)) == -1)
		mvprintw(current_y++, MINX, "Incorrect input! Try again.");

	LOGI("Region of interest (ROI) to detect barcode into has been specified");

	while (input_string("Input file name to be generated : ", 1024, &(detect_model.out_file_name)) == -1)
		mvprintw(current_y++, MINX, "Incorrect input! Try again.");

	LOGI("Barcode output image has been specified");

	const int options[] = { MEDIA_VISION_COLORSPACE_Y800,	MEDIA_VISION_COLORSPACE_I420,
							MEDIA_VISION_COLORSPACE_NV12,	MEDIA_VISION_COLORSPACE_YV12,
							MEDIA_VISION_COLORSPACE_NV21,	MEDIA_VISION_COLORSPACE_YUYV,
							MEDIA_VISION_COLORSPACE_UYVY,	MEDIA_VISION_COLORSPACE_422P,
							MEDIA_VISION_COLORSPACE_RGB565, MEDIA_VISION_COLORSPACE_RGB888,
							MEDIA_VISION_COLORSPACE_RGBA };
	const char *names[] = { "Y800", "I420", "NV12", "YV12", "NV21", "YUYV", "UYVY", "422P", "RGB565", "RGB888", "RGBA" };

	while (true) {
		int sel_opt = show_menu("Select colorspace to test detector on : ", options, names, ARRAY_SIZE(options));
		if (sel_opt < MEDIA_VISION_COLORSPACE_Y800 || sel_opt > MEDIA_VISION_COLORSPACE_RGBA)
			continue;

		detect_model.colorspace = (mv_colorspace_e) sel_opt;
		LOGI("User selection is %i", sel_opt);
		break;
	}

	int err = detect_barcode(detect_model, roi);

	free(detect_model.file_name);

	free(detect_model.out_file_name);

	if (err != MEDIA_VISION_ERROR_NONE)
		LOGE("Barcode detection failed with error code (0x%08x)", err);

	MEDIA_VISION_FUNCTION_LEAVE();

	return err;
}

int perform_generate(void)
{
	MEDIA_VISION_FUNCTION_ENTER();

	barcode_model_s generate_model = { MV_BARCODE_UNKNOWN,
									   MV_BARCODE_QR_ECC_UNAVAILABLE,
									   MV_BARCODE_QR_MODE_UNAVAILABLE,
									   0,
									   0,
									   0,
									   0,
									   MV_BARCODE_IMAGE_FORMAT_PNG,
									   MEDIA_VISION_COLORSPACE_INVALID,
									   NULL,
									   NULL,
									   NULL,
									   NULL,
									   NULL,
									   NULL };

	generation_fcn_e gen_fcn = select_gen_function();
	generate_model.type = select_type();
	LOGI("Barcode type has been selected");

	if (generate_model.type == MV_BARCODE_QR) {
		generate_model.mode = select_mode();
		LOGI("Barcode encoding mode has been selected");
		generate_model.ecc = select_ecc();
		LOGI("Barcode ecc level has been selected");
		generate_model.version = select_version();
		LOGI("Barcode version has been selected");
	}

	if (generate_model.type != MV_BARCODE_QR) {
		generate_model.is_hrt = select_attribute_text();
		LOGI("Barcode readable text attribute has been selected");
	}

	if (gen_fcn == MV_TS_GENERATE_TO_IMAGE_FCN) {
		generate_model.out_image_format = select_file_format();
		LOGI("Barcode output image format has been selected");
	}

	while (input_string("Input message : ", 7089, &generate_model.message) == -1)
		mvaddstr(current_y++, MINX, "Incorrect input! Try again.");

	LOGI("Barcode message has been specified");

	while (input_string("Input file name : ", 255, &generate_model.file_name) == -1)
		mvprintw(current_y++, MINX, "Incorrect input! Try again.");

	LOGI("Barcode output file name has been specified");

	while (input_string("Input foreground color (ex:black is 000000) : ", 6, &generate_model.front_color) == -1)
		mvprintw(current_y++, MINX, "Incorrect input! Try again.");

	LOGI("Foreground color is %s", generate_model.front_color);

	while (input_string("Input background color (ex:white is ffffff) : ", 6, &generate_model.back_color) == -1)
		mvprintw(current_y++, MINX, "Incorrect input! Try again.");

	LOGI("Background color is %s", generate_model.back_color);

	if (gen_fcn == MV_TS_GENERATE_TO_IMAGE_FCN) {
		while (input_size("Input image width : ", 10000, &generate_model.width) == -1)
			mvprintw(current_y++, MINX, "Incorrect input! Try again.");

		LOGI("Barcode output file width has been specified");

		while (input_size("Input image height : ", 10000, &generate_model.height) == -1)
			mvprintw(current_y++, MINX, "Incorrect input! Try again.");

		LOGI("Barcode output file height has been specified");
	}

	const int err = gen_fcn == MV_TS_GENERATE_TO_IMAGE_FCN ? generate_barcode_to_image(generate_model) :
															 generate_barcode_to_source(generate_model);

	free(generate_model.message);
	free(generate_model.file_name);
	free(generate_model.front_color);
	free(generate_model.back_color);

	if (err != MEDIA_VISION_ERROR_NONE) {
		LOGE("Barcode generation failed with error code (0x%08x)", err);
		mvprintw(current_y++, MINX, "ERROR : Errors were occurred during barcode generation!!!");
		MEDIA_VISION_FUNCTION_LEAVE();
		return err;
	}

	LOGI("Barcode output file has been generated");
	current_y++;
	mvprintw(current_y++, MINX, "Barcode image was successfully generated.");
	current_y++;
	mvprintw(current_y++, MINX, "Press any key to continue...");
	getch();

	MEDIA_VISION_FUNCTION_LEAVE();

	return 0;
}

static error_t parse_opt(int key, char *arg, struct argp_state *state)
{
	struct arguments *arguments = state->input;

	switch (key) {
	case 'm':
		arguments->mode = arg ? atoi(arg) : 0;
		break;
	case 'i':
		arguments->interval = arg ? atoi(arg) : 0;
		if (arguments->interval > MAXINTERVAL) {
			printf("WARN : value is out of range, reset to max value.\n");
			arguments->interval = MAXINTERVAL;
		} else if (arguments->interval < MININTERVAL) {
			printf("WARN : value is out of range, reset to min value.\n");
			arguments->interval = MININTERVAL;
		}
		break;
	case ARGP_KEY_NO_ARGS:
		/* do nothing */
		break;
	default:
		return ARGP_ERR_UNKNOWN;
	}
	return 0;
}

static struct argp argp = { arg_options, parse_opt, args_doc, doc };

int main(int argc, char *argv[])
{
	LOGI("Media Vision Testsuite is launched.");

	int err = MEDIA_VISION_ERROR_NONE;

	int sel_opt = 0;
	const int options[] = { 1, 2 };
	const char *names[] = { "Generate", "Detect" };
	struct arguments arguments;

	arguments.mode = 0;
	arguments.interval = 0;

	argp_parse(&argp, argc, argv, 0, 0, &arguments);
	mode = arguments.mode;
	test_interval = arguments.interval;

	if (arguments.mode == AUTO) {
		char buf[29];
		snprintf(buf, 29, "mv_barcode_test_suite_auto %d", test_interval);
		system(buf);
		endwin();
		return 0;
	} else if (arguments.mode == MANUAL) {
		/* do nothing */
	} else {
		printf("Please check mode and try it again.\n");
		return 0;
	}

	initscr();
	while (sel_opt == 0) {
		sel_opt = show_menu("Select action : ", options, names, ARRAY_SIZE(options));
		switch (sel_opt) {
		case 1:
			LOGI("Start the barcode generation flow");
			err = perform_generate();
			break;
		case 2:
			LOGI("Start the barcode detection flow");
			err = perform_detect();
			break;
		default:
			sel_opt = 0;
			continue;
		}

		int do_another = 0;

		if (err != MEDIA_VISION_ERROR_NONE)
			mvprintw(current_y++, MINX, "ERROR : Action is finished with error code : %i", err);

		sel_opt = 0;
		const int options_last[] = { 1, 2 };
		const char *names_last[] = { "YES", "NO" };

		while (sel_opt == 0) {
			sel_opt = show_menu("Perform another action?", options_last, names_last, ARRAY_SIZE(options));
			switch (sel_opt) {
			case 1:
				do_another = 1;
				break;
			case 2:
				do_another = 0;
				break;
			default:
				sel_opt = 0;
				break;
			}
		}
		LOGI("User selection is %i", sel_opt);

		sel_opt = (do_another == 1 ? 0 : sel_opt);
	}

	LOGI("Media Vision Testsuite is closed.");
	endwin();

	return err;
}