mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:52:43 +00:00 
			
		
		
		
	 1682f0b760
			
		
	
	
		1682f0b760
		
	
	
	
	
		
			
			SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
		
			
				
	
	
		
			79 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Noncopyable.h>
 | |
| #include <AK/RefCounted.h>
 | |
| #include <AK/RefPtr.h>
 | |
| #include <AK/Types.h>
 | |
| #include <LibIPC/Forward.h>
 | |
| 
 | |
| namespace Core {
 | |
| 
 | |
| class AnonymousBufferImpl final : public RefCounted<AnonymousBufferImpl> {
 | |
| public:
 | |
|     static RefPtr<AnonymousBufferImpl> create(int fd, size_t);
 | |
|     ~AnonymousBufferImpl();
 | |
| 
 | |
|     int fd() const { return m_fd; }
 | |
|     size_t size() const { return m_size; }
 | |
|     void* data() { return m_data; }
 | |
|     const void* data() const { return m_data; }
 | |
| 
 | |
| private:
 | |
|     AnonymousBufferImpl(int fd, size_t, void*);
 | |
| 
 | |
|     int m_fd { -1 };
 | |
|     size_t m_size { 0 };
 | |
|     void* m_data { nullptr };
 | |
| };
 | |
| 
 | |
| class AnonymousBuffer {
 | |
| public:
 | |
|     static AnonymousBuffer create_with_size(size_t);
 | |
|     static AnonymousBuffer create_from_anon_fd(int fd, size_t);
 | |
| 
 | |
|     AnonymousBuffer() { }
 | |
|     ~AnonymousBuffer();
 | |
| 
 | |
|     bool is_valid() const { return m_impl; }
 | |
| 
 | |
|     int fd() const { return m_impl ? m_impl->fd() : -1; }
 | |
|     size_t size() const { return m_impl ? m_impl->size() : 0; }
 | |
| 
 | |
|     template<typename T>
 | |
|     T* data()
 | |
|     {
 | |
|         static_assert(IsVoid<T> || IsTrivial<T>);
 | |
|         if (!m_impl)
 | |
|             return nullptr;
 | |
|         return (T*)m_impl->data();
 | |
|     }
 | |
| 
 | |
|     template<typename T>
 | |
|     const T* data() const
 | |
|     {
 | |
|         static_assert(IsVoid<T> || IsTrivial<T>);
 | |
|         if (!m_impl)
 | |
|             return nullptr;
 | |
|         return (const T*)m_impl->data();
 | |
|     }
 | |
| 
 | |
| private:
 | |
|     explicit AnonymousBuffer(NonnullRefPtr<AnonymousBufferImpl>);
 | |
| 
 | |
|     RefPtr<AnonymousBufferImpl> m_impl;
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| namespace IPC {
 | |
| 
 | |
| bool encode(Encoder&, const Core::AnonymousBuffer&);
 | |
| bool decode(Decoder&, Core::AnonymousBuffer&);
 | |
| 
 | |
| }
 |