1#ifndef LIBTEDDY_DETAILS_PLA_FILE_HPP
2#define LIBTEDDY_DETAILS_PLA_FILE_HPP
4#include <libteddy/details/debug.hpp>
5#include <libteddy/details/tools.hpp>
6#include <libteddy/details/types.hpp>
14#include <unordered_map>
25 static constexpr std::uint8_t DontCare = 0b11;
30 auto size ()
const -> int32;
31 auto get (int32 index)
const -> int32;
32 auto set (int32 index, int32 value) -> void;
45 std::vector<byte> values_;
60 static auto load_file (std::string
const& path) -> std::optional<pla_file>;
112 ) const& -> std::vector<std::
string> const&;
126 ) const& -> std::vector<std::
string> const&;
137 std::vector<std::
string> inputLabels,
138 std::vector<std::
string> outputLabels
143 std::vector<std::
string> inputLabels_;
144 std::vector<std::
string> outputLabels_;
151 values_(as_usize(size / 4 + 1),
byte {0, 0, 0, 0})
155inline auto bool_cube::size() const -> int32
160inline auto bool_cube::get(int32
const i)
const -> int32
162 int32
const byteIndex = i / 4;
163 std::size_t
const uByteIndex = as_uindex(byteIndex);
165 assert(byteIndex >= 0 && byteIndex < ssize(values_));
170 return values_[uByteIndex].b0;
172 return values_[uByteIndex].b1;
174 return values_[uByteIndex].b2;
176 return values_[uByteIndex].b3;
181inline auto bool_cube::set(int32
const index, int32
const value) ->
void
183 int32
const byteIndex = index / 4;
184 std::size_t
const uByteIndex = as_uindex(byteIndex);
186 assert((byteIndex >= 0 && byteIndex < ssize(values_)));
187 assert(value == 0 || value == 1 || value == DontCare);
192 values_[uByteIndex].b0 = value & 0b11;
195 values_[uByteIndex].b1 = value & 0b11;
198 values_[uByteIndex].b2 = value & 0b11;
201 values_[uByteIndex].b3 = value & 0b11;
209 -> std::optional<pla_file>
211 auto constexpr to_words = [] (std::string
const& str)
213 std::vector<std::string> words;
214 auto strIt = str.begin();
215 auto const endIt = str.end();
217 while (strIt != endIt)
219 auto const wordBegin = utils::find_if_not(strIt, endIt, ::isspace);
220 auto const wordEnd = utils::find_if(wordBegin, endIt, ::isspace);
221 if (wordBegin != wordEnd)
223 words.emplace_back(wordBegin, wordEnd);
231 auto ifst = std::ifstream(path);
232 if (not ifst.is_open())
238 auto options = std::unordered_map<std::string, std::string>();
239 auto line = std::string();
240 while (std::getline(ifst, line))
244 = utils::find_if_not(line.begin(), line.end(), ::isspace);
245 auto const last = line.end();
265 auto const keyLast = utils::find_if(first, last, ::isspace);
269 : utils::find_if_not(keyLast + 1, last, ::isspace);
270 std::string key(first, keyLast);
271 if (valFirst != last)
274 while (::isspace(*(valLast - 1)))
278 std::string val(valFirst, valLast);
280 static_cast<std::string&&
>(key),
281 static_cast<std::string&&
>(val)
286 options.emplace(
static_cast<std::string&&
>(key), std::string());
291 auto const optionsEnd = options.end();
292 auto const varCountIt = options.find(
".i");
293 auto const fCountIt = options.find(
".o");
294 auto const lineCountIt = options.find(
".p");
295 if (varCountIt == optionsEnd || fCountIt == optionsEnd
296 || lineCountIt == optionsEnd)
301 std::optional<int32> varCount = utils::parse<int32>(varCountIt->second);
302 std::optional<int32> fCount = utils::parse<int32>(fCountIt->second);
303 std::optional<int32> lineCount = utils::parse<int64>(lineCountIt->second);
305 if (not varCount || not fCount || not lineCount)
311 std::vector<pla_file::pla_line> lines;
312 lines.reserve(as_usize(*lineCount));
316 = utils::find_if_not(line.begin(), line.end(), ::isspace);
317 auto const last = line.end();
331 auto const varsLast = utils::find_if(first, last, ::isspace);
332 if (varsLast == last)
336 auto const fsFirst = utils::find_if_not(varsLast + 1, last, ::isspace);
337 auto const fsLast = utils::find_if(fsFirst, last, ::isspace);
338 std::string
const varsStr(first, varsLast);
339 std::string
const fStr(fsFirst, fsLast);
341 if (ssize(varsStr) != *varCount || ssize(fStr) != *fCount)
348 for (
auto i = 0; i < *varCount; ++i)
350 switch (varsStr[as_uindex(i)])
360 variables.set(i, bool_cube::DontCare);
369 for (
auto i = 0; i < *fCount; ++i)
371 switch (fStr[as_uindex(i)])
381 functions.set(i, bool_cube::DontCare);
390 }
while (std::getline(ifst, line));
393 auto const inLbIt = options.find(
".ilb");
394 auto const ouLbIt = options.find(
".ob");
395 std::vector<std::string> inputLabels;
396 if (inLbIt != options.end())
398 inputLabels = to_words(inLbIt->second);
401 std::vector<std::string> outputLabels;
402 if (ouLbIt != options.end())
404 outputLabels = to_words(ouLbIt->second);
408 static_cast<std::vector<pla_file::pla_line>&&
>(lines),
409 static_cast<std::vector<std::string>&&
>(inputLabels),
410 static_cast<std::vector<std::string>&&
>(outputLabels)
414inline pla_file::pla_file(
415 std::vector<pla_line> lines,
416 std::vector<std::string> inputLabels,
417 std::vector<std::string> outputLabels
419 lines_(static_cast<std::vector<
pla_file::pla_line>&&>(lines)),
420 inputLabels_(static_cast<std::vector<std::string>&&>(inputLabels)),
421 outputLabels_(static_cast<std::vector<std::string>&&>(outputLabels))
427 return lines_.front().cube_.size();
432 return lines_.front().fVals_.size();
437 return static_cast<int64
>(lines_.size());
447 return std::move(lines_);
451) const& -> std::vector<std::
string> const&
458 return std::move(inputLabels_);
462) const& -> std::vector<std::
string> const&
464 return outputLabels_;
469 return std::move(outputLabels_);
Bool cube.
Definition pla_file.hpp:23
Representation of a PLA file.
Definition pla_file.hpp:52
auto get_line_count() const -> int64
Returns number of lines in the file.
Definition pla_file.hpp:435
auto get_output_labels() const &-> std::vector< std::string > const &
Return reference to a vector holding labels of functions.
Definition pla_file.hpp:461
auto get_lines() const &-> std::vector< pla_line > const &
Returns reference to a vector holding lines.
Definition pla_file.hpp:440
static auto load_file(std::string const &path) -> std::optional< pla_file >
Loads PLA file from a file at given path.
Definition pla_file.hpp:208
auto get_function_count() const -> int32
Returns number of functions in the file.
Definition pla_file.hpp:430
auto get_input_labels() const &-> std::vector< std::string > const &
Returns reference to a vector holding labels of input variables.
Definition pla_file.hpp:450
auto get_variable_count() const -> int32
Returns number of variables in the file.
Definition pla_file.hpp:425
Represents one line of a PLA file.
Definition pla_file.hpp:67