2011-12-02 15:18:31 +01:00
|
|
|
#ifndef idvaluemap_hh_INCLUDED
|
|
|
|
#define idvaluemap_hh_INCLUDED
|
|
|
|
|
2012-01-15 14:40:58 +01:00
|
|
|
#include <vector>
|
|
|
|
#include "completion.hh"
|
|
|
|
|
2011-12-02 15:18:31 +01:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
template<typename _Id, typename _Value>
|
|
|
|
class idvaluemap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef std::pair<_Id, _Value> value_type;
|
|
|
|
typedef std::vector<value_type> container_type;
|
|
|
|
typedef typename container_type::iterator iterator;
|
|
|
|
typedef typename container_type::const_iterator const_iterator;
|
|
|
|
|
|
|
|
void append(const value_type& value)
|
|
|
|
{
|
|
|
|
m_content.push_back(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void append(value_type&& value)
|
|
|
|
{
|
2011-12-07 19:57:07 +01:00
|
|
|
m_content.push_back(std::forward<value_type>(value));
|
2011-12-02 15:18:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
iterator find(const _Id& id)
|
|
|
|
{
|
|
|
|
for (auto it = begin(); it != end(); ++it)
|
|
|
|
{
|
|
|
|
if (it->first == id)
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
return end();
|
|
|
|
}
|
|
|
|
|
|
|
|
const_iterator find(const _Id& id) const
|
|
|
|
{
|
|
|
|
for (auto it = begin(); it != end(); ++it)
|
|
|
|
{
|
|
|
|
if (it->first == id)
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
return end();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool contains(const _Id& id) const
|
|
|
|
{
|
|
|
|
return find(id) != end();
|
|
|
|
}
|
|
|
|
|
|
|
|
void remove(const _Id& id)
|
|
|
|
{
|
|
|
|
for (auto it = m_content.begin(); it != m_content.end(); ++it)
|
|
|
|
{
|
|
|
|
if (it->first == id)
|
|
|
|
{
|
|
|
|
m_content.erase(it);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-25 19:11:13 +02:00
|
|
|
template<typename _Condition>
|
2012-04-14 03:17:09 +02:00
|
|
|
CandidateList complete_id_if(const String& prefix,
|
2012-01-19 21:52:08 +01:00
|
|
|
size_t cursor_pos,
|
|
|
|
_Condition condition)
|
2011-12-02 15:18:31 +01:00
|
|
|
{
|
2012-04-14 03:17:09 +02:00
|
|
|
String real_prefix = prefix.substr(0, cursor_pos);
|
2011-12-02 15:18:31 +01:00
|
|
|
CandidateList result;
|
|
|
|
for (auto& value : m_content)
|
|
|
|
{
|
2012-01-19 21:52:08 +01:00
|
|
|
if (not condition(value))
|
|
|
|
continue;
|
|
|
|
|
2012-06-25 19:11:13 +02:00
|
|
|
String id_str = value.first;
|
2011-12-02 15:18:31 +01:00
|
|
|
if (id_str.substr(0, real_prefix.length()) == real_prefix)
|
|
|
|
result.push_back(std::move(id_str));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
CandidateList complete_id(const String& prefix,
|
2012-01-19 21:52:08 +01:00
|
|
|
size_t cursor_pos)
|
|
|
|
{
|
2012-06-25 19:11:13 +02:00
|
|
|
return complete_id_if(
|
2012-01-19 21:52:08 +01:00
|
|
|
prefix, cursor_pos, [](const value_type&) { return true; });
|
|
|
|
}
|
|
|
|
|
2011-12-02 15:18:31 +01:00
|
|
|
iterator begin() { return m_content.begin(); }
|
|
|
|
iterator end() { return m_content.end(); }
|
|
|
|
const_iterator begin() const { return m_content.begin(); }
|
|
|
|
const_iterator end() const { return m_content.end(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
container_type m_content;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // idvaluemap_hh_INCLUDED
|