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
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (c) 2017-2018 Western Digital Corporation or its affiliates.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
* Author: Jeff Lien <jeff.lien@wdc.com>,
*/
#include <stdio.h>
#include <ctype.h>
#include <stdarg.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <assert.h>
#include <time.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <string.h>
#include <unistd.h>
/* Create Dir Command Status */
#define WDC_STATUS_SUCCESS 0
#define WDC_STATUS_FAILURE -1
#define WDC_STATUS_INSUFFICIENT_MEMORY -2
#define WDC_STATUS_INVALID_PARAMETER -3
#define WDC_STATUS_FILE_SIZE_ZERO -27
#define WDC_STATUS_UNABLE_TO_WRITE_ALL_DATA -34
#define WDC_STATUS_DIR_ALREADY_EXISTS -36
#define WDC_STATUS_PATH_NOT_FOUND -37
#define WDC_STATUS_CREATE_DIRECTORY_FAILED -38
#define WDC_STATUS_DELETE_DIRECTORY_FAILED -39
#define WDC_STATUS_UNABLE_TO_OPEN_FILE -40
#define WDC_STATUS_UNABLE_TO_OPEN_ZIP_FILE -41
#define WDC_STATUS_UNABLE_TO_ARCHIVE_EXCEEDED_FILES_LIMIT -256
#define WDC_STATUS_NO_DATA_FILE_AVAILABLE_TO_ARCHIVE -271
#define WDC_NVME_FIRMWARE_REV_LEN 9 /* added 1 for end delimiter */
#define WDC_SERIAL_NO_LEN 20
#define SECONDS_IN_MIN 60
#define MAX_PATH_LEN 256
typedef struct _UtilsTimeInfo
{
unsigned int year;
unsigned int month;
unsigned int dayOfWeek;
unsigned int dayOfMonth;
unsigned int hour;
unsigned int minute;
unsigned int second;
unsigned int msecs;
unsigned char isDST; /*0 or 1 */
int zone; /* Zone value like +530 or -300 */
} UtilsTimeInfo, *PUtilsTimeInfo;
int wdc_UtilsSnprintf(char *buffer, unsigned int sizeOfBuffer, const char *format, ...);
void wdc_UtilsDeleteCharFromString(char* buffer, int buffSize, char charToRemove);
int wdc_UtilsGetTime(PUtilsTimeInfo timeInfo);
int wdc_UtilsStrCompare(char *pcSrc, char *pcDst);
int wdc_UtilsCreateDir(char *path);
int wdc_WriteToFile(char *fileName, char *buffer, unsigned int bufferLen);
void wdc_StrFormat(char *formatter, size_t fmt_sz, char *tofmt, size_t tofmtsz);
|