mirror of
https://github.com/openappsec/openappsec.git
synced 2025-10-04 21:43:14 +03:00
First release of open-appsec source code
This commit is contained in:
58
core/environment/trace.cc
Executable file
58
core/environment/trace.cc
Executable file
@@ -0,0 +1,58 @@
|
||||
// Copyright (C) 2022 Check Point Software Technologies Ltd. All rights reserved.
|
||||
|
||||
// Licensed under the Apache License, Version 2.0 (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.
|
||||
|
||||
#include "environment/trace.h"
|
||||
|
||||
#include "boost/uuid/uuid.hpp"
|
||||
#include "boost/uuid/uuid_generators.hpp"
|
||||
#include "boost/uuid/uuid_io.hpp"
|
||||
#include "debug.h"
|
||||
|
||||
using namespace std;
|
||||
using namespace boost::uuids;
|
||||
|
||||
USE_DEBUG_FLAG(D_TRACE);
|
||||
|
||||
Trace::Trace(string _id)
|
||||
:
|
||||
trace_id(_id)
|
||||
{
|
||||
if (trace_id.empty()) {
|
||||
boost::uuids::random_generator uuid_random_gen;
|
||||
trace_id = to_string(uuid_random_gen());
|
||||
}
|
||||
context.registerValue<string>("trace id", trace_id);
|
||||
context.activate();
|
||||
dbgTrace(D_TRACE) << "New trace was created " << trace_id;
|
||||
}
|
||||
|
||||
Trace::~Trace()
|
||||
{
|
||||
dbgTrace(D_TRACE) << "Current trace has ended " << trace_id;
|
||||
context.unregisterKey<string>("trace id");
|
||||
context.deactivate();
|
||||
}
|
||||
|
||||
string
|
||||
Trace::getTraceId() const
|
||||
{
|
||||
return trace_id;
|
||||
}
|
||||
|
||||
TraceWrapper::TraceWrapper(string _id) : trace(make_shared<Trace>(_id)) {}
|
||||
|
||||
string
|
||||
TraceWrapper::getTraceId() const
|
||||
{
|
||||
return trace->getTraceId();
|
||||
}
|
Reference in New Issue
Block a user