sirit/src/literal_string.cpp

40 lines
1 KiB
C++
Raw Normal View History

2018-08-28 08:16:52 +01:00
/* This file is part of the sirit project.
2019-07-14 22:48:59 +01:00
* Copyright (c) 2019 sirit
* This software may be used and distributed according to the terms of the
* 3-Clause BSD License
2018-08-28 08:16:52 +01:00
*/
#include <string>
2019-03-11 06:26:21 +00:00
#include "common_types.h"
#include "literal_string.h"
2018-08-28 08:16:52 +01:00
namespace Sirit {
LiteralString::LiteralString(std::string string) : string{std::move(string)} {
2018-08-28 08:16:52 +01:00
operand_type = OperandType::String;
}
LiteralString::~LiteralString() = default;
void LiteralString::Fetch(Stream& stream) const {
2018-10-23 09:09:17 +01:00
for (std::size_t i = 0; i < string.size(); i++) {
2018-08-28 08:16:52 +01:00
stream.Write(static_cast<u8>(string[i]));
}
2018-10-23 09:09:17 +01:00
for (std::size_t i = 0; i < 4 - (string.size() % 4); i++) {
2018-08-28 08:16:52 +01:00
stream.Write(static_cast<u8>(0));
}
}
u16 LiteralString::GetWordCount() const {
return static_cast<u16>(string.size() / 4 + 1);
}
bool LiteralString::operator==(const Operand& other) const {
if (operand_type == other.GetType()) {
return dynamic_cast<const LiteralString&>(other).string == string;
}
return false;
}
} // namespace Sirit