forked from voodooattack/ADWIF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.cpp
122 lines (108 loc) · 3.71 KB
/
util.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* Copyright (c) 2013, Abdullah A. Hassan <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "util.hpp"
#include <algorithm>
#include <functional>
#include <cctype>
#include <locale>
#include <string>
#include <sstream>
#include <boost/format.hpp>
namespace ADWIF
{
std::string wrapText(const std::string & text, int bufferWidth)
{
// http://arodgersblog.wordpress.com/2012/08/09/c-word-wrap-for-console-output-tutorial/
std::string s = text;
for (unsigned int i = 1; i <= s.length() ; i++)
{
char c = s[i - 1];
int spaceCount = 0;
// Add whitespace if newline detected.
if (c == '\n')
{
int charNumOnLine = ((i) % bufferWidth);
spaceCount = bufferWidth - charNumOnLine;
s.insert((i - 1), (spaceCount), ' ');
i += (spaceCount);
continue;
}
if ((i % bufferWidth) == 0)
if (c != ' ')
for (int j = (i - 1); j > -1 ; j--)
{
if (s[j] == ' ')
{
s.insert(j, spaceCount, ' ');
break;
}
else
spaceCount++;
}
}
return s;
}
std::string & ltrim(std::string & s)
{
s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
return s;
}
std::string & rtrim(std::string & s)
{
s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
return s;
}
std::string & trim(std::string & s)
{
return ltrim(rtrim(s));
}
std::vector< std::string > & split(const std::string & s, char delim, std::vector< std::string > & elems)
{
std::stringstream ss(s);
std::string item;
while (std::getline(ss, item, delim))
{
elems.push_back(item);
}
return elems;
}
std::vector< std::string > split(const std::string & s, char delim)
{
std::vector<std::string> elems;
split(s, delim, elems);
return elems;
}
uint32_t hexStringToColour(const std::string & str)
{
if (str.empty() || str.size() != 7 || str[0] != '#')
return 0;
std::string copy;
std::transform(str.begin()+1, str.end(), std::back_inserter(copy), &toupper);
//copy = "0xFF" + copy;
uint32_t col;
std::stringstream ss;
ss << copy;
ss >> std::hex >> col;
return col;
}
std::string colourToHexString(uint32_t colour)
{
return boost::str(boost::format("#%06x") % colour);
}
}