tahoma2d/toonz/sources/stdfx/igs_resource_msg_from_err_win.h
2017-06-06 21:19:00 +09:00

89 lines
4.4 KiB
C++

#pragma once
#ifndef igs_resource_msg_from_err_h
#define igs_resource_msg_from_err_h
#include <string>
#include "igs_os_type.h" /* windows.h... */
#define igs_tostr(n) igs_tostr_(n) /* __LINE__ --> 56 */
#define igs_tostr_(n) #n /* 56 --> "56" */
#ifndef IGS_RESOURCE_LOG_EXPORT
#define IGS_RESOURCE_LOG_EXPORT
#endif
/*------ 文字コード変換 --------------------------------------------*/
namespace igs {
namespace resource {
/*--- localeを日本に設定し日本語を扱うことを指示 ---*/
IGS_RESOURCE_LOG_EXPORT void locale_to_jp(void);
/*--- マルチバイト文字列 --> ワイド文字文字列 ---*/
IGS_RESOURCE_LOG_EXPORT void mbs_to_wcs(const std::string &mbs,
std::wstring &wcs,
const UINT code_page = CP_THREAD_ACP);
/*--- ワイド文字文字列 --> マルチバイト文字列 ---*/
IGS_RESOURCE_LOG_EXPORT void wcs_to_mbs(const std::wstring &wcs,
std::string &mbs,
const UINT code_page = CP_THREAD_ACP);
/*
2012-08-22 呼び側の名前も変更
from_mbcs(-) --> ts_from_mbs(-)
mbcs_from(-) --> mbs_from_ts(-)
*/
/*--- UNICODE宣言ならマルチバイト文字列をワイド文字文字列に変換 ---*/
const std::basic_string<TCHAR> ts_from_mbs(
const std::string &mbs, const UINT code_page = CP_THREAD_ACP);
/*--- UNICODE宣言ならワイド文字文字列をマルチバイト文字列に変換 ---*/
const std::string mbs_from_ts(const std::basic_string<TCHAR> &ts,
const UINT code_page = CP_THREAD_ACP);
/*--- cp932を含む文字列をutf-8に変換(mbcsのみ) ---*/
const std::string utf8_from_cp932_mb(const std::string &text);
/*--- utf-8を含む文字列をcp932に変換(mbcsのみ) ---*/
const std::string cp932_from_utf8_mb(const std::string &text);
}
}
/*------ エラーメッセージ表示 --------------------------------------*/
namespace igs {
namespace resource {
const std::string msg_from_err_(/* 直によんではいけない */
const std::basic_string<TCHAR> &tit,
const DWORD error_message_id,
const std::basic_string<TCHAR> &file,
const std::basic_string<TCHAR> &line,
const std::basic_string<TCHAR> &funcsig,
const std::basic_string<TCHAR> &comp_type,
const std::basic_string<TCHAR> &msc_full_ver,
const std::basic_string<TCHAR> &date,
const std::basic_string<TCHAR> &time);
}
}
/*--- ::GetLastError()値からエラーメッセージを得る ---*/
#ifdef _MSC_VER
#define igs_resource_msg_from_err(tit, error_message_id) \
igs::resource::msg_from_err_( \
tit, error_message_id, TEXT(__FILE__), TEXT(igs_tostr(__LINE__)), \
TEXT(__FUNCSIG__), TEXT(igs_tostr_(_MSC_VER)), \
TEXT(igs_tostr(_MSC_FULL_VER)), TEXT(__DATE__), TEXT(__TIME__))
/*--- エラーメッセージを得る ---*/
#define igs_resource_msg_from_er(tit) \
igs::resource::msg_from_err_( \
tit, NO_ERROR, TEXT(__FILE__), TEXT(igs_tostr(__LINE__)), \
TEXT(__FUNCSIG__), TEXT(igs_tostr_(_MSC_VER)), \
TEXT(igs_tostr(_MSC_FULL_VER)), TEXT(__DATE__), TEXT(__TIME__))
#else
#define igs_resource_msg_from_err(tit, error_message_id) \
igs::resource::msg_from_err_( \
tit, error_message_id, TEXT(__FILE__), TEXT(igs_tostr(__LINE__)), \
TEXT(__PRETTY_FUNCTION__), TEXT(__VERSION__), TEXT(__VERSION__), \
TEXT(__DATE__), TEXT(__TIME__))
/*--- エラーメッセージを得る ---*/
#define igs_resource_msg_from_er(tit) \
igs::resource::msg_from_err_( \
tit, NO_ERROR, TEXT(__FILE__), TEXT(igs_tostr(__LINE__)), \
TEXT(__PRETTY_FUNCTION__), TEXT(__VERSION__), TEXT(__VERSION__), \
TEXT(__DATE__), TEXT(__TIME__))
#endif
#endif /* !igs_resource_msg_from_err_h */