text: Removed local join/split implementation

This commit is contained in:
Paul Beckingham 2016-12-07 01:14:16 -05:00
parent 6cdb0d4b95
commit 3c6ce4e0fc
11 changed files with 18 additions and 277 deletions

View file

@ -40,7 +40,7 @@
#include <Timer.h> #include <Timer.h>
#include <JSON.h> #include <JSON.h>
#include <Lexer.h> #include <Lexer.h>
#include <text.h> #include <shared.h>
#include <format.h> #include <format.h>
#include <util.h> #include <util.h>
#include <i18n.h> #include <i18n.h>
@ -437,8 +437,7 @@ void Config::parse (const std::string& input, int nest /* = 1 */)
return; return;
// Split the input into lines. // Split the input into lines.
std::vector <std::string> lines; auto lines = split (input, '\n');
split (lines, input, "\n");
// Parse each line. // Parse each line.
for (auto& line : lines) for (auto& line : lines)

View file

@ -27,7 +27,7 @@
#include <cmake.h> #include <cmake.h>
#include <Msg.h> #include <Msg.h>
#include <Lexer.h> #include <Lexer.h>
#include <text.h> #include <shared.h>
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
void Msg::set (const std::string& name, const std::string& value) void Msg::set (const std::string& name, const std::string& value)
@ -89,9 +89,7 @@ bool Msg::parse (const std::string& input)
throw std::string ("ERROR: Malformed message"); throw std::string ("ERROR: Malformed message");
// Parse header. // Parse header.
std::vector <std::string> lines; for (auto& i : split (input.substr (0, separator), '\n'))
split (lines, input.substr (0, separator), '\n');
for (auto& i : lines)
{ {
auto delimiter = i.find (':'); auto delimiter = i.find (':');
if (delimiter == std::string::npos) if (delimiter == std::string::npos)

View file

@ -37,6 +37,7 @@
#include <ViewTask.h> #include <ViewTask.h>
#include <i18n.h> #include <i18n.h>
#include <format.h> #include <format.h>
#include <shared.h>
#include <text.h> #include <text.h>
#include <main.h> #include <main.h>
@ -72,18 +73,15 @@ int CmdCustom::execute (std::string& output)
std::string reportSort = context.config.get ("report." + _keyword + ".sort"); std::string reportSort = context.config.get ("report." + _keyword + ".sort");
std::string reportFilter = context.config.get ("report." + _keyword + ".filter"); std::string reportFilter = context.config.get ("report." + _keyword + ".filter");
std::vector <std::string> columns; auto columns = split (reportColumns, ',');
split (columns, reportColumns, ',');
validateReportColumns (columns); validateReportColumns (columns);
std::vector <std::string> labels; auto labels = split (reportLabels, ',');
split (labels, reportLabels, ',');
if (columns.size () != labels.size () && labels.size () != 0) if (columns.size () != labels.size () && labels.size () != 0)
throw format (STRING_CMD_CUSTOM_MISMATCH, _keyword); throw format (STRING_CMD_CUSTOM_MISMATCH, _keyword);
std::vector <std::string> sortOrder; auto sortOrder = split (reportSort, ',');
split (sortOrder, reportSort, ',');
if (sortOrder.size () != 0 && if (sortOrder.size () != 0 &&
sortOrder[0] != "none") sortOrder[0] != "none")
validateSortColumns (sortOrder); validateSortColumns (sortOrder);

View file

@ -29,7 +29,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <Context.h> #include <Context.h>
#include <i18n.h> #include <i18n.h>
#include <text.h> #include <shared.h>
extern Context context; extern Context context;
@ -52,9 +52,7 @@ CmdExec::CmdExec ()
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
int CmdExec::execute (std::string&) int CmdExec::execute (std::string&)
{ {
std::string command_line; return system (join (" ", context.cli2.getWords ()).c_str ());
join (command_line, " ", context.cli2.getWords ());
return system (command_line.c_str ());
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

View file

@ -32,6 +32,7 @@
#include <Context.h> #include <Context.h>
#include <Filter.h> #include <Filter.h>
#include <format.h> #include <format.h>
#include <shared.h>
#include <text.h> #include <text.h>
#include <util.h> #include <util.h>
#include <i18n.h> #include <i18n.h>
@ -147,10 +148,7 @@ int CmdImport::import (const std::string& input)
// { ... } // { ... }
catch (std::string& e) catch (std::string& e)
{ {
std::vector <std::string> lines; for (auto& line : split (input, '\n'))
split (lines, input, '\n');
for (auto& line : lines)
{ {
if (line.length ()) if (line.length ())
{ {

View file

@ -299,8 +299,7 @@ int CmdInfo::execute (std::string& output)
task.getTags (tags); task.getTags (tags);
if (tags.size ()) if (tags.size ())
{ {
std::string allTags; auto allTags = join (" ", tags);
join (allTags, " ", tags);
row = view.addRow (); row = view.addRow ();
view.set (row, 0, STRING_COLUMN_LABEL_TAGS); view.set (row, 0, STRING_COLUMN_LABEL_TAGS);

View file

@ -33,6 +33,7 @@
#include <Filter.h> #include <Filter.h>
#include <main.h> #include <main.h>
#include <format.h> #include <format.h>
#include <shared.h>
#include <text.h> #include <text.h>
#include <util.h> #include <util.h>
#include <i18n.h> #include <i18n.h>
@ -215,8 +216,7 @@ int CmdCompletionUDAs::execute (std::string& output)
if (udas.size ()) if (udas.size ())
{ {
std::sort (udas.begin (), udas.end ()); std::sort (udas.begin (), udas.end ());
join (output, "\n", udas); output = join ("\n", udas) + '\n';
output += '\n';
} }
return 0; return 0;

View file

@ -31,7 +31,7 @@
#include <stack> #include <stack>
#include <Context.h> #include <Context.h>
#include <format.h> #include <format.h>
#include <util.h> #include <shared.h>
#include <i18n.h> #include <i18n.h>
#include <main.h> #include <main.h>

View file

@ -67,8 +67,7 @@ void initializeColorRules ()
// Load the rule.precedence.color list, split it, then autocomplete against // Load the rule.precedence.color list, split it, then autocomplete against
// the 'rules' vector loaded above. // the 'rules' vector loaded above.
std::vector <std::string> results; std::vector <std::string> results;
std::vector <std::string> precedence; auto precedence = split (context.config.get ("rule.precedence.color"), ',');
split (precedence, context.config.get ("rule.precedence.color"), ',');
for (const auto& p : precedence) for (const auto& p : precedence)
{ {

View file

@ -36,6 +36,7 @@
#include <Lexer.h> #include <Lexer.h>
#include <math.h> #include <math.h>
#include <util.h> #include <util.h>
#include <shared.h>
#include <text.h> #include <text.h>
#include <utf8.h> #include <utf8.h>
#include <i18n.h> #include <i18n.h>
@ -45,246 +46,6 @@ extern Context context;
static const char* newline = "\n"; static const char* newline = "\n";
static const char* noline = ""; static const char* noline = "";
///////////////////////////////////////////////////////////////////////////////
void wrapText (
std::vector <std::string>& lines,
const std::string& text,
const int width,
bool hyphenate)
{
std::string line;
unsigned int offset = 0;
while (extractLine (line, text, width, hyphenate, offset))
lines.push_back (line);
}
////////////////////////////////////////////////////////////////////////////////
void split (
std::set<std::string>& results,
const std::string& input,
const char delimiter)
{
results.clear ();
std::string::size_type start = 0;
std::string::size_type i;
while ((i = input.find (delimiter, start)) != std::string::npos)
{
results.insert (input.substr (start, i - start));
start = i + 1;
}
if (input.length ())
results.insert (input.substr (start));
}
////////////////////////////////////////////////////////////////////////////////
void split (
std::vector<std::string>& results,
const std::string& input,
const char delimiter)
{
results.clear ();
std::string::size_type start = 0;
std::string::size_type i;
while ((i = input.find (delimiter, start)) != std::string::npos)
{
results.push_back (input.substr (start, i - start));
start = i + 1;
}
if (input.length ())
results.push_back (input.substr (start));
}
////////////////////////////////////////////////////////////////////////////////
void split (
std::vector<std::string>& results,
const std::string& input,
const std::string& delimiter)
{
results.clear ();
std::string::size_type length = delimiter.length ();
std::string::size_type start = 0;
std::string::size_type i;
while ((i = input.find (delimiter, start)) != std::string::npos)
{
results.push_back (input.substr (start, i - start));
start = i + length;
}
if (input.length ())
results.push_back (input.substr (start));
}
////////////////////////////////////////////////////////////////////////////////
void join (
std::string& result,
const std::string& separator,
const std::vector<std::string>& items)
{
std::stringstream s;
unsigned int size = items.size ();
for (unsigned int i = 0; i < size; ++i)
{
s << items[i];
if (i < size - 1)
s << separator;
}
result = s.str ();
}
////////////////////////////////////////////////////////////////////////////////
void join (
std::string& result,
const std::string& separator,
const std::vector<int>& items)
{
std::stringstream s;
unsigned int size = items.size ();
for (unsigned int i = 0; i < size; ++i)
{
s << items[i];
if (i < size - 1)
s << separator;
}
result = s.str ();
}
////////////////////////////////////////////////////////////////////////////////
// Remove enclosing balanced quotes. Assumes trimmed text.
std::string unquoteText (const std::string& input)
{
std::string output = input;
if (output.length () > 1)
{
char quote = output[0];
if ((quote == '\'' || quote == '"') &&
output[output.length () - 1] == quote)
return output.substr (1, output.length () - 2);
}
return output;
}
////////////////////////////////////////////////////////////////////////////////
int longestLine (const std::string& input)
{
int longest = 0;
int length = 0;
std::string::size_type i = 0;
int character;
while ((character = utf8_next_char (input, i)))
{
if (character == '\n')
{
if (length > longest)
longest = length;
length = 0;
}
else
length += mk_wcwidth (character);
}
if (length > longest)
longest = length;
return longest;
}
////////////////////////////////////////////////////////////////////////////////
// Break UTF8 text into chunks no more than width characters.
bool extractLine (
std::string& line,
const std::string& text,
int width,
bool hyphenate,
unsigned int& offset)
{
// Terminate processing.
if (offset >= text.length ())
return false;
int line_length {0};
int character {0};
std::string::size_type lastWordEnd {std::string::npos};
bool something {false};
std::string::size_type cursor {offset};
std::string::size_type prior_cursor {offset};
while ((character = utf8_next_char (text, cursor)))
{
// Premature EOL.
if (character == '\n')
{
line = text.substr (offset, prior_cursor - offset);
offset = cursor;
return true;
}
if (! Lexer::isWhitespace (character))
{
something = true;
if (! text[cursor] || Lexer::isWhitespace (text[cursor]))
lastWordEnd = prior_cursor;
}
line_length += mk_wcwidth (character);
if (line_length >= width)
{
// Backtrack to previous word end.
if (lastWordEnd != std::string::npos)
{
// Eat one WS after lastWordEnd.
std::string::size_type lastBreak = lastWordEnd;
utf8_next_char (text, lastBreak);
// Position offset at following char.
std::string::size_type nextStart = lastBreak;
utf8_next_char (text, nextStart);
line = text.substr (offset, lastBreak - offset);
offset = nextStart;
return true;
}
// No backtrack, possible hyphenation.
else if (hyphenate)
{
line = text.substr (offset, prior_cursor - offset) + '-';
offset = prior_cursor;
return true;
}
// No hyphenation, just truncation.
else
{
line = text.substr (offset, cursor - offset);
offset = cursor;
return true;
}
}
// Hindsight.
prior_cursor = cursor;
}
// Residual text.
if (something)
{
line = text.substr (offset, cursor - offset);
offset = cursor;
return true;
}
return false;
}
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
const char* optionalBlankLine () const char* optionalBlankLine ()
{ {

View file

@ -33,15 +33,6 @@
#include <vector> #include <vector>
// text.cpp, Non-UTF-8 aware. // text.cpp, Non-UTF-8 aware.
void wrapText (std::vector <std::string>&, const std::string&, const int, bool);
std::string unquoteText (const std::string&);
int longestLine (const std::string&);
bool extractLine (std::string&, const std::string&, int, bool, unsigned int&);
void split (std::set<std::string>&, const std::string&, const char);
void split (std::vector<std::string>&, const std::string&, const char);
void split (std::vector<std::string>&, const std::string&, const std::string&);
void join (std::string&, const std::string&, const std::vector<std::string>&);
void join (std::string&, const std::string&, const std::vector<int>&);
const char* optionalBlankLine (); const char* optionalBlankLine ();
bool nontrivial (const std::string&); bool nontrivial (const std::string&);
int strippedLength (const std::string&); int strippedLength (const std::string&);