11be35a165
To do so, a few dependencies have been imported: * external/bsd/lutok * external/mit/lua * external/public-domain/sqlite * external/public-domain/xz The Kyua framework is the new generation of ATF (Automated Test Framework), it is composed of: * external/bsd/atf * external/bsd/kyua-atf-compat * external/bsd/kyua-cli * external/bsd/kyua-tester * tests Kyua/ATF being written in C++, it depends on libstdc++ which is provided by GCC. As this is not part of the sources, Kyua is only compiled when the native GCC utils are installed. To install Kyua do the following: * In a cross-build enviromnent, add the following to the build.sh commandline: -V MKBINUTILS=yes -V MKGCCCMDS=yes WARNING: At this point the import is still experimental, and not supported on native builds (a.k.a make build). Change-Id: I26aee23c5bbd2d64adcb7c1beb98fe0d479d7ada
111 lines
3.7 KiB
C++
111 lines
3.7 KiB
C++
// Copyright 2011 Google Inc.
|
|
// 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 Google Inc. 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 COPYRIGHT HOLDERS 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 COPYRIGHT
|
|
// OWNER 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; LOSS OF USE,
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#include "engine/drivers/scan_action.hpp"
|
|
|
|
#include "engine/action.hpp"
|
|
#include "engine/exceptions.hpp"
|
|
#include "engine/test_result.hpp"
|
|
#include "store/backend.hpp"
|
|
#include "store/exceptions.hpp"
|
|
#include "store/transaction.hpp"
|
|
#include "utils/optional.ipp"
|
|
|
|
namespace fs = utils::fs;
|
|
namespace scan_action = engine::drivers::scan_action;
|
|
|
|
using utils::optional;
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
/// Gets an action from the store.
|
|
///
|
|
/// \param tx The open store transaction.
|
|
/// \param [in,out] action_id The specific action to get, or none to fetch the
|
|
/// latest available action. This is updated to contain the action id of
|
|
/// the returned action.
|
|
///
|
|
/// \return The fetched action.
|
|
///
|
|
/// \throw error If there is any problem while loading the action.
|
|
static engine::action
|
|
get_action(store::transaction& tx, optional< int64_t >& action_id)
|
|
{
|
|
try {
|
|
if (action_id)
|
|
return tx.get_action(action_id.get());
|
|
else {
|
|
const std::pair< int64_t, engine::action > latest_action =
|
|
tx.get_latest_action();
|
|
action_id = latest_action.first;
|
|
return latest_action.second;
|
|
}
|
|
} catch (const store::error& e) {
|
|
throw engine::error(e.what());
|
|
}
|
|
}
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
/// Pure abstract destructor.
|
|
scan_action::base_hooks::~base_hooks(void)
|
|
{
|
|
}
|
|
|
|
|
|
/// Executes the operation.
|
|
///
|
|
/// \param store_path The path to the database store.
|
|
/// \param action_id The identifier of the action to scan; if none, scans the
|
|
/// latest action in the store.
|
|
/// \param hooks The hooks for this execution.
|
|
///
|
|
/// \returns A structure with all results computed by this driver.
|
|
scan_action::result
|
|
scan_action::drive(const fs::path& store_path,
|
|
optional< int64_t > action_id,
|
|
base_hooks& hooks)
|
|
{
|
|
store::backend db = store::backend::open_ro(store_path);
|
|
store::transaction tx = db.start();
|
|
|
|
const engine::action action = get_action(tx, action_id);
|
|
hooks.got_action(action_id.get(), action);
|
|
|
|
store::results_iterator iter = tx.get_action_results(action_id.get());
|
|
while (iter) {
|
|
hooks.got_result(iter);
|
|
++iter;
|
|
}
|
|
|
|
return result();
|
|
}
|