92 lines
2.3 KiB
C++
92 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 2023 Fancy Code.
|
|
* 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 "StorageBase.h"
|
|
#include "ILog.h"
|
|
#include "IStorageManager.h"
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
bool StorageBase::CheckDirectory(const char *filepath)
|
|
{
|
|
LogInfo("CheckDirectory:%s\n", filepath);
|
|
char *path = nullptr;
|
|
char *sep = nullptr;
|
|
struct stat st = {0};
|
|
|
|
path = strdup(filepath);
|
|
if (!path) {
|
|
LogError("strdup\n");
|
|
return false;
|
|
}
|
|
|
|
for (sep = strchr(path, '/'); sep != NULL; sep = strchr(sep + 1, '/')) {
|
|
*sep = '\0';
|
|
if (strlen(path) == 0) {
|
|
*sep = '/';
|
|
continue;
|
|
}
|
|
if (stat(path, &st) == -1) {
|
|
if (errno == ENOENT) {
|
|
if (mkdir(path, 0755) == -1) {
|
|
LogError("mkdir path failed:%s\n", path);
|
|
free(path);
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
LogError("stat\n");
|
|
free(path);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
*sep = '/';
|
|
}
|
|
// TODO: check if files exist finally here.
|
|
free(path);
|
|
return true;
|
|
}
|
|
const char *StorageBase::PrintStringStorageEvent(const StorageEvent &event)
|
|
{
|
|
switch (event) {
|
|
case StorageEvent::SD_CARD_INSERT: {
|
|
return "SD_CARD_INSERT";
|
|
break;
|
|
}
|
|
case StorageEvent::SD_CARD_REMOVE: {
|
|
return "SD_CARD_REMOVE";
|
|
break;
|
|
}
|
|
case StorageEvent::SD_ABNORMAL: {
|
|
return "SD_ABNORMAL";
|
|
break;
|
|
}
|
|
case StorageEvent::EMMC_NORMAL: {
|
|
return "EMMC_NORMAL";
|
|
break;
|
|
}
|
|
case StorageEvent::END: {
|
|
return "END";
|
|
break;
|
|
}
|
|
|
|
default: {
|
|
return "UNDEFINE";
|
|
break;
|
|
}
|
|
}
|
|
} |