better XRC errors reporting: report location of the error and use unified formatting

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59556 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2009-03-15 10:29:14 +00:00
parent 95fb31530e
commit 819559b2ac
18 changed files with 351 additions and 75 deletions

View File

@@ -261,6 +261,13 @@ public:
{ return GetResourceNodeAndLocation(name, wxString(), true); } { return GetResourceNodeAndLocation(name, wxString(), true); }
protected: protected:
// reports input error at position 'context'
void ReportError(wxXmlNode *context, const wxString& message);
// override this in derived class to customize errors reporting
virtual void DoReportError(const wxString& xrcFile, wxXmlNode *position,
const wxString& message);
// Scans the resources list for unloaded files and loads them. Also reloads // Scans the resources list for unloaded files and loads them. Also reloads
// files that have been modified since last loading. // files that have been modified since last loading.
bool UpdateResources(); bool UpdateResources();
@@ -529,6 +536,13 @@ protected:
#if wxUSE_FILESYSTEM #if wxUSE_FILESYSTEM
wxFileSystem& GetCurFileSystem() { return m_resource->GetCurFileSystem(); } wxFileSystem& GetCurFileSystem() { return m_resource->GetCurFileSystem(); }
#endif #endif
// reports input error at position 'context'
void ReportError(wxXmlNode *context, const wxString& message);
// reports input error at m_node
void ReportError(const wxString& message);
// reports input error when parsing parameter with given name
void ReportParamError(const wxString& param, const wxString& message);
}; };

View File

@@ -334,6 +334,60 @@ public:
hasn't been found in the list of loaded resources. hasn't been found in the list of loaded resources.
*/ */
bool Unload(const wxString& filename); bool Unload(const wxString& filename);
protected:
/**
Reports error in XRC resources to the user.
Any errors in XRC input files should be reported using this method
(or its wxXmlResourceHandler::ReportError() equivalent). Unlike
wxLogError(), this method presents the error to the user in a more
usable form. In particular, the output is compiler-like and contains
information about the exact location of the error.
@param context XML node the error occurred in or relates to. This can
be @NULL, but should be the most specific node possible,
as its line number is what is reported to the user.
@param message Text of the error message. This string should always
be in English (i.e. not wrapped in _()). It shouldn't
be a sentence -- it should start with lower-case letter
and shouldn't have a trailing period or exclamation
point.
@since 2.9.0
@see wxXmlResourceHandler::ReportError(), DoReportError()
*/
void ReportError(wxXmlNode *context, const wxString& message);
/**
Implementation of XRC resources errors reporting.
This method is called by ReportError() and shouldn't be called
directly; use ReportError() or wxXmlResourceHandler::ReportError()
to log errors.
Default implementation uses wxLogError().
@param xrcFile File the error occurred in or empty string if it
couldn't be determined.
@param position XML node where the error occurred or @NULL if it
couldn't be determined.
@param message Text of the error message. See ReportError()
documentation for details of the string's format.
@note
You may override this method in a derived class to customize errors
reporting. If you do so, you'll need to either use the derived class
in all your code or call wxXmlResource::Set() to change the global
wxXmlResource instance to your class.
@since 2.9.0
@see ReportError()
*/
virtual void DoReportError(const wxString& xrcFile, wxXmlNode *position,
const wxString& message);
}; };
@@ -544,5 +598,32 @@ protected:
Sets common window options. Sets common window options.
*/ */
void SetupWindow(wxWindow* wnd); void SetupWindow(wxWindow* wnd);
/**
Reports error in XRC resources to the user.
See wxXmlResource::ReportError() for more information.
@since 2.9.0
*/
void ReportError(wxXmlNode *context, const wxString& message);
/**
Like ReportError(wxXmlNode*, const wxString&), but uses the node
of currently processed object (m_node) as the context.
@since 2.9.0
*/
void ReportError(const wxString& message);
/**
Like ReportError(wxXmlNode*, const wxString&), but uses the node
of parameter @a param of the currently processed object as the context.
This is convenience function for reporting errors in particular
parameters.
@since 2.9.0
*/
void ReportParamError(const wxString& param, const wxString& message);
}; };

