1
0
mirror of https://github.com/wfjm/w11.git synced 2026-02-05 00:05:26 +00:00
Files
wfjm.w11/tools/src/librlink/RlinkCommandExpect.hpp
Walter F.J. Mueller 4a032e9436 - added RH70/RP/RM big disk support
- many cleanups
2015-05-14 17:00:36 +00:00

82 lines
3.0 KiB
C++

// $Id: RlinkCommandExpect.hpp 661 2015-04-03 18:28:41Z mueller $
//
// Copyright 2011-2015 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
// This program is free software; you may redistribute and/or modify it under
// the terms of the GNU General Public License as published by the Free
// Software Foundation, either version 2, or at your option any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for complete details.
//
// Revision History:
// Date Rev Version Comment
// 2015-04-02 661 1.2 expect logic: remove stat from Expect, invert mask
// 2014-12-20 616 1.1 add Done count methods (for rblk/wblk)
// 2011-03-12 368 1.0 Initial version
// 2011-01-15 355 0.1 First draft
// ---------------------------------------------------------------------------
/*!
\file
\version $Id: RlinkCommandExpect.hpp 661 2015-04-03 18:28:41Z mueller $
\brief Declaration of class RlinkCommandExpect.
*/
#ifndef included_Retro_RlinkCommandExpect
#define included_Retro_RlinkCommandExpect 1
#include <cstdint>
#include <vector>
namespace Retro {
class RlinkCommandExpect {
public:
RlinkCommandExpect();
RlinkCommandExpect(uint16_t data, uint16_t datamsk=0xffff);
RlinkCommandExpect(const std::vector<uint16_t>& block);
RlinkCommandExpect(const std::vector<uint16_t>& block,
const std::vector<uint16_t>& blockmsk);
~RlinkCommandExpect();
void SetData(uint16_t data, uint16_t datamsk=0);
void SetDone(uint16_t done, bool check=true);
void SetBlock(const std::vector<uint16_t>& block);
void SetBlock(const std::vector<uint16_t>& block,
const std::vector<uint16_t>& blockmsk);
uint16_t DataValue() const;
uint16_t DataMask() const;
uint16_t DoneValue() const;
const std::vector<uint16_t>& BlockValue() const;
const std::vector<uint16_t>& BlockMask() const;
bool DataCheck(uint16_t val) const;
bool DoneCheck(uint16_t val) const;
bool BlockCheck(size_t ind, uint16_t val) const;
size_t BlockCheck(const uint16_t* pval, size_t size) const;
bool DataIsChecked() const;
bool DoneIsChecked() const;
bool BlockIsChecked(size_t ind) const;
void Dump(std::ostream& os, int ind=0, const char* text=0) const;
protected:
uint16_t fDataVal; //!< data value
uint16_t fDataMsk; //!< data mask
std::vector<uint16_t> fBlockVal; //!< block value
std::vector<uint16_t> fBlockMsk; //!< block mask
};
} // end namespace Retro
#include "RlinkCommandExpect.ipp"
#endif