mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
ada0bd00f0
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19103 a592a061-630c-0410-9148-cb99ea01b6c8
103 lines
1.7 KiB
C++
103 lines
1.7 KiB
C++
/**
|
|
* \file Author.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "Author.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
#include "support/std_istream.h"
|
|
|
|
using std::string;
|
|
|
|
namespace lyx {
|
|
|
|
using support::token;
|
|
using support::trim;
|
|
|
|
|
|
bool operator==(Author const & l, Author const & r)
|
|
{
|
|
return l.name() == r.name() && l.email() == r.email();
|
|
}
|
|
|
|
|
|
std::ostream & operator<<(std::ostream & os, Author const & a)
|
|
{
|
|
// FIXME UNICODE
|
|
os << "\"" << to_utf8(a.name()) << "\" " << to_utf8(a.email());
|
|
return os;
|
|
}
|
|
|
|
std::istream & operator>>(std::istream & is, Author & a)
|
|
{
|
|
string s;
|
|
getline(is, s);
|
|
// FIXME UNICODE
|
|
a.name_ = from_utf8(trim(token(s, '\"', 1)));
|
|
a.email_ = from_utf8(trim(token(s, '\"', 2)));
|
|
return is;
|
|
}
|
|
|
|
|
|
AuthorList::AuthorList()
|
|
: last_id_(0)
|
|
{
|
|
}
|
|
|
|
|
|
int AuthorList::record(Author const & a)
|
|
{
|
|
Authors::const_iterator it(authors_.begin());
|
|
Authors::const_iterator itend(authors_.end());
|
|
|
|
for (; it != itend; ++it) {
|
|
if (it->second == a)
|
|
return it->first;
|
|
}
|
|
|
|
authors_[last_id_++] = a;
|
|
return last_id_ - 1;
|
|
}
|
|
|
|
|
|
void AuthorList::record(int id, Author const & a)
|
|
{
|
|
BOOST_ASSERT(unsigned(id) < authors_.size());
|
|
|
|
authors_[id] = a;
|
|
}
|
|
|
|
|
|
Author const & AuthorList::get(int id) const
|
|
{
|
|
Authors::const_iterator it(authors_.find(id));
|
|
BOOST_ASSERT(it != authors_.end());
|
|
return it->second;
|
|
}
|
|
|
|
|
|
AuthorList::Authors::const_iterator AuthorList::begin() const
|
|
{
|
|
return authors_.begin();
|
|
}
|
|
|
|
|
|
AuthorList::Authors::const_iterator AuthorList::end() const
|
|
{
|
|
return authors_.end();
|
|
}
|
|
|
|
|
|
} // namespace lyx
|