400 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			400 lines
		
	
	
		
			8.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  *	The Deploy Implementation
 | |
|  *	Nana C++ Library(http://www.nanapro.org)
 | |
|  *	Copyright(C) 2003-2015 Jinhao(cnjinhao@hotmail.com)
 | |
|  *
 | |
|  *	Distributed under the Boost Software License, Version 1.0.
 | |
|  *	(See accompanying file LICENSE_1_0.txt or copy at
 | |
|  *	http://www.boost.org/LICENSE_1_0.txt)
 | |
|  *
 | |
|  *	@file: nana/depoly.cpp
 | |
|  *
 | |
|  *	What follow are dependented on what defined in nana/config.hpp
 | |
|  */
 | |
| 
 | |
| #include <nana/deploy.hpp>
 | |
| #include <cstdlib>
 | |
| #include <stdexcept>
 | |
| 
 | |
| #if defined(NANA_WINDOWS)
 | |
| 	#include <windows.h>
 | |
| #elif defined(NANA_LINUX)
 | |
| 	#include <string.h>
 | |
| 	#include PLATFORM_SPEC_HPP
 | |
| #endif
 | |
| 
 | |
| #if defined(NANA_MINGW)
 | |
| #include <sstream>
 | |
| namespace std
 | |
| {
 | |
| 	int stoi(const std::string& str, std::size_t * pos, int base)
 | |
| 	{
 | |
| 		auto sptr = str.c_str();
 | |
| 		char *end;
 | |
| 		errno = 0;
 | |
| 		auto result = std::strtol(sptr, &end, base);
 | |
| 
 | |
| 		if (sptr == end)
 | |
| 			throw std::invalid_argument("invalid stoi argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stoi argument out of range");
 | |
| 
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - sptr);
 | |
| 		return ((int)result);
 | |
| 	}
 | |
| 
 | |
| 	int stoi(const std::wstring& str, std::size_t* pos, int base)
 | |
| 	{
 | |
| 		auto sptr = str.data();
 | |
| 		wchar_t *end;
 | |
| 		errno = 0;
 | |
| 		auto result = std::wcstol(sptr, &end, base);
 | |
| 
 | |
| 		if (sptr == end)
 | |
| 			throw std::invalid_argument("invalid stoi argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stoi argument out of range");
 | |
| 
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - sptr);
 | |
| 		return ((int)result);
 | |
| 	}
 | |
| 
 | |
| 	float stof(const std::string& str, std::size_t * pos)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		char *end;
 | |
| 		auto result = std::strtof(ptr, &end);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stof argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	float stof(const std::wstring& str, std::size_t* pos)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		wchar_t *end;
 | |
| 		auto result = std::wcstof(ptr, &end);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stof argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	double stod(const std::string& str, std::size_t * pos)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		char *end;
 | |
| 		auto result = std::strtod(ptr, &end);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stod argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	double stod(const std::wstring& str, std::size_t* pos)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		wchar_t *end;
 | |
| 		auto result = std::wcstod(ptr, &end);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stod argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	long double stold(const std::string& str, std::size_t * pos)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		char *end;
 | |
| 		auto result = std::strtold(ptr, &end);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stold argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	long double stold(const std::wstring& str, std::size_t* pos)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		wchar_t *end;
 | |
| 		auto result = std::wcstold(ptr, &end);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stold argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	long stol(const std::string& str, std::size_t* pos, int base)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		char *end;
 | |
| 		auto result = std::strtol(ptr, &end, base);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stol argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	long stol(const std::wstring& str, std::size_t* pos, int base)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		wchar_t *end;
 | |
| 		auto result = std::wcstol(ptr, &end, base);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stol argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	//Workaround for no implemenation of std::stoll in MinGW.
 | |
| 	long long stoll(const std::string& str, std::size_t* pos, int base)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		char* end;
 | |
| 		auto result = std::strtoll(ptr, &end, base);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stoll argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	long long stoll(const std::wstring& str, std::size_t* pos, int base)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		wchar_t* end;
 | |
| 		auto result = std::wcstoll(ptr, &end, base);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stoll argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	unsigned long long stoull(const std::string& str, std::size_t* pos, int base)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		char* end;
 | |
| 		auto result = std::strtoull(ptr, &end, base);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stoull argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	unsigned long long stoull(const std::wstring& str, std::size_t* pos, int base)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		wchar_t* end;
 | |
| 		auto result = std::wcstoull(ptr, &end, base);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stoull argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	//Workaround for no implemenation of std::stoul in MinGW.
 | |
| 	unsigned long stoul(const std::string& str, std::size_t* pos, int base)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		char* end;
 | |
| 		auto result = std::strtoul(ptr, &end, base);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stoul argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	unsigned long stoul(const std::wstring& str, std::size_t* pos, int base)
 | |
| 	{
 | |
| 		auto *ptr = str.data();
 | |
| 		errno = 0;
 | |
| 		wchar_t* end;
 | |
| 		auto result = std::wcstoul(ptr, &end, base);
 | |
| 
 | |
| 		if (ptr == end)
 | |
| 			throw std::invalid_argument("invalid stod argument");
 | |
| 		if (errno == ERANGE)
 | |
| 			throw std::out_of_range("stoul argument out of range");
 | |
| 		if (pos)
 | |
| 			*pos = (std::size_t)(end - ptr);
 | |
| 		return result;
 | |
| 	}
 | |
| 
 | |
| 	std::wstring to_wstring(double v)
 | |
| 	{
 | |
| 		std::wstringstream ss;
 | |
| 		ss << v;
 | |
| 		return ss.str();
 | |
| 	}
 | |
| 
 | |
| 	std::wstring to_wstring(long double v)
 | |
| 	{
 | |
| 		std::wstringstream ss;
 | |
| 		ss << v;
 | |
| 		return ss.str();
 | |
| 	}
 | |
| 
 | |
| 	std::wstring to_wstring(unsigned v)
 | |
| 	{
 | |
| 		std::wstringstream ss;
 | |
| 		ss << v;
 | |
| 		return ss.str();
 | |
| 	}
 | |
| 
 | |
| 	std::wstring to_wstring(int v)
 | |
| 	{
 | |
| 		std::wstringstream ss;
 | |
| 		ss << v;
 | |
| 		return ss.str();
 | |
| 	}
 | |
| 
 | |
| 	std::wstring to_wstring(long v)
 | |
| 	{
 | |
| 		std::wstringstream ss;
 | |
| 		ss << v;
 | |
| 		return ss.str();
 | |
| 	}
 | |
| 
 | |
| 	std::wstring to_wstring(unsigned long v)
 | |
| 	{
 | |
| 		std::wstringstream ss;
 | |
| 		ss << v;
 | |
| 		return ss.str();
 | |
| 	}
 | |
| 
 | |
| 	std::wstring to_wstring(long long v)
 | |
| 	{
 | |
| 		std::wstringstream ss;
 | |
| 		ss << v;
 | |
| 		return ss.str();
 | |
| 	}
 | |
| 
 | |
| 	std::wstring to_wstring(unsigned long long v)
 | |
| 	{
 | |
| 		std::wstringstream ss;
 | |
| 		ss << v;
 | |
| 		return ss.str();
 | |
| 	}
 | |
| 
 | |
| 	std::wstring to_wstring(float v)
 | |
| 	{
 | |
| 		std::wstringstream ss;
 | |
| 		ss << v;
 | |
| 		return ss.str();
 | |
| 	}
 | |
| }
 | |
