这是重现问题的最小代码。唯一的外部先决条件是pugixml.hpp文件。
上下文是用于解析XML文件中的id引用的类(即,给定字符串值,找到其id属性设置为该值的节点)。我有一些帮助类包装pugixml API,相关部分是这样的:
Agent.h
#include "pugixml.hpp"
#include <algorithm>
#include <functional>
/**
* Adapter to strip away the xpath layer around a xml_node.
*/
template <typename Functor>
struct Shim
{
Functor& functor_;
Shim( Functor& functor )
: functor_(functor)
{}
void operator() ( pugi::xpath_node const& xpnode )
{
functor_( xpnode.node() );
}
};
class Agent
{
public:
explicit
Agent( std::string const& xpath )
: xpath_(xpath)
{}
// generic traverse over an xpath node_set
template <typename Handler >
size_t map( pugi::xml_node const& root, Handler& handler ) const
{
pugi::xpath_node_set _xpset(root.select_nodes( xpath_.c_str() ));
if ( _xpset.size() > 0 )
{
std::for_each( _xpset.begin(), _xpset.end(), Shim<Handler>(handler) );
}
return _xpset.size();
}
private:
std::string xpath_; // TODO: compile this into xpath_query?
};
#define XML_Node pugi::xml_node
我首次实现了id解析器类
IdNodeSet-A.H
#include "Agent.h"
#include <map>
class IdNodeSet
{
typedef std::map<char const*, XML_Node> NodeMap;
public:
IdNodeSet( XML_Node const& docRoot, XML_Node& defaultNode = XML_Node() )
: map_()
, default_(defaultNode)
{
Agent("//*[@id]").map( docRoot, *this );
}
void operator() ( XML_Node const& node )
{
map_[node.attribute("id").as_string()] = node;
}
XML_Node operator [] ( const char* id ) const
{
NodeMap::const_iterator _cit(map_.find( id ));
return _cit != map_.end() ? _cit->second : default_;
}
private:
NodeMap map_;
XML_Node default_;
};
这在Cygwin g ++ 3.4.4中产生了以下错误(cygming special,gdc 0.12,使用dmd 0.125):
IdNodeSet-A.h:29: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://cygwin.com/problems.html> for instructions.
这完全是神秘的。
我唯一想到的是在构造函数中使用'* this'。但是使用帮助程序成员类进行修改:
IDNodeSet-B.h
#include "Agent.h"
#include <map>
class IdNodeSet
{
typedef std::map<char const*, XML_Node> NodeMap;
public:
IdNodeSet( XML_Node const& docRoot, XML_Node& defaultNode = XML_Node() )
: map_()
, helper_(map_)
, default_(defaultNode)
{
Agent("//*[@id]").map( docRoot, helper_ );
}
XML_Node operator [] ( const char* id ) const
{
NodeMap::const_iterator _cit(map_.find( id ));
return _cit != map_.end() ? _cit->second : default_;
}
private:
NodeMap map_;
struct Helper
{
Helper(NodeMap& map)
: map_(map)
{}
void operator() ( XML_Node const& node )
{
map_[node.attribute("id").as_string()] = node;
}
NodeMap& map_;
} helper_;
XML_Node default_;
};
产生相同的错误:
IdNodeSet-B.h:38: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://cygwin.com/problems.html> for instructions.
这不是火箭科学代码,那么可能导致编译器进行核心转储的原因是什么?
UPDATE:预处理器输出(即来自g ++ -E)在两种情况下都没有问题。因此,这可以作为一种可能的解决方法,但问题仍然存在:在解决方法不可行的情况下应该避免哪种代码?