/*************************************************************************** * Copyright (C) 2006 Nicolas Hadacek * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * ***************************************************************************/ #ifndef GENERIC_MEMORY_H #define GENERIC_MEMORY_H #include "devices/base/generic_device.h" #include "devices/base/hex_buffer.h" namespace Device { class Memory { public: const Data &device() const { return _device; } virtual ~Memory() {} virtual void fill(BitValue value) = 0; virtual void clear() { fill(BitValue()); } virtual void copyFrom(const Memory &memory) = 0; virtual BitValue checksum() const = 0; virtual HexBuffer toHexBuffer() const = 0; bool save(TQTextStream &stream, HexBuffer::Format format) const; enum WarningType { NoWarning = 0, ValueTooLarge = 1, ValueOutsideRange = 2 }; TQ_DECLARE_FLAGS(WarningTypes, WarningType) WarningTypes fromHexBuffer(const HexBuffer &hb, TQStringList &warnings); bool load(TQTextStream &stream, TQStringList &errors, WarningTypes &warningTypes, TQStringList &warnings); protected: const Data &_device; Memory(const Data &device) : _device(device) {} virtual void fromHexBuffer(const HexBuffer &hb, WarningTypes &warningTypes, TQStringList &warnings, TQMap &inRange) = 0; virtual void savePartial(TQTextStream &stream, HexBuffer::Format format) const = 0; }; TQ_DECLARE_OPERATORS_FOR_FLAGS(Memory::WarningTypes) } // namespace #endif