拡張するための最良の方法は何ですか
${MyPath}/filename.txt to /home/user/filename.txt
または
%MyPath%/filename.txt to c:\Documents and settings\user\filename.txt
パス文字列をトラバースせずに、環境変数を直接探しますか? wxWidgetsには wxExpandEnvVars 関数があることがわかります。この場合、wxWidgetsを使用できないので、boost :: filesystemと同等または類似のものを見つけたいと思っていました。私は例としてホームディレクトリのみを使用しています。汎用パス拡張を探しています。
UNIX(または少なくともPOSIX)システムの場合は、 wordexp を参照してください。
#include <iostream>
#include <wordexp.h>
using namespace std;
int main() {
wordexp_t p;
char** w;
wordexp( "$HOME/bin", &p, 0 );
w = p.we_wordv;
for (size_t i=0; i<p.we_wordc;i++ ) cout << w[i] << endl;
wordfree( &p );
return 0;
}
グロブのような拡張も行うようです(特定の状況で役立つ場合とそうでない場合があります)。
Windowsでは、 ExpandEnvironmentStrings
を使用できます。 Unixに相当するものについてはまだわかりません。
C++ 11を使用する余裕がある場合は、正規表現が非常に便利です。その場で更新するためのバージョンと宣言型バージョンを作成しました。
#include <string>
#include <regex>
// Update the input string.
void autoExpandEnvironmentVariables( std::string & text ) {
static std::regex env( "\\$\\{([^}]+)\\}" );
std::smatch match;
while ( std::regex_search( text, match, env ) ) {
const char * s = getenv( match[1].str().c_str() );
const std::string var( s == NULL ? "" : s );
text.replace( match[0].first, match[0].second, var );
}
}
// Leave input alone and return new string.
std::string expandEnvironmentVariables( const std::string & input ) {
std::string text = input;
autoExpandEnvironmentVariables( text );
return text;
}
このアプローチの利点は、構文のバリエーションに対応し、幅の広い文字列にも対応できるように簡単に適応できることです。 (フラグ-std = c ++ 0xを指定してOSXでClangを使用してコンパイルおよびテストしました)
シンプルでポータブル:
_#include <cstdlib>
#include <string>
static std::string expand_environment_variables( const std::string &s ) {
if( s.find( "${" ) == std::string::npos ) return s;
std::string pre = s.substr( 0, s.find( "${" ) );
std::string post = s.substr( s.find( "${" ) + 2 );
if( post.find( '}' ) == std::string::npos ) return s;
std::string variable = post.substr( 0, post.find( '}' ) );
std::string value = "";
post = post.substr( post.find( '}' ) + 1 );
const *v = getenv( variable.c_str() );
if( v != NULL ) value = std::string( v );
return expand_environment_variables( pre + value + post );
}
_
expand_environment_variables( "${HOME}/.myconfigfile" );
は_/home/joe/.myconfigfile
_を生成します
C/C++言語内で、Unixで環境変数を解決するために私が行うことは次のとおりです。 fs_parmポインターには、展開される可能性のある環境変数のfilespec(またはテキスト)が含まれます。 wrkSpcが指すスペースは、MAX_PATH +60文字の長さである必要があります。エコー文字列の二重引用符は、ワイルドカードが処理されないようにするためのものです。ほとんどのデフォルトシェルはこれを処理できるはずです。
FILE *fp1;
sprintf(wrkSpc, "echo \"%s\" 2>/dev/null", fs_parm);
if ((fp1 = popen(wrkSpc, "r")) == NULL || /* do echo cmd */
fgets(wrkSpc, MAX_NAME, fp1) == NULL)/* Get echo results */
{ /* open/get pipe failed */
pclose(fp1); /* close pipe */
return (P_ERROR); /* pipe function failed */
}
pclose(fp1); /* close pipe */
wrkSpc[strlen(wrkSpc)-1] = '\0';/* remove newline */
MS Windowsの場合は、ExpandEnvironmentStrings()関数を使用します。
これは私が使用するものです:
const unsigned short expandEnvVars(std::string& original)
{
const boost::regex envscan("%([0-9A-Za-z\\/]*)%");
const boost::sregex_iterator end;
typedef std::list<std::Tuple<const std::string,const std::string>> t2StrLst;
t2StrLst replacements;
for (boost::sregex_iterator rit(original.begin(), original.end(), envscan); rit != end; ++rit)
replacements.Push_back(std::make_pair((*rit)[0],(*rit)[1]));
unsigned short cnt = 0;
for (t2StrLst::const_iterator lit = replacements.begin(); lit != replacements.end(); ++lit)
{
const char* expanded = std::getenv(std::get<1>(*lit).c_str());
if (expanded == NULL)
continue;
boost::replace_all(original, std::get<0>(*lit), expanded);
cnt++;
}
return cnt;
}
質問には「wxWidgets」というタグが付けられているため、環境変数の展開に wxConfig で使用されるwxExpandEnvVars()
関数を使用できます。関数自体は残念ながら文書化されていませんが、基本的には必要と思われることを実行し、すべてのプラットフォームで$VAR
、$(VAR)
、または${VAR}
の出現を拡張し、Windowsのみで%VAR%
を展開します。
Qtを使用すると、これは私にとってはうまくいきます:
#include <QString>
#include <QRegExp>
QString expand_environment_variables( QString s )
{
QString r(s);
QRegExp env_var("\\$([A-Za-z0-9_]+)");
int i;
while((i = env_var.indexIn(r)) != -1) {
QByteArray value(qgetenv(env_var.cap(1).toLatin1().data()));
if(value.size() > 0) {
r.remove(i, env_var.matchedLength());
r.insert(i, value);
} else
break;
}
return r;
}
expand_environment_variables(QString( "$ HOME/.myconfigfile")); /home/martin/.myconfigfileを生成します(ネストされた拡張でも機能します)