| #endif
 | |
| 
 | |
| namespace nana
 | |
| {
 | |
| 	std::size_t strlen(const char_t* str)
 | |
| 	{
 | |
| #if defined(NANA_UNICODE)
 | |
| 		return ::wcslen(str);
 | |
| #else
 | |
| 		return ::strlen(str);
 | |
| #endif
 | |
| 	}
 | |
| 
 | |
| 	char_t* strcpy(char_t* dest, const char_t* source)
 | |
| 	{
 | |
| #if defined(NANA_UNICODE)
 | |
| 		return ::wcscpy(dest, source);
 | |
| #else
 | |
| 		return ::strcpy(dest, source);
 | |
| #endif
 | |
| 	}
 | |
| }
 | |
| 
 | |
| namespace nana
 | |
| {
 | |
| 	bool is_incomplete(const nana::string& str, unsigned pos)
 | |
| 	{
 | |
| #ifndef NANA_UNICODE
 | |
| 		if(pos > str.size())
 | |
| 			pos = static_cast<unsigned>(str.size());
 | |
| 		const nana::char_t * pstr = str.c_str();
 | |
| 		if(pstr[pos] < 0)
 | |
| 		{
 | |
| 			bool incomp = false;
 | |
| 			for(unsigned i = 0; i < pos; ++i)
 | |
| 			{
 | |
| 				if(pstr[i] < 0)
 | |
| 					incomp = !incomp;
 | |
| 				else
 | |
| 					incomp = false;
 | |
| 			}
 | |
| 			return incomp;
 | |
| 		}
 | |
| #endif
 | |
| 		return false;
 | |
| 	}
 | |
| }
 | 