View File

@@ -44,8 +44,7 @@ wxObject *wxBitmapComboBoxXmlHandler::DoCreateResource()
{ {
if ( !m_combobox ) if ( !m_combobox )
{ {
wxLogError(_("XRC syntex error: ownerdrawnitem only allowed within " ReportError("ownerdrawnitem only allowed within a wxBitmapComboBox");
" a bitmapcombobox!"));
return NULL; return NULL;
} }

View File

@@ -86,12 +86,14 @@ wxObject *wxChoicebookXmlHandler::DoCreateResource()
} }
} }
else else
wxLogError(wxT("Error in resource.")); {
ReportError(n, "choicebookpage child must be a window");
}
return wnd; return wnd;
} }
else else
{ {
wxLogError(wxT("Error in resource: no control within choicebook's <page> tag.")); ReportError("choicebookpage must have a window child");
return NULL; return NULL;
} }
} }

View File

@@ -54,7 +54,7 @@ wxObject *wxCollapsiblePaneXmlHandler::DoCreateResource()
} }
else else
{ {
wxLogError(wxT("Error in resource: no control within collapsible pane's <panewindow> tag.")); ReportError("no control within panewindow");
return NULL; return NULL;
} }
} }
@@ -65,7 +65,7 @@ wxObject *wxCollapsiblePaneXmlHandler::DoCreateResource()
wxString label = GetParamValue(wxT("label")); wxString label = GetParamValue(wxT("label"));
if (label.empty()) if (label.empty())
{ {
wxLogError(wxT("Error in resource: empty label for wxCollapsiblePane")); ReportParamError("label", "label cannot be empty");
return NULL; return NULL;
} }

View File

@@ -86,12 +86,14 @@ wxObject *wxListbookXmlHandler::DoCreateResource()
} }
} }
else else
wxLogError(wxT("Error in resource.")); {
ReportError(n, "listbookpage child must be a window");
}
return wnd; return wnd;
} }
else else
{ {
wxLogError(wxT("Error in resource: no control within listbook's <page> tag.")); ReportError("listbookpage must have a window child");
return NULL; return NULL;
} }
} }

View File

@@ -88,7 +88,7 @@ wxWindow *wxMdiXmlHandler::CreateFrame()
if ( !mdiParent ) if ( !mdiParent )
{ {
wxLogError(wxT("Parent of wxMDIChildFrame must be wxMDIParentFrame.")); ReportError("parent of wxMDIChildFrame must be wxMDIParentFrame");
return NULL; return NULL;
} }

View File

@@ -91,9 +91,11 @@ wxObject *wxMenuXmlHandler::DoCreateResource()
{ {
if ( kind != wxITEM_NORMAL ) if ( kind != wxITEM_NORMAL )
{ {
wxLogWarning(_("XRC syntax error: a menu item can't have " ReportParamError
"both \"radio\" and \"checkable\" " (
"properties, ignoring the former.")); "checkable",
"menu item can't have both <radio> and <checkable> properties"
);
} }
kind = wxITEM_CHECK; kind = wxITEM_CHECK;

View File

@@ -89,12 +89,14 @@ wxObject *wxNotebookXmlHandler::DoCreateResource()
} }
} }
else else
wxLogError(wxT("Error in resource.")); {
ReportError(n, "notebookpage child must be a window");
}
return wnd; return wnd;
} }
else else
{ {
wxLogError(wxT("Error in resource: no control within notebook's <page> tag.")); ReportError("notebookpage must have a window child");
return NULL; return NULL;
} }
} }

View File

@@ -89,12 +89,14 @@ wxObject *wxPropertySheetDialogXmlHandler::DoCreateResource()
} }
} }
else else
wxLogError(wxT("Error in resource.")); {
ReportError(n, "propertysheetpage child must be a window");
}
return wnd; return wnd;
} }
else else
{ {
wxLogError(wxT("Error in resource: no control within wxPropertySheetDialog's <page> tag.")); ReportError("propertysheetpage must have a window child");
return NULL; return NULL;
} }
} }

