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.
|
|
|
|
|
|
|
|
/// @file util.cpp
|
|
|
|
/// @brief Unix utility methods.
|
|
|
|
/// @ingroup libaegisub
|
|
|
|
|
2011-02-10 01:41:15 +01:00
|
|
|
#include <errno.h>
|
2011-02-09 23:31:44 +01:00
|
|
|
|
2011-02-10 01:41:15 +01:00
|
|
|
#include <climits>
|
2011-07-27 00:25:21 +02:00
|
|
|
#include <cstdio>
|
2011-02-10 01:41:15 +01:00
|
|
|
|
2011-02-09 23:31:44 +01:00
|
|
|
#include "libaegisub/util.h"
|
|
|
|
|
2012-11-13 15:07:39 +01:00
|
|
|
#include <boost/algorithm/string/case_conv.hpp>
|
|
|
|
|
2011-02-09 23:31:44 +01:00
|
|
|
namespace agi {
|
|
|
|
namespace util {
|
|
|
|
|
|
|
|
void str_lower(std::string &str) {
|
2012-11-13 15:07:39 +01:00
|
|
|
boost::to_lower(str);
|
2011-02-09 23:31:44 +01:00
|
|
|
}
|
|
|
|
|
2013-01-01 17:54:55 +01:00
|
|
|
int strtoi(std::string const& str) {
|
2011-07-26 21:51:28 +02:00
|
|
|
errno = 0;
|
2012-11-13 15:07:39 +01:00
|
|
|
long l = strtol(str.c_str(), nullptr, 10);
|
2011-02-10 01:41:15 +01:00
|
|
|
|
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-09 23:31:44 +01:00
|
|
|
} // namespace util
|
|
|
|
} // namespace agi
|