Skip to content

Commit

Permalink
Refs #20738. Moved ScopedLogs to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
richiware committed Apr 4, 2024
1 parent 2e97580 commit 00f6e51
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 39 deletions.
39 changes: 0 additions & 39 deletions include/fastdds/dds/log/Log.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,45 +185,6 @@ class Log
const std::string& message,
const Log::Context&,
Log::Kind);

//! RAII to setup Logging
struct ScopeLogs
{
//! Set a specific category filter
ScopeLogs(
std::string category_filter)
{
#ifdef __cpp_lib_make_unique
filter_ = std::make_unique<std::regex>(Log::GetCategoryFilter());
#else
filter_ = std::unique_ptr<std::regex>(new std::regex(Log::GetCategoryFilter()));
#endif // ifdef __cpp_lib_make_unique
Log::SetCategoryFilter(std::regex{category_filter});
}

//! Set a specified level
ScopeLogs(
Log::Kind new_verbosity = Log::Error)
{
old_ = Log::GetVerbosity();
Log::SetVerbosity(new_verbosity);
}

~ScopeLogs()
{
if (filter_)
{
Log::SetCategoryFilter(*filter_);
}
else
{
Log::SetVerbosity(old_);
}
}

Log::Kind old_;
std::unique_ptr<std::regex> filter_;
};
};

//! Streams Log::Kind serialization
Expand Down
69 changes: 69 additions & 0 deletions test/utils/ScopedLogs.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
// Copyright 2024 Proyectos y Sistemas de Mantenimiento SL (eProsima).
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#ifndef _TEST_UTILS_SCOPEDLOGS_HPP_
#define _TEST_UTILS_SCOPEDLOGS_HPP_

#include <regex>

#include <fastdds/dds/log/Log.hpp>

namespace eprosima {
namespace fastdds {
namespace testing {

//! RAII to setup Logging
struct ScopeLogs
{
//! Set a specific category filter
ScopeLogs(
std::string category_filter)
{
#ifdef __cpp_lib_make_unique
filter_ = std::make_unique<std::regex>(dds::Log::GetCategoryFilter());
#else
filter_ = std::unique_ptr<std::regex>(new std::regex(dds::Log::GetCategoryFilter()));
#endif // ifdef __cpp_lib_make_unique
dds::Log::SetCategoryFilter(std::regex{category_filter});
}

//! Set a specified level
ScopeLogs(
dds::Log::Kind new_verbosity = dds::Log::Error)
{
old_ = dds::Log::GetVerbosity();
dds::Log::SetVerbosity(new_verbosity);
}

~ScopeLogs()
{
if (filter_)
{
dds::Log::SetCategoryFilter(*filter_);
}
else
{
dds::Log::SetVerbosity(old_);
}
}

dds::Log::Kind old_;
std::unique_ptr<std::regex> filter_;
};

} // namespace testing
} // namespace fastdds
} // namespace eprosima

#endif // _TEST_UTILS_SCOPEDLOGS_HPP_

0 comments on commit 00f6e51

Please sign in to comment.