View File

@@ -161,7 +161,7 @@ wxObject* wxSizerXmlHandler::Handle_sizeritem()
else if (wnd) else if (wnd)
sitem->AssignWindow(wnd); sitem->AssignWindow(wnd);
else else
wxLogError(wxT("Error in resource.")); ReportError(n, "unexpected item in sizer");
// finally, set other wxSizerItem attributes // finally, set other wxSizerItem attributes
SetSizerItemAttributes(sitem); SetSizerItemAttributes(sitem);
@@ -171,7 +171,7 @@ wxObject* wxSizerXmlHandler::Handle_sizeritem()
} }
else /*n == NULL*/ else /*n == NULL*/
{ {
wxLogError(wxT("Error in resource: no window/sizer/spacer within sizeritem object.")); ReportError("no window/sizer/spacer within sizeritem object");
return NULL; return NULL;
} }
} }
@@ -181,8 +181,7 @@ wxObject* wxSizerXmlHandler::Handle_spacer()
{ {
if ( !m_parentSizer ) if ( !m_parentSizer )
{ {
wxLogError(_("XRC syntax error: \"spacer\" only allowed inside a " ReportError("spacer only allowed inside a sizer");
"sizer"));
return NULL; return NULL;
} }
@@ -205,7 +204,7 @@ wxObject* wxSizerXmlHandler::Handle_sizer()
(!parentNode || parentNode->GetType() != wxXML_ELEMENT_NODE || (!parentNode || parentNode->GetType() != wxXML_ELEMENT_NODE ||
!m_parentAsWindow) ) !m_parentAsWindow) )
{ {
wxLogError(_("XRC syntax error: sizer must have a window parent.")); ReportError("sizer must have a window parent");
return NULL; return NULL;
} }
@@ -232,7 +231,7 @@ wxObject* wxSizerXmlHandler::Handle_sizer()
if ( !sizer ) if ( !sizer )
{ {
wxLogError(_T("Failed to create size of class \"%s\""), m_class.c_str()); ReportError(wxString::Format("unknown sizer class \"%s\"", m_class));
return NULL; return NULL;
} }
@@ -348,7 +347,11 @@ void wxSizerXmlHandler::SetGrowables(wxFlexGridSizer* sizer,
{ {
if (!tkn.GetNextToken().ToULong(&l)) if (!tkn.GetNextToken().ToULong(&l))
{ {
wxLogError(wxT("growable[rows|cols] must be comma-separated list of row numbers")); ReportParamError
(
param,
"value must be comma-separated list of row numbers"
);
break; break;
} }
@@ -467,13 +470,13 @@ wxObject *wxStdDialogButtonSizerXmlHandler::DoCreateResource()
if (button) if (button)
m_parentSizer->AddButton(button); m_parentSizer->AddButton(button);
else else
wxLogError(wxT("Error in resource - expected button.")); ReportError(n, "expected wxButton");
return item; return item;
} }
else /*n == NULL*/ else /*n == NULL*/
{ {
wxLogError(wxT("Error in resource: no button within wxStdDialogButtonSizer.")); ReportError("no button within wxStdDialogButtonSizer");
return NULL; return NULL;
} }
} }

View File

@@ -87,7 +87,7 @@ wxObject *wxSplitterWindowXmlHandler::DoCreateResource()
} }
if (win1 == NULL) if (win1 == NULL)
wxLogError(wxT("wxSplitterWindow node must contain at least one window.")); ReportError("wxSplitterWindow node must contain at least one window");
bool horizontal = (GetParamValue(wxT("orientation")) != wxT("vertical")); bool horizontal = (GetParamValue(wxT("orientation")) != wxT("vertical"));
if (win1 && win2) if (win1 && win2)

View File

