1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
|
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
*/
//////////////////////////////////////////////////////////////////////////////////////////////
//
// Implement the classes for the various types of hash keys we support.
//
#pragma once
#include <string>
#include "ts/ts.h"
#include "operator.h"
#include "resources.h"
#include "value.h"
///////////////////////////////////////////////////////////////////////////////
// Operator declarations.
//
class OperatorSetConfig : public Operator
{
public:
OperatorSetConfig() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetConfig"); }
// noncopyable
OperatorSetConfig(const OperatorSetConfig &) = delete;
void operator=(const OperatorSetConfig &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
TSOverridableConfigKey _key = TS_CONFIG_NULL;
TSRecordDataType _type = TS_RECORDDATATYPE_NULL;
std::string _config;
Value _value;
};
class OperatorSetStatus : public Operator
{
public:
OperatorSetStatus() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetStatus"); }
// noncopyable
OperatorSetStatus(const OperatorSetStatus &) = delete;
void operator=(const OperatorSetStatus &) = delete;
void initialize(Parser &p) override;
protected:
void initialize_hooks() override;
void exec(const Resources &res) const override;
private:
Value _status;
const char *_reason = nullptr;
int _reason_len = 0;
};
class OperatorSetStatusReason : public Operator
{
public:
OperatorSetStatusReason() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetStatusReason"); }
// noncopyable
OperatorSetStatusReason(const OperatorSetStatusReason &) = delete;
void operator=(const OperatorSetStatusReason &) = delete;
void initialize(Parser &p) override;
protected:
void initialize_hooks() override;
void exec(const Resources &res) const override;
private:
Value _reason;
};
class OperatorSetDestination : public Operator
{
public:
OperatorSetDestination() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetDestination"); }
// noncopyable
OperatorSetDestination(const OperatorSetDestination &) = delete;
void operator=(const OperatorSetDestination &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
UrlQualifiers _url_qual = URL_QUAL_NONE;
Value _value;
};
// All the header operators share a base class
class OperatorRMDestination : public Operator
{
public:
OperatorRMDestination() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorRMDestination"); }
// noncopyable
OperatorRMDestination(const OperatorRMDestination &) = delete;
void operator=(const OperatorRMDestination &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
UrlQualifiers _url_qual = URL_QUAL_NONE;
};
class OperatorSetRedirect : public Operator
{
public:
OperatorSetRedirect() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetRedirect"); }
// noncopyable
OperatorSetRedirect(const OperatorSetRedirect &) = delete;
void operator=(const OperatorSetRedirect &) = delete;
void initialize(Parser &p) override;
TSHttpStatus
get_status() const
{
return static_cast<TSHttpStatus>(_status.get_int_value());
}
const std::string &
get_location() const
{
return _location.get_value();
}
protected:
void exec(const Resources &res) const override;
private:
Value _status;
Value _location;
};
class OperatorNoOp : public Operator
{
public:
OperatorNoOp() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorNoOp"); }
// noncopyable
OperatorNoOp(const OperatorNoOp &) = delete;
void operator=(const OperatorNoOp &) = delete;
protected:
void exec(const Resources & /* res ATS_UNUSED */) const override{};
};
class OperatorSetTimeoutOut : public Operator
{
public:
OperatorSetTimeoutOut() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetTimeoutOut"); }
// noncopyable
OperatorSetTimeoutOut(const OperatorSetTimeoutOut &) = delete;
void operator=(const OperatorSetTimeoutOut &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
enum TimeoutOutType {
TO_OUT_UNDEFINED,
TO_OUT_ACTIVE,
TO_OUT_INACTIVE,
TO_OUT_CONNECT,
TO_OUT_DNS,
};
TimeoutOutType _type = TO_OUT_UNDEFINED;
Value _timeout;
};
class OperatorSkipRemap : public Operator
{
public:
OperatorSkipRemap() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSkipRemap"); }
// noncopyable
OperatorSkipRemap(const OperatorSkipRemap &) = delete;
void operator=(const OperatorSkipRemap &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
bool _skip_remap = false;
};
// All the header operators share a base class
class OperatorRMHeader : public OperatorHeaders
{
public:
OperatorRMHeader() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorRMHeader"); }
// noncopyable
OperatorRMHeader(const OperatorRMHeader &) = delete;
void operator=(const OperatorRMHeader &) = delete;
protected:
void exec(const Resources &res) const override;
};
class OperatorAddHeader : public OperatorHeaders
{
public:
OperatorAddHeader() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorAddHeader"); }
// noncopyable
OperatorAddHeader(const OperatorAddHeader &) = delete;
void operator=(const OperatorAddHeader &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
Value _value;
};
class OperatorSetHeader : public OperatorHeaders
{
public:
OperatorSetHeader() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetHeader"); }
// noncopyable
OperatorSetHeader(const OperatorSetHeader &) = delete;
void operator=(const OperatorSetHeader &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
Value _value;
};
class OperatorCounter : public Operator
{
public:
OperatorCounter() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorCounter"); }
// noncopyable
OperatorCounter(const OperatorCounter &) = delete;
void operator=(const OperatorCounter &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
std::string _counter_name;
int _counter = TS_ERROR;
};
class OperatorRMCookie : public OperatorCookies
{
public:
OperatorRMCookie() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorRMCookie"); }
// noncopyable
OperatorRMCookie(const OperatorRMCookie &) = delete;
void operator=(const OperatorRMCookie &) = delete;
protected:
void exec(const Resources &res) const override;
};
class OperatorAddCookie : public OperatorCookies
{
public:
OperatorAddCookie() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorAddCookie"); }
// noncopyable
OperatorAddCookie(const OperatorAddCookie &) = delete;
void operator=(const OperatorAddCookie &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
Value _value;
};
class OperatorSetCookie : public OperatorCookies
{
public:
OperatorSetCookie() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetCookie"); }
// noncopyable
OperatorSetCookie(const OperatorSetCookie &) = delete;
void operator=(const OperatorSetCookie &) = delete;
void initialize(Parser &p) override;
protected:
void exec(const Resources &res) const override;
private:
Value _value;
};
namespace CookieHelper
{
enum CookieOp { COOKIE_OP_DEL, COOKIE_OP_ADD, COOKIE_OP_SET };
/*
* This function returns if cookies need to be changed or not.
* If the return value is true, updated_cookies would be cookies after the change.
*/
bool cookieModifyHelper(const char *cookies, const size_t cookies_len, std::string &updated_cookies, const CookieOp cookie_op,
const std::string &cookie_key, const std::string &cookie_value = std::string());
} // namespace CookieHelper
class OperatorSetConnDSCP : public Operator
{
public:
OperatorSetConnDSCP() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetConnDSCP"); }
// noncopyable
OperatorSetConnDSCP(const OperatorSetConnDSCP &) = delete;
void operator=(const OperatorSetConnDSCP &) = delete;
void initialize(Parser &p) override;
protected:
void initialize_hooks() override;
void exec(const Resources &res) const override;
private:
Value _ds_value;
};
class OperatorSetConnMark : public Operator
{
public:
OperatorSetConnMark() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetConnMark"); }
// noncopyable
OperatorSetConnMark(const OperatorSetConnMark &) = delete;
void operator=(const OperatorSetConnMark &) = delete;
void initialize(Parser &p) override;
protected:
void initialize_hooks() override;
void exec(const Resources &res) const override;
private:
Value _ds_value;
};
class OperatorSetDebug : public Operator
{
public:
OperatorSetDebug() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetDebug"); }
// noncopyable
OperatorSetDebug(const OperatorSetDebug &) = delete;
void operator=(const OperatorSetDebug &) = delete;
void initialize(Parser &p) override;
protected:
void initialize_hooks() override;
void exec(const Resources &res) const override;
};
class OperatorSetBody : public Operator
{
public:
OperatorSetBody() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetBody"); }
// noncopyable
OperatorSetBody(const OperatorSetBody &) = delete;
void operator=(const OperatorSetBody &) = delete;
void initialize(Parser &p) override;
protected:
void initialize_hooks() override;
void exec(const Resources &res) const override;
private:
Value _value;
};
class OperatorSetHttpCntl : public Operator
{
public:
OperatorSetHttpCntl() { TSDebug(PLUGIN_NAME_DBG, "Calling CTOR for OperatorSetHttpCntl"); }
// noncopyable
OperatorSetHttpCntl(const OperatorSetHttpCntl &) = delete;
void operator=(const OperatorSetHttpCntl &) = delete;
void initialize(Parser &p) override;
protected:
void initialize_hooks() override;
void exec(const Resources &res) const override;
private:
bool _flag = false;
TSHttpCntlType _cntl_qual;
};
|