2011-02-09 23:31:44 +01:00
|
|
|
// Copyright (c) 2011, Amar Takhar <verm@aegisub.org>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file util.cpp
|
|
|
|
/// @brief Unix utility methods.
|
|
|
|
/// @ingroup libaegisub
|
|
|
|
|
|
|
|
#ifndef LAGI_PRE
|
2011-02-11 00:55:59 +01:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
2011-02-10 01:41:15 +01:00
|
|
|
|
|
|
|
#include <errno.h>
|
2011-02-11 00:55:59 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2011-02-09 23:31:44 +01:00
|
|
|
|
2011-02-10 01:41:15 +01:00
|
|
|
#include <climits>
|
2011-02-09 23:31:44 +01:00
|
|
|
#include <locale>
|
2011-02-10 01:41:15 +01:00
|
|
|
#endif
|
|
|
|
|
2011-02-09 23:31:44 +01:00
|
|
|
|
|
|
|
#include "libaegisub/util.h"
|
|
|
|
|
|
|
|
namespace agi {
|
|
|
|
namespace util {
|
|
|
|
|
|
|
|
|
|
|
|
void str_lower(std::string &str) {
|
|
|
|
for (size_t i=0; i < str.length(); ++i) {
|
|
|
|
str[i] = std::tolower(str[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-11 00:55:59 +01:00
|
|
|
|
2011-02-10 01:41:15 +01:00
|
|
|
int strtoi(std::string &str) {
|
|
|
|
long l = strtol(str.c_str(), NULL, 10);
|
|
|
|
|
2011-02-10 02:36:25 +01:00
|
|
|
if ((errno == ERANGE) || (l < INT_MIN) || (l > INT_MAX))
|
|
|
|
return 0;
|
2011-02-10 01:41:15 +01:00
|
|
|
|
|
|
|
return (int)l;
|
|
|
|
}
|
|
|
|
|
2011-02-11 00:55:59 +01:00
|
|
|
|
|
|
|
uint64_t freespace(std::string &path, PathType type) {
|
|
|
|
struct statfs fs;
|
|
|
|
std::string check(path);
|
|
|
|
|
|
|
|
if (type == TypeFile)
|
|
|
|
check.assign(DirName(path));
|
|
|
|
|
|
|
|
acs::CheckDirRead(check);
|
|
|
|
|
|
|
|
if ((statfs(check.c_str(), &fs)) == 0) {
|
|
|
|
return fs.f_bsize * fs.f_bavail;
|
|
|
|
} else {
|
|
|
|
/// @todo We need a collective set of exceptions for ENOTDIR, EIO etc.
|
|
|
|
throw("Failed getting free space");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-09 23:31:44 +01:00
|
|
|
} // namespace util
|
|
|
|
} // namespace agi
|