@@ -79,7 +79,17 @@ wxObject *wxStatusBarXmlHandler::DoCreateResource()
else if (first == wxT("wxSB_RAISED")) else if (first == wxT("wxSB_RAISED"))
style[i] = wxSB_RAISED; style[i] = wxSB_RAISED;
else if (!first.empty()) else if (!first.empty())
wxLogError(wxT("Error in resource, unknown statusbar field style: ") + first); {
ReportParamError
(
"styles",
wxString::Format
(
"unknown status bar field style \"%s\"",
first
)
);
}
if(styles.Find(wxT(','))) if(styles.Find(wxT(',')))
styles.Remove(0, styles.Find(wxT(',')) + 1); styles.Remove(0, styles.Find(wxT(',')) + 1);

View File

@@ -57,8 +57,7 @@ wxObject *wxToolBarXmlHandler::DoCreateResource()
{ {
if ( !m_toolbar ) if ( !m_toolbar )
{ {
wxLogError(_("XRC syntax error: \"tool\" only allowed inside a " ReportError("tool only allowed inside a wxToolBar");
"toolbar"));
return NULL; return NULL;
} }
@@ -70,9 +69,11 @@ wxObject *wxToolBarXmlHandler::DoCreateResource()
{ {
if ( kind != wxITEM_NORMAL ) if ( kind != wxITEM_NORMAL )
{ {
wxLogWarning(_("XRC syntax error: tool can't have both " ReportParamError
"\"radio\" and \"toggle\" properties, " (
"ignoring the former.")); "toggle",
"tool can't have both <radio> and <toggle> properties"
);
} }
kind = wxITEM_CHECK; kind = wxITEM_CHECK;
@@ -85,9 +86,11 @@ wxObject *wxToolBarXmlHandler::DoCreateResource()
{ {
if ( kind != wxITEM_NORMAL ) if ( kind != wxITEM_NORMAL )
{ {
wxLogWarning(_("XRC syntax error: drop-down tool can't have " ReportParamError
"neither \"radio\" nor \"toggle\" properties, " (
"ignoring them.")); "dropdown",
"drop-down tool can't have neither <radio> nor <toggle> properties"
);
} }
kind = wxITEM_DROPDOWN; kind = wxITEM_DROPDOWN;
@@ -102,14 +105,20 @@ wxObject *wxToolBarXmlHandler::DoCreateResource()
menu = wxDynamicCast(res, wxMenu); menu = wxDynamicCast(res, wxMenu);
if ( !menu ) if ( !menu )
{ {
wxLogError(_("XRC syntax error: invalid drop-down tool " ReportError
"contents (expected a menu).")); (
nodeMenu,
"drop-down tool contents can only be a wxMenu"
);
} }
if ( nodeMenu->GetNext() ) if ( nodeMenu->GetNext() )
{ {
wxLogWarning(_("XRC syntax error: unexpected extra " ReportError
"contents under drop-down tool.")); (
nodeMenu->GetNext(),
"unexpected extra contents under drop-down tool"
);
} }
} }
} }
@@ -139,8 +148,7 @@ wxObject *wxToolBarXmlHandler::DoCreateResource()
{ {
if ( !m_toolbar ) if ( !m_toolbar )
{ {
wxLogError(_("XRC syntax error: \"separator\" only allowed inside a " ReportError("separator only allowed inside wxToolBar");
"toolbar"));
return NULL; return NULL;
} }
m_toolbar->AddSeparator(); m_toolbar->AddSeparator();

View File

@@ -95,7 +95,9 @@ wxObject *wxTreebookXmlHandler::DoCreateResource()
wnd = wxDynamicCast(item, wxWindow); wnd = wxDynamicCast(item, wxWindow);
if (wnd == NULL && item != NULL) if (wnd == NULL && item != NULL)
wxLogError(wxT("Error in resource: control within treebook's <page> tag is not a window.")); {
ReportError(n, "treebookpage child must be a window");
}
} }
size_t depth = GetLong( wxT("depth") ); size_t depth = GetLong( wxT("depth") );
@@ -134,7 +136,10 @@ wxObject *wxTreebookXmlHandler::DoCreateResource()
} }
else else
wxLogError(wxT("Error in resource. wxTreebookPage has an invalid depth.")); {
ReportParamError("depth", "invalid depth");
}
return wnd; return wnd;
} }

