open5gs/lib/core/ogs-misc.c

92 lines
2.7 KiB
C
Raw Normal View History

2020-10-27 02:43:47 +00:00
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
/*
2020-10-27 02:43:47 +00:00
* Copyright (C) 2019-2020 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 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, see <https://www.gnu.org/licenses/>.
*/
#include "ogs-core.h"
#define PATH_SEPARATOR '/'
/* Remove trailing separators that don't affect the meaning of PATH. */
static void path_canonicalize(char *dir)
{
/* At some point this could eliminate redundant components. For
* now, it just makes sure there is no trailing slash. */
size_t len = strlen (dir);
size_t orig_len = len;
ogs_assert(dir);
while ((len > 0) && (dir[len - 1] == PATH_SEPARATOR))
len--;
if (len != orig_len)
dir[len] = 0;
}
/* Remove one component off the end of PATH. */
void ogs_path_remove_last_component(char *dir, const char *path)
{
int i;
int len = 0;
ogs_assert(dir);
ogs_assert(path);
strcpy(dir, path);
path_canonicalize (dir);
for (i = (strlen(dir) - 1); i >= 0; i--) {
if (path[i] == PATH_SEPARATOR)
break;
}
len = (i < 0) ? 0 : i;
dir[len] = 0;
}
bool ogs_path_is_absolute(const char *filename)
{
ogs_assert(filename);
if (OGS_IS_DIR_SEPARATOR(filename[0]))
return true;
#if defined(_WIN32)
if (isalpha(filename[0]) &&
filename[1] == ':' && OGS_IS_DIR_SEPARATOR(filename[2]))
return true;
#endif
return false;
}