Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C++11-ify virtualisation in lwIP classes #12489

Merged
merged 2 commits into from
Mar 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions features/lwipstack/LWIPMemoryManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "EMACMemoryManager.h"


class LWIPMemoryManager : public EMACMemoryManager {
class LWIPMemoryManager final : public EMACMemoryManager {
public:

/**
Expand All @@ -31,7 +31,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param align Memory alignment requirement in bytes
* @return Allocated memory buffer, or NULL in case of error
*/
virtual net_stack_mem_buf_t *alloc_heap(uint32_t size, uint32_t align);
net_stack_mem_buf_t *alloc_heap(uint32_t size, uint32_t align) override;

/**
* Allocates memory buffer chain from a pool
Expand All @@ -44,7 +44,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param align Memory alignment requirement for each buffer in bytes
* @return Allocated memory buffer chain, or NULL in case of error
*/
virtual net_stack_mem_buf_t *alloc_pool(uint32_t size, uint32_t align);
net_stack_mem_buf_t *alloc_pool(uint32_t size, uint32_t align) override;

/**
* Get memory buffer pool allocation unit
Expand All @@ -54,7 +54,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param align Memory alignment requirement in bytes
* @return Contiguous memory size
*/
virtual uint32_t get_pool_alloc_unit(uint32_t align) const;
uint32_t get_pool_alloc_unit(uint32_t align) const override;

/**
* Free memory buffer chain
Expand All @@ -64,7 +64,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
*
* @param buf Memory buffer chain to be freed.
*/
virtual void free(net_stack_mem_buf_t *buf);
void free(net_stack_mem_buf_t *buf) override;

/**
* Return total length of a memory buffer chain
Expand All @@ -74,7 +74,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param buf Memory buffer chain
* @return Total length in bytes
*/
virtual uint32_t get_total_len(const net_stack_mem_buf_t *buf) const;
uint32_t get_total_len(const net_stack_mem_buf_t *buf) const override;

/**
* Copy a memory buffer chain
Expand All @@ -85,7 +85,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param to_buf Memory buffer chain to copy to
* @param from_buf Memory buffer chain to copy from
*/
virtual void copy(net_stack_mem_buf_t *to_buf, const net_stack_mem_buf_t *from_buf);
void copy(net_stack_mem_buf_t *to_buf, const net_stack_mem_buf_t *from_buf) override;

/**
* Copy to a memory buffer chain
Expand All @@ -98,7 +98,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param ptr Pointer to data
* @param len Data length
*/
virtual void copy_to_buf(net_stack_mem_buf_t *to_buf, const void *ptr, uint32_t len);
void copy_to_buf(net_stack_mem_buf_t *to_buf, const void *ptr, uint32_t len) override;

/**
* Copy from a memory buffer chain
Expand All @@ -110,7 +110,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param from_buf Memory buffer chain to copy from
* @return Length of the data that was copied
*/
virtual uint32_t copy_from_buf(void *ptr, uint32_t len, const net_stack_mem_buf_t *from_buf) const;
uint32_t copy_from_buf(void *ptr, uint32_t len, const net_stack_mem_buf_t *from_buf) const override;

/**
* Concatenate two memory buffer chains
Expand All @@ -122,7 +122,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param to_buf Memory buffer chain to concatenate to
* @param cat_buf Memory buffer chain to concatenate
*/
virtual void cat(net_stack_mem_buf_t *to_buf, net_stack_mem_buf_t *cat_buf);
void cat(net_stack_mem_buf_t *to_buf, net_stack_mem_buf_t *cat_buf) override;

/**
* Returns the next buffer
Expand All @@ -132,23 +132,23 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param buf Memory buffer
* @return The next memory buffer, or NULL if last
*/
virtual net_stack_mem_buf_t *get_next(const net_stack_mem_buf_t *buf) const;
net_stack_mem_buf_t *get_next(const net_stack_mem_buf_t *buf) const override;

/**
* Return pointer to the payload of the buffer
*
* @param buf Memory buffer
* @return Pointer to the payload
*/
virtual void *get_ptr(const net_stack_mem_buf_t *buf) const;
void *get_ptr(const net_stack_mem_buf_t *buf) const override;

/**
* Return payload size of the buffer
*
* @param buf Memory buffer
* @return Size in bytes
*/
virtual uint32_t get_len(const net_stack_mem_buf_t *buf) const;
uint32_t get_len(const net_stack_mem_buf_t *buf) const override;

/**
* Sets the payload size of the buffer
Expand All @@ -159,7 +159,7 @@ class LWIPMemoryManager : public EMACMemoryManager {
* @param buf Memory buffer
* @param len Payload size, must be less or equal allocated size
*/
virtual void set_len(net_stack_mem_buf_t *buf, uint32_t len);
void set_len(net_stack_mem_buf_t *buf, uint32_t len) override;

private:

Expand Down
23 changes: 3 additions & 20 deletions features/lwipstack/LWIPStack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,30 +191,13 @@ LWIP::call_in_callback_cb_t LWIP::get_call_in_callback()
return cb;
}

const char *LWIP::get_ip_address()
nsapi_error_t LWIP::get_ip_address(SocketAddress *address)
{
if (!default_interface) {
return NULL;
return NSAPI_ERROR_NO_ADDRESS;
}

const ip_addr_t *addr = get_ip_addr(true, &default_interface->netif);

if (!addr) {
return NULL;
}
#if LWIP_IPV6
if (IP_IS_V6(addr)) {
return ip6addr_ntoa_r(ip_2_ip6(addr), ip_address, sizeof(ip_address));
}
#endif
#if LWIP_IPV4
if (IP_IS_V4(addr)) {
return ip4addr_ntoa_r(ip_2_ip4(addr), ip_address, sizeof(ip_address));
}
#endif
#if LWIP_IPV6 && LWIP_IPV4
return NULL;
#endif
return get_ip_address_if(address, nullptr);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we do this in separate commit at least?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right - I'll pull that fixup change to the front.

}

nsapi_error_t LWIP::get_ip_address_if(SocketAddress *address, const char *interface_name)
Expand Down
Loading