Sese Framework  2.3.0
A cross-platform framework
Loading...
Searching...
No Matches
MemoryViewer.h
Go to the documentation of this file.
1// Copyright 2024 libsese
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
23#pragma once
24
25#include "sese/util/Endian.h"
28
29namespace sese {
30
32class MemoryViewer final : public NotInstantiable {
33public:
35
36 MemoryViewer() = delete;
37
43 static void peer(OutputStream *output, void *position, size_t size, bool is_cap = true) noexcept;
44
49 static void peer8(OutputStream *output, void *position, bool is_cap = true) noexcept;
50
55 static void peer16(OutputStream *output, void *position, bool is_cap = true) noexcept;
56
62 static void peer16(OutputStream *output, void *position, EndianType type, bool is_cap = true) noexcept;
63
68 static void peer32(OutputStream *output, void *position, bool is_cap = true) noexcept;
69
75 static void peer32(OutputStream *output, void *position, EndianType type, bool is_cap = true) noexcept;
76
81 static void peer64(OutputStream *output, void *position, bool is_cap = true) noexcept;
82
88 static void peer64(OutputStream *output, void *position, EndianType type, bool is_cap = true) noexcept;
89
90 static char toChar(unsigned char ch, bool is_cap) noexcept;
91};
92
93
94} // namespace sese