1
1
mirror of https://github.com/tstack/lnav.git synced 2024-10-26 21:19:54 +03:00
lnav/test/test_stubs.cc

99 lines
2.3 KiB
C++
Raw Normal View History

2021-03-28 23:50:26 +03:00
/**
* Copyright (c) 2021, Timothy Stack
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither the name of Timothy Stack nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2022-03-17 01:38:08 +03:00
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2021-03-28 23:50:26 +03:00
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2022-03-17 01:38:08 +03:00
#include "base/injector.hh"
#include "bound_tags.hh"
2021-03-28 23:50:26 +03:00
#include "config.h"
#include "lnav.hh"
#include "service_tags.hh"
#include "spectro_source.hh"
2021-03-28 23:50:26 +03:00
struct lnav_data_t lnav_data;
2022-03-17 01:38:08 +03:00
void
rebuild_hist()
2021-03-28 23:50:26 +03:00
{
}
2022-03-17 01:38:08 +03:00
bool
setup_logline_table(exec_context& ec)
2021-03-28 23:50:26 +03:00
{
return false;
}
2022-03-17 01:38:08 +03:00
bool
rescan_files(bool required)
2021-03-28 23:50:26 +03:00
{
return false;
}
2022-03-17 01:38:08 +03:00
void
wait_for_children()
2021-03-28 23:50:26 +03:00
{
}
2022-03-17 01:38:08 +03:00
size_t
rebuild_indexes(nonstd::optional<ui_clock::time_point> deadline)
2021-03-28 23:50:26 +03:00
{
return 0;
2021-03-28 23:50:26 +03:00
}
2022-03-17 01:38:08 +03:00
void
rebuild_indexes_repeatedly()
2021-09-26 01:35:44 +03:00
{
}
void
wait_for_pipers(nonstd::optional<timeval>)
{
}
2021-03-28 23:50:26 +03:00
readline_context::command_map_t lnav_commands;
2021-03-31 08:50:10 +03:00
namespace injector {
2022-03-14 01:49:41 +03:00
2022-07-20 09:48:25 +03:00
template<>
void
force_linking(lnav_flags_tag anno)
{
}
2021-03-28 23:50:26 +03:00
template<>
2022-03-17 01:38:08 +03:00
void
force_linking(services::curl_streamer_t anno)
2021-03-28 23:50:26 +03:00
{
}
template<>
void
force_linking(services::remote_tailer_t anno)
{
}
2022-03-17 01:38:08 +03:00
} // namespace injector