Rename get_dir_size() to get_dir_count()
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 23 Mar 2017 10:37:35 +0000 (11:37 +0100)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 23 Mar 2017 10:37:52 +0000 (11:37 +0100)
src/filefunc.cpp
src/filefunc.hxx
test/test_filefunc.cpp

index cf5601a..e1e4882 100644 (file)
@@ -308,7 +308,7 @@ bool get_dir(
     std::vector< std::string >& result,
     bool include_dot_names )
 {
-    // code copied for get_dir_size; keep in sync
+    // code copied to get_dir_count; keep in sync
     DIR* dir = ::opendir( path.c_str());
     if (!dir)
     {
@@ -349,7 +349,7 @@ std::vector< std::string > get_dir(const std::string& path, bool include_dot_nam
  * @param include_dot_names determines if dot-files should be included in the count.
  * @return the number of entries in the directory; return -1 in case of error
  */
-int get_dir_size(const std::string& path, bool include_dot_names)
+int get_dir_count(const std::string& path, bool include_dot_names)
 {
     // code is a simplified copy of get_dir, above. Keep in sync
     int result = 0;
index b9f2d44..6051707 100644 (file)
@@ -162,7 +162,7 @@ time_t file_mtime(const std::string& path);
 
 bool get_dir(const std::string& path, std::vector< std::string >& result, bool include_dot_names= false );
 std::vector< std::string > get_dir(const std::string& path, bool include_dot_names= false );
-int get_dir_size(const std::string& path, bool include_dot_names= false );
+int get_dir_count(const std::string& path, bool include_dot_names= false );
 
 bool unlink(const std::string& path);
 
index 0deb521..bf4e7e6 100644 (file)
@@ -156,7 +156,7 @@ BOOST_AUTO_TEST_CASE(DirTest1)
 
     BOOST_CHECK_EQUAL( true, res );
     BOOST_CHECK( ! names.empty() );
-    BOOST_CHECK_EQUAL(I2n::get_dir_size(test_dir), names.size());
+    BOOST_CHECK_EQUAL(I2n::get_dir_count(test_dir), names.size());
 
     BOOST_MESSAGE("Looking for " << basename(__FILE__) << " in " << test_dir);
     StringVector::iterator it = std::find( names.begin(), names.end(), basename(__FILE__));
@@ -167,7 +167,7 @@ BOOST_AUTO_TEST_CASE(DirTest1)
 
     names= get_dir(test_dir,true);
     BOOST_CHECK( ! names.empty() );
-    BOOST_CHECK_EQUAL(I2n::get_dir_size(test_dir, true), names.size());
+    BOOST_CHECK_EQUAL(I2n::get_dir_count(test_dir, true), names.size());
 
     for (it= names.begin(); it!=names.end(); ++it)
     {