clean up error handling slightly
This commit is contained in:
parent
b22c086e10
commit
3ca4cdb37a
|
@ -13,7 +13,8 @@ extern "C" {
|
|||
|
||||
using namespace i18n::phonenumbers;
|
||||
|
||||
static const char* parseErrorMessage(PhoneNumberUtil::ErrorType error) {
|
||||
namespace {
|
||||
const char* getParseErrorMessage(PhoneNumberUtil::ErrorType error) {
|
||||
using PNU = i18n::phonenumbers::PhoneNumberUtil;
|
||||
switch(error) {
|
||||
case PNU::NO_PARSING_ERROR:
|
||||
|
@ -33,6 +34,7 @@ static const char* parseErrorMessage(PhoneNumberUtil::ErrorType error) {
|
|||
return "Unable to parse number";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Utility functions for error handling
|
||||
|
@ -51,12 +53,12 @@ void reportOutOfMemory() {
|
|||
* depending on the type of the exception
|
||||
*/
|
||||
void reportException(const std::exception& exception) {
|
||||
{
|
||||
const std::bad_alloc* bad_alloc = dynamic_cast<const std::bad_alloc*>(&exception);
|
||||
if(bad_alloc != nullptr) {
|
||||
reportOutOfMemory();
|
||||
return;
|
||||
}
|
||||
|
||||
const PhoneNumberTooLongException* too_long =
|
||||
dynamic_cast<const PhoneNumberTooLongException*>(&exception);
|
||||
if(too_long != nullptr) {
|
||||
|
@ -68,7 +70,6 @@ void reportException(const std::exception& exception) {
|
|||
errdetail("%s", exception.what())));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
//If we don't have a special way to handle this exception, report
|
||||
//a generic error.
|
||||
|
@ -82,7 +83,7 @@ void reportParseError(const char* phone_number, PhoneNumberUtil::ErrorType err)
|
|||
ereport(ERROR,
|
||||
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
|
||||
errmsg("unable to parse '%s' as a phone number", phone_number),
|
||||
errdetail("%s", parseErrorMessage(err))));
|
||||
errdetail("%s", getParseErrorMessage(err))));
|
||||
}
|
||||
|
||||
void logInfo(const char* msg) {
|
||||
|
|
Loading…
Reference in New Issue