Sese Framework  x.y.z
A cross-platform framework
载入中...
搜索中...
未找到
MemoryViewer.h
浏览该文件的文档.
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:
36
37 MemoryViewer() = delete;
38
44 static void peer(OutputStream *output, void *position, size_t size, bool is_cap = true) noexcept;
45
50 static void peer8(OutputStream *output, void *position, bool is_cap = true) noexcept;
51
56 static void peer16(OutputStream *output, void *position, bool is_cap = true) noexcept;
57
63 static void peer16(OutputStream *output, void *position, EndianType type, bool is_cap = true) noexcept;
64
69 static void peer32(OutputStream *output, void *position, bool is_cap = true) noexcept;
70
76 static void peer32(OutputStream *output, void *position, EndianType type, bool is_cap = true) noexcept;
77
82 static void peer64(OutputStream *output, void *position, bool is_cap = true) noexcept;
83
89 static void peer64(OutputStream *output, void *position, EndianType type, bool is_cap = true) noexcept;
90
91 static char toChar(unsigned char ch, bool is_cap) noexcept;
92};
93
94
95} // namespace sese