Added random url generator

This commit is contained in:
Alex Zolotarev 2011-10-04 19:38:22 +03:00 committed by Alex Zolotarev
parent 92ee6f96e9
commit 34051722d6
6 changed files with 149 additions and 4 deletions

View file

@ -2,8 +2,6 @@
#include "../base/base.hpp"
#include "../base/start_mem_debug.hpp"
class LCG32
{
public:
@ -21,5 +19,3 @@ private:
};
typedef LCG32 PseudoRNG32;
#include "../base/stop_mem_debug.hpp"

View file

@ -53,6 +53,7 @@ HEADERS += \
settings.hpp \
video_timer.hpp \
languages.hpp \
url_generator.hpp \
SOURCES += \
location_manager.cpp \
@ -60,3 +61,4 @@ SOURCES += \
settings.cpp \
video_timer.cpp \
languages.cpp \
url_generator.cpp \

View file

@ -25,3 +25,4 @@ SOURCES += \
jansson_test.cpp \
concurrent_runner_test.cpp \
language_test.cpp \
url_generator_test.cpp \

View file

@ -0,0 +1,41 @@
#include "../../testing/testing.hpp"
#include "../url_generator.hpp"
#include "../../std/algorithm.hpp"
void VectorContains(vector<string> & v, string const & s)
{
vector<string>::iterator found = find(v.begin(), v.end(), s);
std::cout << s << endl;
TEST(found != v.end(), (s, "was not found in", v));
v.erase(found);
}
UNIT_TEST(UrlGenerator)
{
vector<string> first;
first.push_back("A");
first.push_back("B");
first.push_back("C");
first.push_back("D");
first.push_back("E");
vector<string> second;
second.push_back("F");
second.push_back("G");
second.push_back("H");
UrlGenerator g(first, second);
{
size_t const count = first.size();
for (size_t i = 0; i < count; ++i)
VectorContains(first, g.PopNextUrl());
}
{
size_t const count = second.size();
for (size_t i = 0; i < count; ++i)
VectorContains(second, g.PopNextUrl());
}
}

View file

@ -0,0 +1,86 @@
#include "url_generator.hpp"
#include "../base/macros.hpp"
#include "../std/ctime.hpp"
static char const * g_defaultFirstGroup[] = {
#ifdef OMIM_PRODUCTION
"http://a0.mapswithme.com/",
"http://a1.mapswithme.com/",
"http://a2.mapswithme.com/",
"http://a3.mapswithme.com/",
"http://a4.mapswithme.com/",
"http://a5.mapswithme.com/",
"http://a6.mapswithme.com/",
"http://a7.mapswithme.com/",
"http://a8.mapswithme.com/",
"http://a9.mapswithme.com/",
"http://a10.mapswithme.com/",
"http://a11.mapswithme.com/"
#else
"http://svobodu404popugajam.mapswithme.com:34568/maps/"
#endif
};
static char const * g_defaultSecondGroup[] = {
#ifdef OMIM_PRODUCTION
"http://b0.mapswithme.com/",
"http://b1.mapswithme.com/",
"http://b2.mapswithme.com/",
"http://b3.mapswithme.com/",
"http://b4.mapswithme.com/",
"http://b5.mapswithme.com/"
#else
"http://svobodu404popugajam.mapswithme.com:34568/maps/"
#endif
};
UrlGenerator::UrlGenerator()
: m_randomGenerator(static_cast<uint32_t>(time(NULL))),
m_firstGroup(&g_defaultFirstGroup[0], &g_defaultFirstGroup[0] + ARRAY_SIZE(g_defaultFirstGroup)),
m_secondGroup(&g_defaultSecondGroup[0], &g_defaultSecondGroup[0] + ARRAY_SIZE(g_defaultSecondGroup))
{
}
UrlGenerator::UrlGenerator(vector<string> const & firstGroup, vector<string> const & secondGroup)
: m_randomGenerator(static_cast<uint32_t>(time(NULL))), m_firstGroup(firstGroup), m_secondGroup(secondGroup)
{
}
string UrlGenerator::PopNextUrl()
{
string s;
switch (m_firstGroup.size())
{
case 1:
s = m_firstGroup.front();
m_firstGroup.pop_back();
break;
case 0:
switch (m_secondGroup.size())
{
case 1:
s = m_secondGroup.front();
m_secondGroup.pop_back();
break;
case 0: // nothing left to return
break;
default:
{
vector<string>::iterator const it = m_secondGroup.begin()
+ static_cast<vector<string>::difference_type>(m_randomGenerator.Generate() % m_secondGroup.size());
s = *it;
m_secondGroup.erase(it);
}
}
break;
default:
{
vector<string>::iterator const it = m_firstGroup.begin()
+ static_cast<vector<string>::difference_type>(m_randomGenerator.Generate() % m_firstGroup.size());
s = *it;
m_firstGroup.erase(it);
}
}
return s;
}

View file

@ -0,0 +1,19 @@
#pragma once
#include "../base/pseudo_random.hpp"
#include "../std/vector.hpp"
#include "../std/string.hpp"
class UrlGenerator
{
LCG32 m_randomGenerator;
vector<string> m_firstGroup;
vector<string> m_secondGroup;
public:
UrlGenerator();
explicit UrlGenerator(vector<string> const & firstGroup, vector<string> const & secondGroup);
/// @return Always return empty string if all urls were already popped
string PopNextUrl();
};