Files
shaka-packager/packager/utils/absl_flag_hexbytes.cc
Joey Parrish 3e71302ba4 feat!: Rewrite build system and third-party dependencies (#1310)
This work was done over ~80 individual commits in the `cmake` branch,
which are now being merged back into `main`. As a roll-up commit, it is
too big to be reviewable, but each change was reviewed individually in
context of the `cmake` branch. After this, the `cmake` branch will be
renamed `cmake-porting-history` and preserved.

---------

Co-authored-by: Geoff Jukes <geoffjukes@users.noreply.github.com>
Co-authored-by: Bartek Zdanowski <bartek.zdanowski@gmail.com>
Co-authored-by: Carlos Bentzen <cadubentzen@gmail.com>
Co-authored-by: Dennis E. Mungai <2356871+Brainiarc7@users.noreply.github.com>
Co-authored-by: Cosmin Stejerean <cstejerean@gmail.com>
Co-authored-by: Carlos Bentzen <carlos.bentzen@bitmovin.com>
Co-authored-by: Cosmin Stejerean <cstejerean@meta.com>
Co-authored-by: Cosmin Stejerean <cosmin@offbytwo.com>
2023-12-01 09:32:19 -08:00

59 lines
1.5 KiB
C++

// Copyright 2023 Google LLC. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#include <packager/utils/absl_flag_hexbytes.h>
#include <iostream>
#include <vector>
#include <absl/flags/flag.h>
#include <absl/flags/parse.h>
#include <absl/flags/usage.h>
#include <absl/strings/ascii.h>
#include <absl/strings/escaping.h>
#include <absl/strings/str_format.h>
#include <absl/strings/str_join.h>
#include <absl/strings/str_split.h>
#include <packager/utils/hex_parser.h>
namespace shaka {
// Custom flag parser for HexBytes
bool AbslParseFlag(absl::string_view text, HexBytes* flag, std::string* error) {
std::string hexString(text);
absl::RemoveExtraAsciiWhitespace(&hexString);
if (hexString.empty()) {
flag->bytes = std::vector<uint8_t>(0, 0);
return true;
}
std::string bytesRaw;
if (!shaka::ValidHexStringToBytes(hexString, &bytesRaw)) {
*error = "Invalid hex string";
return false;
}
absl::string_view hex_str_view(bytesRaw);
absl::Span<const uint8_t> span(
reinterpret_cast<const uint8_t*>(hex_str_view.data()),
hex_str_view.size());
flag->bytes = std::vector<uint8_t>(span.begin(), span.end());
return true;
}
std::string AbslUnparseFlag(const HexBytes& flag) {
std::string result;
for (const auto byte : flag.bytes) {
absl::StrAppendFormat(&result, "%02x", byte);
}
return result;
}
} // namespace shaka