blob: 853fe0077806819e0c402553062c762bdac51e63 [file] [log] [blame]
/*
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.
*/
/**
* @file common.h
* @brief Common declarations and definitions (header file).
*/
#pragma once
#define PLUGIN_NAME "prefetch"
#include <list>
#include <set>
#include <string>
#include <vector>
using String = std::string;
using StringView = std::string_view;
using StringSet = std::set<std::string>;
using StringList = std::list<std::string>;
using StringVector = std::vector<std::string>;
#ifdef PREFETCH_UNIT_TEST
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#define PrefetchDebug(fmt, ...) PrintToStdErr("(%s) %s:%d:%s() " fmt "\n", PLUGIN_NAME, __FILE__, __LINE__, __func__, ##__VA_ARGS__)
#define PrefetchError(fmt, ...) PrintToStdErr("(%s) %s:%d:%s() " fmt "\n", PLUGIN_NAME, __FILE__, __LINE__, __func__, ##__VA_ARGS__)
void PrintToStdErr(const char *fmt, ...);
#define PrefetchAssert assert
#else /* PREFETCH_UNIT_TEST */
#include "ts/ts.h"
namespace prefetch_ns
{
extern DbgCtl dbg_ctl;
}
using namespace prefetch_ns;
#define PrefetchDebug(fmt, ...) \
do { \
Dbg(dbg_ctl, "%s:%d:%s() " fmt, __FILE__, __LINE__, __func__, ##__VA_ARGS__); \
} while (0)
#define PrefetchError(fmt, ...) \
do { \
TSError("(%s) " fmt, PLUGIN_NAME, ##__VA_ARGS__); \
Dbg(dbg_ctl, "%s:%d:%s() " fmt, __FILE__, __LINE__, __func__, ##__VA_ARGS__); \
} while (0)
#define PrefetchAssert TSAssert
#endif /* PREFETCH_UNIT_TEST */
size_t getValue(const String &str);
size_t getValue(const char *str, size_t len);