Reimplemented %p template specifier to use new method, added %P specifier

The %P specifier includes directories from the start of the file path,
whereas the original %p specifier includes them from the end. In both
cases N is from the last directory in the path, and -N is from the
first directory in the path (N=1..9).
This commit is contained in:
Scott Gilbertson 2024-01-06 18:21:59 -05:00
parent b8d3f90ca0
commit 21c53823ee

View File

@ -837,6 +837,7 @@ static inline Glib::ustring combineDirectoryNames(unsigned startIndex, unsigned
// Look for N or -N in templateText at position ix, meaning "index from end" and "index from start" // Look for N or -N in templateText at position ix, meaning "index from end" and "index from start"
// For N, return Nth index from the end, and for -N return the Nth index from the start // For N, return Nth index from the end, and for -N return the Nth index from the start
// N is a digit 1 through 9
static inline unsigned decodePathIndex(unsigned & ix, Glib::ustring & templateText, size_t numPathElements) static inline unsigned decodePathIndex(unsigned & ix, Glib::ustring & templateText, size_t numPathElements)
{ {
unsigned pathIndex = numPathElements; // means input was invalid unsigned pathIndex = numPathElements; // means input was invalid
@ -854,7 +855,6 @@ static inline unsigned decodePathIndex(unsigned & ix, Glib::ustring & templateTe
unsigned n = templateText[ix] - '1'; unsigned n = templateText[ix] - '1';
if (!fromStart) if (!fromStart)
{ {
// n=1 is the last element, n=2 is the one before that
n = numPathElements - n - 1; n = numPathElements - n - 1;
} }
if (n < numPathElements) if (n < numPathElements)
@ -870,7 +870,6 @@ static inline unsigned decodePathIndex(unsigned & ix, Glib::ustring & templateTe
Glib::ustring BatchQueue::calcAutoFileNameBase (const Glib::ustring& origFileName, int sequence) Glib::ustring BatchQueue::calcAutoFileNameBase (const Glib::ustring& origFileName, int sequence)
{ {
std::vector<Glib::ustring> pa;
std::vector<Glib::ustring> da; std::vector<Glib::ustring> da;
for (size_t i = 0; i < origFileName.size(); i++) { for (size_t i = 0; i < origFileName.size(); i++) {
@ -893,26 +892,8 @@ Glib::ustring BatchQueue::calcAutoFileNameBase (const Glib::ustring& origFileNam
} }
} }
if (origFileName[0] == '/') {
pa.push_back ("/" + da[0]);
} else if (origFileName[0] == '\\') {
if (origFileName.size() > 1 && origFileName[1] == '\\') {
pa.push_back ("\\\\" + da[0]);
} else {
pa.push_back ("/" + da[0]);
}
} else {
pa.push_back (da[0]);
}
for (size_t i = 1; i < da.size(); i++) {
pa.push_back (pa[i - 1] + "/" + da[i]);
}
// for (int i=0; i<da.size(); i++) // for (int i=0; i<da.size(); i++)
// printf ("da: %s\n", da[i].c_str()); // printf ("da: %s\n", da[i].c_str());
// for (int i=0; i<pa.size(); i++)
// printf ("pa: %s\n", pa[i].c_str());
// extracting filebase // extracting filebase
Glib::ustring filename; Glib::ustring filename;
@ -940,11 +921,25 @@ Glib::ustring BatchQueue::calcAutoFileNameBase (const Glib::ustring& origFileNam
ix++; ix++;
if (options.savePathTemplate[ix] == 'p') { if (options.savePathTemplate[ix] == 'p') {
// insert path elements from given index to the end
ix++; ix++;
unsigned int i = options.savePathTemplate[ix] - '1'; unsigned n = decodePathIndex(ix, options.savePathTemplate, da.size());
if (n < da.size()) {
if (i < pa.size()) { for (unsigned i=n; i<da.size(); i++) {
path = path + pa[pa.size() - i - 1] + '/'; path = path + da[i] + '/';
}
}
// If the next template character is a slash or backslash, skip it, because path already has a trailing slash
ix++;
if (ix < options.savePathTemplate.size() && options.savePathTemplate[ix] != '/' && options.savePathTemplate[ix] != '\\') {
ix--;
}
} else if (options.savePathTemplate[ix] == 'P') {
// insert path elements from the start of the path up to the given index
ix++;
unsigned n = decodePathIndex(ix, options.savePathTemplate, da.size());
for (unsigned i=0; i<=n && i<da.size(); i++) {
path = path + da[i] + '/';
} }
// If the next template character is a slash or backslash, skip it, because path already has a trailing slash // If the next template character is a slash or backslash, skip it, because path already has a trailing slash
ix++; ix++;