本文整理汇总了C++中path_t::c_str方法的典型用法代码示例。如果您正苦于以下问题:C++ path_t::c_str方法的具体用法?C++ path_t::c_str怎么用?C++ path_t::c_str使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类path_t
的用法示例。
在下文中一共展示了path_t::c_str方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
inline
bool operator==(path_t const &a, path_t const &b)
{
if (!a || !b)
return a.c_str() == b.c_str();
return a.length() == b.length() && ::strcmp(a.c_str(), b.c_str()) == 0;
}
示例2: fh
hasher::digest_rc md5_hasher::hex_digest(path_t const& fp) const {
std::ifstream fh(fp.c_str(), std::ifstream::in | std::ifstream::binary);
digest_rc rc(hex_digest(fh));
fh.close();
return rc;
}
示例3: setup
auto teardown = [&]() {
fs::remove_all(sig_path);
fs::remove_all(delta_path);
fs::remove_all(target_path);
fs::remove_all(config.cache_path);
};
setup();
SECTION("it should generate a signature") {
rs_result rc;
REQUIRE(file_manager.is_readable(archive_011));
// generate sig
REQUIRE(RS_DONE == encoder.signature(archive_011.c_str(), sig_path.c_str()));
// verify the checksum
REQUIRE(sig_checksum == md5_hasher.hex_digest(sig_path).digest);
}
SECTION("it should generate a delta") {
REQUIRE(RS_DONE == encoder.signature(archive_011.c_str(), sig_path.c_str()));
REQUIRE(file_manager.is_readable(sig_path));
REQUIRE(file_manager.is_readable(archive_012));
REQUIRE(file_manager.is_writable(delta_path));
REQUIRE(RS_DONE == encoder.delta(sig_path.c_str(), archive_012.c_str(), delta_path.c_str()));
REQUIRE(delta_checksum == md5_hasher.hex_digest(delta_path).digest);
示例4:
ArchiveWriter::ArchiveWriter(KernelTransaction &tx, const path_t &path, RsaKeyPair *keypair):
keypair(keypair),
tx(tx),
state(State::Initial){
this->stream.reset(new boost::iostreams::stream<TransactedFileSink>(this->tx, path.c_str()));
}
示例5: subpath
bool subpath(path_t const &root) const {return subpath(root.c_str());}
示例6: jcast
T jcast(path_t const &p)
{
return jcast<T>(p.c_str());
}
示例7: jcast
T jcast(path_t const &p)
{
return ::crystax::jni::details::jcast_helper<T, const char *>::cast(p.c_str());
}