00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00027 #include <datamap.h>
00028
00029 bool datamap::sinsert(const std::string& __s, const additional_info_u& __h,
00030 bool remove)
00031 {
00032 _Base::iterator __b(find(__s));
00033
00034 if(__b != end())
00035 {
00036 if(!remove) return false;
00037 erase(__b);
00038 }
00039 insert(std::make_pair(__s, __h));
00040 return true;
00041 }
00042
00043 std::string datamap::encode(const std::string& __s, int i) const
00044 {
00045 char buf[30];
00046 sprintf(buf, "%+020d", i);
00047 return __s + __DATAMAP_SEPARATOR + buf;
00048 }
00049
00050 bool datamap::update_index(const std::string& __s, int i, bool __insert)
00051 {
00052 _Base::iterator __b = find(__s + __DATAMAP_SEPARATOR + __DATAMAP_IDXSPEC);
00053 std::vector<int> _iv;
00054 bool update(false);
00055
00056 if(__b != end())
00057 _iv = __b->second.n();
00058 std::vector<int>::iterator _lb = std::lower_bound(_iv.begin(), _iv.end(), i);
00059 if(__insert)
00060 {
00061 if(_lb == _iv.end() || *_lb != i)
00062 {
00063 update = true;
00064 _iv.insert(_lb, i);
00065 }
00066 }
00067 else
00068 {
00069 if(_lb != _iv.end() && *_lb == i)
00070 {
00071 update = true;
00072 _iv.erase(_lb);
00073 }
00074 }
00075 if(update)
00076 {
00077 if(__b != end()) erase(__b);
00078 insert(std::make_pair(__s + __DATAMAP_SEPARATOR + __DATAMAP_IDXSPEC, _iv));
00079 }
00080 return update;
00081 }
00082
00083 bool datamap::check_index(const std::string& __s, int i) const
00084 {
00085 _Base::const_iterator __b = find(__s + __DATAMAP_SEPARATOR + __DATAMAP_IDXSPEC);
00086 bool ret(false);
00087
00088 if(__b == end())
00089 return ret;
00090 return std::binary_search(__b->second.n().begin(), __b->second.n().end(), i);
00091 }