bunkerweb/headers/modsecurity/variable_value.h
Théophile Diot cfc32af85c Squashed 'src/deps/src/modsecurity/' changes from ccc2d9b536..bbde9381cb
bbde9381cb Change release version to v3.0.11
35969946ca Merge pull request #3024 from martinhsv/v3/master
4c7a9bd312 Add WRDE_NOCMD to wordexp call
5b094c0ce9 Merge pull request #3014 from martinhsv/v3/master
c11b28292d Fix: validateDTD compile fails if when libxml2 not installed
cb4d7ae371 Adjust some copyright dates
0311da9f1b Merge pull request #3008 from martinhsv/v3/master
beaa452302 Fix memory leak of validateDTD's dtd object
a9edee3dbe const-ify some references in test folder
de2d053d6e Remove unneeded cppcheck suppression
36adc58ea3 const-ify some references (satisfy cppcheck)
b9836bcaa4 Merge pull request #3005 from martinhsv/v3/master
b180de53bf Fix memory leaks in ValidateSchema
fd67c6eb1d Remove unneeded heap allocation in AnchoredSetVariable::set
dc6cce5f0c refactoring and remove dead code in lmdb
3951ba0e48 CHANGES entry for previous PR
2fcd373107 Merge pull request #3001 from SpiderLabs/v3/dev/action_expirevar
c63b5bea1d Change linux workflow to Ubuntu 22.04
34809d8064 Add expirevar support for lmdb
118e1b3a44 Support expirevar for in-memory collection
135d1fa42b Merge pull request #2985 from martinhsv/v3/master
af45ccd53f Fix: lmdb regex match on non-null-terminated string
375519d5f2 Merge pull request #2983 from martinhsv/v3/master
dc2e38e242 Fix memory leaks in lmdb code (new'd strings)
8594cb8a7d Correct json for one regression test file
60f802e480 Merge pull request #2939 from martinhsv/v3/master
31cbd7309a Configure: add additional name to pcre2 pkg-config list
cbe2d61174 CHANGES: Preparing for next version

git-subtree-dir: src/deps/src/modsecurity
git-subtree-split: bbde9381cbccb49ea73f6194b08b478adc53f3bc
2023-12-07 14:46:12 +01:00

121 lines
2.8 KiB
C++

/*
* ModSecurity, http://www.modsecurity.org/
* Copyright (c) 2015 - 2023 Trustwave Holdings, Inc. (http://www.trustwave.com/)
*
* 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
*
* If any of the files related to licensing are missing or if you have any
* other questions related to licensing please contact Trustwave Holdings, Inc.
* directly using the email address security@modsecurity.org.
*
*/
#ifdef __cplusplus
#include <string>
#include <iostream>
#include <memory>
#include <list>
#include <utility>
#endif
#include "modsecurity/variable_origin.h"
#ifndef HEADERS_MODSECURITY_VARIABLE_VALUE_H_
#define HEADERS_MODSECURITY_VARIABLE_VALUE_H_
#ifndef __cplusplus
typedef struct Variable_t VariableValue;
#endif
#ifdef __cplusplus
namespace modsecurity {
class Collection;
class VariableValue {
public:
using Origins = std::list<std::unique_ptr<VariableOrigin>>;
explicit VariableValue(const std::string *key,
const std::string *value = nullptr)
: m_collection(""),
m_key(*key),
m_keyWithCollection(*key),
m_value(value != nullptr?*value:"")
{ }
VariableValue(const std::string *collection,
const std::string *key,
const std::string *value)
: m_collection(*collection),
m_key(*key),
m_keyWithCollection(*collection + ":" + *key),
m_value(*value)
{ }
explicit VariableValue(const VariableValue *o) :
m_collection(o->m_collection),
m_key(o->m_key),
m_keyWithCollection(o->m_keyWithCollection),
m_value(o->m_value)
{
for (const auto &i : o->m_orign) {
std::unique_ptr<VariableOrigin> origin(new VariableOrigin());
origin->m_offset = i->m_offset;
origin->m_length = i->m_length;
m_orign.push_back(std::move(origin));
}
}
VariableValue(const VariableValue &v) = delete;
const std::string& getKey() const {
return m_key;
}
const std::string& getKeyWithCollection() const {
return m_keyWithCollection;
}
const std::string& getCollection() const {
return m_collection;
}
const std::string& getValue() const {
return m_value;
}
void setValue(const std::string &value) {
m_value = value;
}
void addOrigin(std::unique_ptr<VariableOrigin> origin) {
m_orign.push_back(std::move(origin));
}
const Origins& getOrigin() const {
return m_orign;
}
private:
Origins m_orign;
std::string m_collection;
std::string m_key;
std::string m_keyWithCollection;
std::string m_value;
};
} // namespace modsecurity
#endif
#endif // HEADERS_MODSECURITY_VARIABLE_VALUE_H_