View File

@@ -75,7 +75,7 @@ wxObject *wxWizardXmlHandler::DoCreateResource()
{ {
if ( !m_instance ) if ( !m_instance )
{ {
wxLogError(wxT("wxWizardPage is abstract class, must be subclassed")); ReportError("wxWizardPage is abstract class and must be subclassed");
return NULL; return NULL;
} }

View File

@@ -60,8 +60,11 @@ wxAnimation wxXmlResourceHandler::GetAnimation(const wxString& param)
if ( !ani.IsOk() ) if ( !ani.IsOk() )
{ {
wxLogError(_("XRC resource: Cannot create animation from '%s'."), ReportParamError
name.c_str()); (
param,
wxString::Format("cannot create animation from \"%s\"", name)
);
return wxNullAnimation; return wxNullAnimation;
} }

View File

@@ -403,7 +403,7 @@ bool wxXmlResource::AttachUnknownControl(const wxString& name,
wxWindow *container = parent->FindWindow(name + wxT("_container")); wxWindow *container = parent->FindWindow(name + wxT("_container"));
if (!container) if (!container)
{ {
wxLogError(_("Cannot find container for unknown control '%s'."), name.c_str()); wxLogError("Cannot find container for unknown control '%s'.", name);
return false; return false;
} }
return control->Reparent(container); return control->Reparent(container);
@@ -543,7 +543,11 @@ bool wxXmlResource::UpdateResources()
} }
else if (rec->Doc->GetRoot()->GetName() != wxT("resource")) else if (rec->Doc->GetRoot()->GetName() != wxT("resource"))
{ {
wxLogError(_("Invalid XRC resource '%s': doesn't have root node 'resource'."), rec->File); ReportError
(
rec->Doc->GetRoot(),
"invalid XRC resource, doesn't have root node <resource>"
);
wxDELETE(rec->Doc); wxDELETE(rec->Doc);
rt = false; rt = false;
} }
@@ -562,7 +566,7 @@ bool wxXmlResource::UpdateResources()
m_version = version; m_version = version;
if (m_version != version) if (m_version != version)
{ {
wxLogError(_("Resource files must have same version number!")); wxLogError("Resource files must have same version number.");
rt = false; rt = false;
} }
@@ -651,8 +655,15 @@ wxXmlNode *wxXmlResource::FindResource(const wxString& name,
if ( !node ) if ( !node )
{ {
wxLogError(_("XRC resource '%s' (class '%s') not found!"), ReportError
name, classname); (
NULL,
wxString::Format
(
"XRC resource \"%s\" (class \"%s\") not found",
name, classname
)
);
} }
#if wxUSE_FILESYSTEM #if wxUSE_FILESYSTEM
else // node was found else // node was found
@@ -770,8 +781,15 @@ wxObject *wxXmlResource::CreateResFromNode(wxXmlNode *node, wxObject *parent,
if ( !refNode ) if ( !refNode )
{ {
wxLogError(_("Referenced object node with ref=\"%s\" not found!"), ReportError
refName.c_str()); (
node,
wxString::Format
(
"referenced object node with ref=\"%s\" not found",
refName
)
);
return NULL; return NULL;
} }
@@ -799,9 +817,16 @@ wxObject *wxXmlResource::CreateResFromNode(wxXmlNode *node, wxObject *parent,
} }
} }
wxLogError(_("No handler found for XML node '%s', class '%s'!"), ReportError
node->GetName().c_str(), (
node->GetAttribute(wxT("class"), wxEmptyString).c_str()); node,
wxString::Format
(
"no handler found for XML node \"%s\" (class \"%s\")",
node->GetName(),
node->GetAttribute("class", wxEmptyString)
)
);
return NULL; return NULL;
} }
@@ -873,8 +898,15 @@ wxObject *wxXmlResourceHandler::CreateResource(wxXmlNode *node, wxObject *parent
if (!m_instance) if (!m_instance)
{ {
wxString name = node->GetAttribute(wxT("name"), wxEmptyString); wxString name = node->GetAttribute(wxT("name"), wxEmptyString);
wxLogError(_("Subclass '%s' not found for resource '%s', not subclassing!"), ReportError
subclass.c_str(), name.c_str()); (
node,
wxString::Format
(
"subclass \"%s\" not found for resource \"%s\", not subclassing",
subclass, name
)
);
} }
} }
} }
@@ -948,9 +980,17 @@ int wxXmlResourceHandler::GetStyle(const wxString& param, int defaults)
fl = tkn.GetNextToken(); fl = tkn.GetNextToken();
index = m_styleNames.Index(fl); index = m_styleNames.Index(fl);
if (index != wxNOT_FOUND) if (index != wxNOT_FOUND)
{
style |= m_styleValues[index]; style |= m_styleValues[index];
}
else else
wxLogError(_("Unknown style flag ") + fl); {
ReportParamError
(
param,
wxString::Format("unknown style flag \"%s\"", fl)
);
}
} }
return style; return style;
} }
@@ -1175,8 +1215,11 @@ wxColour wxXmlResourceHandler::GetColour(const wxString& param, const wxColour&
if (clr.Ok()) if (clr.Ok())
return clr; return clr;
wxLogError(_("XRC resource: Incorrect colour specification '%s' for attribute '%s'."), ReportParamError
v.c_str(), param.c_str()); (
param,
wxString::Format("incorrect colour specification \"%s\"", v)
);
return wxNullColour; return wxNullColour;
} }
@@ -1217,8 +1260,11 @@ wxBitmap wxXmlResourceHandler::GetBitmap(const wxString& param,
wxFSFile *fsfile = GetCurFileSystem().OpenFile(name, wxFS_READ | wxFS_SEEKABLE); wxFSFile *fsfile = GetCurFileSystem().OpenFile(name, wxFS_READ | wxFS_SEEKABLE);
if (fsfile == NULL) if (fsfile == NULL)
{ {
wxLogError(_("XRC resource: Cannot create bitmap from '%s'."), ReportParamError
name.c_str()); (
param,
wxString::Format("cannot open bitmap resource \"%s\"", name)
);
return wxNullBitmap; return wxNullBitmap;
} }
wxImage img(*(fsfile->GetStream())); wxImage img(*(fsfile->GetStream()));
@@ -1229,8 +1275,11 @@ wxBitmap wxXmlResourceHandler::GetBitmap(const wxString& param,
if (!img.Ok()) if (!img.Ok())
{ {
wxLogError(_("XRC resource: Cannot create bitmap from '%s'."), ReportParamError
name.c_str()); (
param,
wxString::Format("cannot create bitmap from \"%s\"", name)
);
return wxNullBitmap; return wxNullBitmap;
} }
if (!(size == wxDefaultSize)) img.Rescale(size.x, size.y); if (!(size == wxDefaultSize)) img.Rescale(size.x, size.y);
@@ -1321,7 +1370,11 @@ wxSize wxXmlResourceHandler::GetSize(const wxString& param,
if (!s.BeforeFirst(wxT(',')).ToLong(&sx) || if (!s.BeforeFirst(wxT(',')).ToLong(&sx) ||
!s.AfterLast(wxT(',')).ToLong(&sy)) !s.AfterLast(wxT(',')).ToLong(&sy))
{ {
wxLogError(_("Cannot parse coordinates from '%s'."), s.c_str()); ReportParamError
(
param,
wxString::Format("cannot parse coordinates value \"%s\"", s)
);
return wxDefaultSize; return wxDefaultSize;
} }
@@ -1337,7 +1390,11 @@ wxSize wxXmlResourceHandler::GetSize(const wxString& param,
} }
else else
{ {
wxLogError(_("Cannot convert dialog units: dialog unknown.")); ReportParamError
(
param,
"cannot convert dialog units: dialog unknown"
);
return wxDefaultSize; return wxDefaultSize;
} }
} }
@@ -1369,7 +1426,11 @@ wxCoord wxXmlResourceHandler::GetDimension(const wxString& param,
if (!s.ToLong(&sx)) if (!s.ToLong(&sx))
{ {
wxLogError(_("Cannot parse dimension from '%s'."), s.c_str()); ReportParamError
(
param,
wxString::Format("cannot parse dimension value \"%s\"", s)
);
return defaultv; return defaultv;
} }
@@ -1385,7 +1446,11 @@ wxCoord wxXmlResourceHandler::GetDimension(const wxString& param,
} }
else else
{ {
wxLogError(_("Cannot convert dialog units: dialog unknown.")); ReportParamError
(
param,
"cannot convert dialog units: dialog unknown"
);
return defaultv; return defaultv;
} }
} }
@@ -1419,7 +1484,8 @@ wxFont wxXmlResourceHandler::GetFont(const wxString& param)
wxXmlNode *font_node = GetParamNode(param); wxXmlNode *font_node = GetParamNode(param);
if (font_node == NULL) if (font_node == NULL)
{ {
wxLogError(_("Cannot find font node '%s'."), param.c_str()); ReportError(
wxString::Format("cannot find font node \"%s\"", param));
return wxNullFont; return wxNullFont;
} }
@@ -1610,12 +1676,87 @@ void wxXmlResourceHandler::CreateChildrenPrivately(wxObject *parent, wxXmlNode *
} }
//-----------------------------------------------------------------------------
// errors reporting
//-----------------------------------------------------------------------------
void wxXmlResourceHandler::ReportError(const wxString& message)
{
m_resource->ReportError(m_node, message);
}
void wxXmlResourceHandler::ReportError(wxXmlNode *context,
const wxString& message)
{
m_resource->ReportError(context ? context : m_node, message);
}
void wxXmlResourceHandler::ReportParamError(const wxString& param,
const wxString& message)
{
m_resource->ReportError(GetParamNode(param), message);
}
namespace
{
wxString
GetFileNameFromNode(wxXmlNode *node, const wxXmlResourceDataRecords& files)
{
wxXmlNode *root = node;
while ( root->GetParent() )
root = root->GetParent();
for ( wxXmlResourceDataRecords::const_iterator i = files.begin();
i != files.end(); ++i )
{
if ( (*i)->Doc->GetRoot() == root )
{
return (*i)->File;
}
}
return wxEmptyString; // not found
}
} // anonymous namespace
void wxXmlResource::ReportError(wxXmlNode *context, const wxString& message)
{
if ( !context )
{
DoReportError("", NULL, message);
return;
}
// We need to find out the file that 'context' is part of. Performance of
// this code is not critical, so we simply find the root XML node and
// compare it with all loaded XRC files.
const wxString filename = GetFileNameFromNode(context, Data());
DoReportError(filename, context, message);
}
void wxXmlResource::DoReportError(const wxString& xrcFile, wxXmlNode *position,
const wxString& message)
{
const int line = position ? position->GetLineNumber() : -1;
wxString loc;
if ( !xrcFile.empty() )
loc = xrcFile + ':';
if ( line != -1 )
loc += wxString::Format("%d:", line);
if ( !loc.empty() )
loc += ' ';
wxLogError("XRC error: %s%s", loc, message);
}
//-----------------------------------------------------------------------------
// XRCID implementation
//-----------------------------------------------------------------------------
// --------------- XRCID implementation -----------------------------
#define XRCID_TABLE_SIZE 1024 #define XRCID_TABLE_SIZE 1024
@@ -1858,7 +1999,9 @@ static void AddStdXRCID_Records()
// --------------- module and globals ----------------------------- //-----------------------------------------------------------------------------
// module and globals
//-----------------------------------------------------------------------------
// normally we would do the cleanup from wxXmlResourceModule::OnExit() but it // normally we would do the cleanup from wxXmlResourceModule::OnExit() but it
// can happen that some XRC records have been created because of the use of // can happen that some XRC records have been created because of the use of