Skip to content
Snippets Groups Projects
Commit f06333af authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

word input enclosed in single quotes may contain blanks; coord

name(unit) now considered a word, not a string
parent 7028d40f
No related branches found
No related tags found
No related merge requests found
Release
- UI changes:
- word input enclosed in single quotes may contain blanks
- coord name(unit) now considered a word, not a string
- commands oz+ and or+ now ask for coord name and unit
Release 2.4.0g of 11aug17:
- Support error bars in Load_96 and in fe2
......
#!/usr/bin/env frida
fm 7 3 h
oz+ "myz()" 100*j
oz+ myz() 100*j
mz- 0
exit_unless(z0[,2]==200,"failed")
exit(0)
\ No newline at end of file
#!/usr/bin/env frida
fm 1 1 h
or+ "my_r()" 77
or+ my_r() 77
or+ 'coord name with blanks(unit with blanks)' 88
oy r0[1+i]
exit_unless(y==77,"result_wrong")
exit_unless(y==77,"r0_to_y_wrong")
exit_unless(r1==88,"r1_wrong")
exit(0)
\ No newline at end of file
......@@ -56,7 +56,7 @@ void CCoord::ask_and_set(const string& quest)
prompt += " [" + str_std() + "]";
prompt += " ? ";
for (;;) {
string resp = NMacro::readln(prompt);
string resp = NMacro::readwd(prompt);
if (resp == "\\q") {
throw S("user escape to main menu");
} else if (resp == "") {
......
......@@ -26,15 +26,15 @@ using std::cout;
namespace NMacro
{
// internals, used only in this file:
std::deque<string> stack;
std::deque<string> stack;
// the following are only called indirectly through macros:
void metacmd_incl(string r);
void metacmd_incl(string r);
// auxiliary:
string wordexp_cpp_unique(const string& s);
string string_extract_quoted(string* in);
bool is_separator(char c);
string wordexp_cpp_unique(const string& s);
string string_extract_quoted(string* in);
bool is_separator(char c);
}
......@@ -79,6 +79,15 @@ string NMacro::readln(const string& prompt, ifstream* F, int* lineno)
string NMacro::readwd(const string& prompt)
{
string in = readln(prompt);
if (in[0] == '\'') { // string enclosed in quotes, may contain spaces
string::size_type j = triv::pos_closing(in);
if (j+1 < in.length()) {
if (!is_separator(in[j+1]))
throw "closing quote followed by non-space character";
push_remainder(in.substr(j+2));
}
return in.substr(1, j-1);
}
string::size_type j = in.find_first_of(" \t");
if (j != string::npos) {
push_remainder(in.substr(j));
......@@ -128,14 +137,10 @@ string NMacro::exemac(const string& in)
//**************************************************************************************************
//! Push _rem_ back on the input stack.
//! Left-trims the argument, and puts it back on the input stack.
void NMacro::push_remainder(const string& rem)
{
if (rem == "")
return; // nothing to do
if (!is_separator(rem[0]))
throw "missing separator at beginning of [" + rem + "]";
string::size_type j = rem.find_first_not_of(" \t");
if (j != string::npos)
stack.push_front(rem.substr(j));
......
......@@ -85,7 +85,7 @@ void triv::string_extract_word(const string& in, string* out1, string* out2)
{
string::size_type j0 = 0, j1, j2, jf = in.size();
// handle special case "`"
// handle special case "`" // TODO: check if needed; reimplement using pos_closing
if (in[0] == '`') {
j1 = in.find_first_of('`', 1);
if (j1 == string::npos) {
......@@ -151,3 +151,36 @@ vector<string> triv::split(const string& in, const string& delimiters)
}
return out;
}
//! For string starting with a delimiter, return position of matching delimiter.
//! INCOMPLETE. Currently only supports '.
//! Has unit test 003 (StrOpsTest, PosClosing).
std::string::size_type triv::pos_closing(const std::string& in)
{
char opener = in[0];
char closer = 0;
switch (opener) {
case '\'':
closer = '\''; break;
/* NOT YET SUPPORTED:
case '"':
closer = '"'; break;
case '(':
closer = ')'; break;
case '[':
closer = ']'; break;
case '{':
closer = '}'; break;
*/
default:
throw "BUG: pos_closing("+in+"): arg does not start with supported delimiter";
}
for (string::size_type j=1; j<in.length(); ++j) {
if (in[j-1]=='\\')
continue;
if (in[j]==closer)
return j;
}
throw string("Unmatched ")+opener+" in "+in;
}
......@@ -12,25 +12,25 @@
#include <string>
#include <vector>
namespace triv
{
namespace triv {
bool str2vec(std::string inp, std::vector<double>* V, size_t nmax = 0, bool force = true);
void string_extract_word(const std::string& in, std::string* out1, std::string* out2);
void string_extract_line(const std::string& in, std::string* out1, std::string* out2);
std::vector<std::string> split(const std::string& in, const std::string& delimiters = " \t");
std::string strip(const std::string& str, const char* sepSet = " \n");
bool str2vec(std::string inp, std::vector<double>* V, size_t nmax = 0, bool force = true);
void string_extract_word(const std::string& in, std::string* out1, std::string* out2);
void string_extract_line(const std::string& in, std::string* out1, std::string* out2);
std::vector<std::string> split(const std::string& in, const std::string& delimiters = " \t");
std::string strip(const std::string& str, const char* sepSet = " \n");
std::string::size_type pos_closing(const std::string& str);
template <class T> std::string join(const std::vector<T>& v, const std::string& separator)
{
std::ostringstream result;
for (auto i = v.begin(); i != v.end(); i++) {
if (i != v.begin())
result << separator;
result << *i;
template <class T> std::string join(const std::vector<T>& v, const std::string& separator)
{
std::ostringstream result;
for (auto i = v.begin(); i != v.end(); i++) {
if (i != v.begin())
result << separator;
result << *i;
}
return result.str();
}
return result.str();
}
}
#endif // STRING_OPS_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment