本文整理汇总了C++中FileSystem::connect方法的典型用法代码示例。如果您正苦于以下问题:C++ FileSystem::connect方法的具体用法?C++ FileSystem::connect怎么用?C++ FileSystem::connect使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileSystem
的用法示例。
在下文中一共展示了FileSystem::connect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: hdfsBuilderConnect
hdfsFS hdfsBuilderConnect(struct hdfsBuilder * bld) {
PARAMETER_ASSERT(bld && !bld->nn.empty(), NULL, EINVAL);
Hdfs::Internal::SessionConfig conf(*bld->conf);
std::string uri;
std::stringstream ss;
ss.imbue(std::locale::classic());
xmlURIPtr uriobj;
FileSystem * fs = NULL;
if (0 == strcasecmp(bld->nn.c_str(), "default")) {
uri = conf.getDefaultUri();
} else {
/*
* handle scheme
*/
if (bld->nn.find("://") == bld->nn.npos) {
uri = "hdfs://";
}
uri += bld->nn;
}
uriobj = xmlParseURI(uri.c_str());
try {
if (!uriobj) {
THROW(Hdfs::InvalidParameter, "Cannot parse connection URI");
}
if (uriobj->port != 0 && bld->port != 0) {
THROW(Hdfs::InvalidParameter, "Cannot determinate port");
}
if (uriobj->user && !bld->userName.empty()) {
THROW(Hdfs::InvalidParameter, "Cannot determinate user name");
}
ss << uriobj->scheme << "://";
if (uriobj->user || !bld->userName.empty()) {
ss << (uriobj->user ? uriobj->user : bld->userName.c_str())
<< '@';
}
if (bld->port == 0 && uriobj->port == 0) {
ss << uriobj->server;
} else {
ss << uriobj->server << ":" << (uriobj->port ? uriobj->port : bld->port);
}
uri = ss.str();
} catch (const std::bad_alloc & e) {
if (uriobj) {
xmlFreeURI(uriobj);
}
SetErrorMessage("Out of memory");
errno = ENOMEM;
return NULL;
} catch (...) {
if (uriobj) {
xmlFreeURI(uriobj);
}
SetLastException(Hdfs::current_exception());
handleException(Hdfs::current_exception());
return NULL;
}
xmlFreeURI(uriobj);
try {
fs = new FileSystem(*bld->conf);
if (!bld->token.empty()) {
fs->connect(uri.c_str(), NULL, bld->token.c_str());
} else {
fs->connect(uri.c_str());
}
return new HdfsFileSystemInternalWrapper(fs);
} catch (const std::bad_alloc & e) {
SetErrorMessage("Out of memory");
delete fs;
errno = ENOMEM;
} catch (...) {
delete fs;
SetLastException(Hdfs::current_exception());
handleException(Hdfs::current_exception());
}
return NULL;
}