updated to the new pikotools api: SpaceParser::SetSpace(...) methods have been removed

This commit is contained in:
Tomasz Sowa 2021-05-21 01:37:42 +02:00
parent 8bb585d97d
commit 27720afaf2
11 changed files with 13 additions and 39 deletions

View File

@ -1136,7 +1136,6 @@ void App::ReadPostJson()
const int buffer_len = sizeof(buffer) / sizeof(char) - 1; const int buffer_len = sizeof(buffer) / sizeof(char) - 1;
int read_len; int read_len;
space_parser.SetSpace(cur.request->post_in);
post_buffer.clear(); post_buffer.clear();
post_buffer.reserve(1024 * 1024 * 5); // IMPROVEME add to config? post_buffer.reserve(1024 * 1024 * 5); // IMPROVEME add to config?
@ -1155,7 +1154,7 @@ void App::ReadPostJson()
if( !post_buffer.empty() ) if( !post_buffer.empty() )
{ {
pt::SpaceParser::Status status = space_parser.ParseJSON(post_buffer.c_str()); pt::SpaceParser::Status status = space_parser.ParseJSON(post_buffer.c_str(), cur.request->post_in);
post_buffer.clear(); post_buffer.clear();
if( status != pt::SpaceParser::ok ) if( status != pt::SpaceParser::ok )

View File

@ -66,10 +66,6 @@ void Config::ShowError()
switch( parser.status ) switch( parser.status )
{ {
case pt::SpaceParser::no_space:
log << log2 << "Config: space not set" << logend;
break;
case pt::SpaceParser::ok: case pt::SpaceParser::ok:
log << log2 << "Config: syntax ok" << logend; log << log2 << "Config: syntax ok" << logend;
break; break;
@ -106,9 +102,7 @@ bool Config::ReadConfig(bool errors_to_stdout_, bool stdout_is_closed)
} }
log << log2 << "Config: reading a config file" << logend; log << log2 << "Config: reading a config file" << logend;
pt::SpaceParser::Status status = parser.ParseSpaceFile(config_file, space);
parser.SetSpace(space);
pt::SpaceParser::Status status = parser.ParseSpaceFile(config_file);
if( status == pt::SpaceParser::ok ) if( status == pt::SpaceParser::ok )
{ {

View File

@ -144,8 +144,7 @@ pt::Space space;
pt::SpaceParser parser; pt::SpaceParser parser;
pt::Date date; pt::Date date;
parser.SetSpace(space); pt::SpaceParser::Status status = parser.ParseSpaceFile(file, space);
pt::SpaceParser::Status status = parser.ParseSpaceFile(file);
if( status == pt::SpaceParser::ok ) if( status == pt::SpaceParser::ok )
{ {

View File

@ -167,11 +167,8 @@ void TimeZones::ParseZones()
// just space by space (not implemented in Space at the moment) // just space by space (not implemented in Space at the moment)
bool TimeZones::ReadTimeZones(const wchar_t * path) bool TimeZones::ReadTimeZones(const wchar_t * path)
{ {
parser.SetSpace(temp_space);
zone_tab.clear(); zone_tab.clear();
temp_space.clear(); pt::SpaceParser::Status status = parser.ParseSpaceFile(path, temp_space);
pt::SpaceParser::Status status = parser.ParseSpaceFile(path);
if( status == pt::SpaceParser::ok ) if( status == pt::SpaceParser::ok )
{ {

View File

@ -259,10 +259,7 @@ bool DbBase::AssertValueSpace(PGresult * r, int row, int col, pt::Space & space)
{ {
const char * res = AssertValue(r, row, col); const char * res = AssertValue(r, row, col);
conf_parser.SetSpace(space); pt::SpaceParser::Status status = conf_parser.ParseSpace(res, space);
space.clear();
pt::SpaceParser::Status status = conf_parser.ParseSpace(res);
if( status != pt::SpaceParser::ok ) if( status != pt::SpaceParser::ok )
{ {

View File

@ -70,10 +70,7 @@ return true;
bool Env::Parse(const std::wstring & env_str) bool Env::Parse(const std::wstring & env_str)
{ {
space.clear(); return (conf_parser.ParseSpace(env_str, space) == pt::SpaceParser::ok);
conf_parser.SetSpace(space);
return (conf_parser.ParseSpace(env_str) == pt::SpaceParser::ok);
} }

View File

@ -62,10 +62,7 @@ bool Meta::HasAccess()
bool Meta::Parse(const std::wstring & meta_str) bool Meta::Parse(const std::wstring & meta_str)
{ {
space.clear(); return (conf_parser.ParseSpace(meta_str, space) == pt::SpaceParser::ok);
conf_parser.SetSpace(space);
return (conf_parser.ParseSpace(meta_str) == pt::SpaceParser::ok);
} }

View File

@ -78,9 +78,8 @@ bool GroupInfo::ParseGroups(const std::wstring & str, Groups & groups)
{ {
groups.Clear(); groups.Clear();
pt::Space & space = *groups.GetSpace(); pt::Space & space = *groups.GetSpace();
conf_parser.SetSpace(space);
if( conf_parser.ParseSpace(str) == pt::SpaceParser::ok ) if( conf_parser.ParseSpace(str, space) == pt::SpaceParser::ok )
{ {
groups.Reindex(); groups.Reindex();
} }

View File

@ -76,8 +76,7 @@ void ReloadConfigFile(PluginInfo & info, Item & file)
pt::Space space; pt::Space space;
pt::SpaceParser parser; pt::SpaceParser parser;
parser.SetSpace(space); pt::SpaceParser::Status status = parser.ParseSpace(file.item_content.content_raw, space);
pt::SpaceParser::Status status = parser.ParseSpace(file.item_content.content_raw);
if( status == pt::SpaceParser::syntax_error ) if( status == pt::SpaceParser::syntax_error )
{ {

View File

@ -166,10 +166,9 @@ bool TicketInfo::ParseTicketConf(long mount_dir_id, const std::wstring & path)
log << log3 << "Ticket: parsing conf file: " << path << logend; log << log3 << "Ticket: parsing conf file: " << path << logend;
conf_tab[mount_dir_id].file_name = path; conf_tab[mount_dir_id].file_name = path;
conf_parser.SetSpace(conf_tab[mount_dir_id].conf); pt::Space & space = conf_tab[mount_dir_id].conf;
conf_tab[mount_dir_id].conf.clear();
return (conf_parser.ParseSpace(config_file.item_content.content_raw) == pt::SpaceParser::ok); return (conf_parser.ParseSpace(config_file.item_content.content_raw, space) == pt::SpaceParser::ok);
} }

View File

@ -112,8 +112,7 @@ bool read = false;
file_name += '/'; file_name += '/';
file_name += file; file_name += file;
loc_parser.SetSpace(temp_space); pt::SpaceParser::Status status = loc_parser.ParseSpaceFile(file_name, temp_space, false);
pt::SpaceParser::Status status = loc_parser.ParseSpaceFile(file_name);
if( status == pt::SpaceParser::ok ) if( status == pt::SpaceParser::ok )
{ {
@ -185,9 +184,7 @@ bool read = false;
file_name += '/'; file_name += '/';
file_name += "substitute"; file_name += "substitute";
loc_parser.SetSpace(temp_space); if( loc_parser.ParseSpaceFile(file_name, temp_space, false) == pt::SpaceParser::ok )
if( loc_parser.ParseSpaceFile(file_name) == pt::SpaceParser::ok )
{ {
read = true; read = true;
CreateSubstVector(subst_url, temp_space.to_wstr(L"url_original"), temp_space.to_wstr(L"url_changeto")); CreateSubstVector(subst_url, temp_space.to_wstr(L"url_original"), temp_space.to_wstr(L"url_changeto"));