Arduino DLNA Server
Loading...
Searching...
No Matches
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 123]
 Ntiny_dlna
 CActionReplyRepresents the result of invoking a DLNA service Action
 CActionRequestRepresents a request to invoke a remote DLNA service action
 CAllocatorPSRAMCustom allocator that uses ESP32's PSRAM for memory allocation
 CrebindRebind allocator to another type
 CArgumentDLNA Service: Action Argument
 CChunkPrintPrint implementation for HTTP chunked transfer encoding
 CDLNAControlPointLightweight DLNA control point manager
 CDLNAControlPointMediaRendererClass to control a MediaRenderer device from a control point
 CDLNAControlPointMediaServerHelper class to control/query a MediaServer from a control point
 CDLNAControlPointRequestParserTranslates DLNA UDP Requests to Schedule so that we can schedule a reply
 CDLNADescrAbstract DLNA Descriptor Generation
 CDLNADeviceSetup of a Basic DLNA Device service. The device registers itself to the network and answers to the DLNA queries and requests. A DLNA device uses UDP, Http, XML and Soap to discover and manage a service, so there is quite some complexity involved:
 CDLNADeviceInfoDevice Attributes and generation of XML using urn:schemas-upnp-org:device-1-0. We could just return a predefined device xml document, but we provide a dynamic generation of the service xml which should be more memory efficient. Strings are represented as char*, so you can assign values that are stored in ProgMem to minimize the RAM usage. If you need to keep the values on the heap you can use addString() method
 CDLNADeviceRequestParserTranslates DLNA UDP Requests to Schedule so that we can schedule a reply
 CDLNAMediaRendererMediaRenderer DLNA Device
 CActionRuleIndividual action rule for handling specific actions
 CDLNAMediaRendererConnectionMgrDescrConnectionManager service descriptor (SCPD) generator
 CDLNAMediaRendererControlDescrRenderingControl service descriptor (SCPD) generator
 CDLNAMediaRendererTransportDescrAVTransport service descriptor (SCPD) generator
 CDLNAMediaServerDigital Media Server implementation
 CActionRuleIndividual action rule for handling specific actions
 CDLNAMediaServerConnectionMgrDescrConnectionManager SCPD descriptor for MediaServer
 CDLNAMediaServerContentDirectoryDescrContentDirectory SCPD descriptor for MediaServer
 CDLNAServiceInfoAttributes needed for the DLNA Service Definition
 CEscapingPrintPrint wrapper that escapes & < > " ' while forwarding to an underlying Print. Returns the expanded output length (not input bytes consumed)
 CHttpChunkReaderHttp might reply with chunks. So we need to dechunk the data. see https://en.wikipedia.org/wiki/Chunked_transfer_encoding
 CHttpChunkWriterWrites the data chunked to the actual client
 CHttpHeaderIn a http request and reply we need to process header Debugrmation. With this API we can define and query the header Information. The individual header lines are stored in a list. This is the common functionality for the HttpRequest and HttpReplyHeader subclasses
 CHttpHeaderLineA individual key - value header line
 CHttpLineReaderWe read a single line. A terminating 0 is added to the string to make it compliant for c string functions
 CHttpParametersAPI for http parameters: key=value&key1=value1
 CHttpReplyHeaderReading and Writing of Http Replys
 CHttpRequestSimple API to process get, put, post, del http requests I tried to use Arduino HttpClient, but I did not manage to extract the mime type from streaming get requests
 CHttpRequestHandlerLineUsed to register and process callbacks
 CHttpRequestHeaderReading and writing of Http Requests
 CHttpRequestRewriteObject which information about the rewrite rule
 CHttpServerHeader-only HTTP server wrapper that registers callback handlers
 CHttpStreamCopyProcessing of a single stream to a single client. In the loop we can simply provide individual small chunks until we are done
 CHttpStreamedOutputAbstract class for handling streamed output
 CIconInformation about the icon
 CIControlPointAbstract interface for DLNA Control Point functionality
 CIDeviceAbstract interface for DLNA device functionality
 CIHttpRequestAbstract interface for HTTP client request functionality
 CIHttpServerAbstract interface for HTTP server functionality
 CIPAddressAndPortIP Adress including Port information
 CISubscriptionMgrDeviceAbstract interface for UPnP event subscription management
 CIUDPServiceAbstract Interface for UDP API
 CListDouble linked list
 CIteratorList Iterator
 CNodeList Node
 CLoggerClassLogger that writes messages dependent on the log level
 CMediaItemMedia item description used to build DIDL-Lite entries
 CMimeExtensionMapping from file extensions to mime types
 CMSearchReplyCPProcessing at control point to handle a MSearchReply from the device
 CMSearchReplyScheduleAnswer from device to MSearch request by sending a reply
 CMSearchScheduleSend MSearch request
 CNotifyReplyCPRepresents a notification/notify reply scheduled for control-point processing
 CNullPrintClass with does not do any output: it can be used to determine the length of the output
 CPendingNotificationRepresentation of a queued notification to be delivered later
 CPostAliveScheduleSend out PostAlive messages: Repeated every 5 seconds
 CPostByeScheduleSend out ByeBye message
 CPostSubscribeSend SUBSCRIBE message via UDP unicast
 CPrintfPrintf support with output to Print. This class does not do any heap allocations!
 CQueueFIFO Queue which is based on a List
 CQueueLockFreeA simple single producer, single consumer lock free queue
 CNodeQueueLockFree Node
 CRequestDataProvides information of the received UDP which consists of the (xml) data and the peer address and port
 CRingBufferImplementation of a Simple Circular Buffer. Instead of comparing the position of the read and write pointer in order to figure out if we still have characters available or space left to write we keep track of the actual length which is easier to follow
 CScheduleAn individual Schedule (to send out UDP messages)
 CSchedulerScheduler which processes all due Schedules (to send out UDP replies)
 CSdFatContentProviderContent provider for DLNA media server using SdFat filesystem
 CSdFatDirectoryTreeSimple in-memory directory tree built using SdFat recursive directory listing
 CSdFatFileInfoDescribes an entry from a parsed SdFat directory listing
 CSdFatParserSimple character-by-character parser that emits SdFatFileInfo via a callback
 CStrHeap-backed string utility used throughout tiny_dlna
 CStrPrintPrint to a dynamic string
 CStrViewA simple wrapper to provide string functions on char*. If the underlying char* is a const we do not allow any updates; The ownership of the chr* must be managed externally!
 CSubscriptionRepresents a single event subscription for a service
 CSubscriptionMgrControlPointStandalone manager for UPnP/DLNA event subscriptions used by control points and devices
 CSubscriptionMgrDeviceManages UPnP event subscriptions and queued notifications for a DLNA device
 CTreeNodeNode in the directory tree representing either a file or a directory
 CUDPAsyncServiceAccess to UDP functionality: sending and receiving of data using the Async API of the ESP32
 CUDPServiceAccess to UDP functionality: sending and receiving of data
 CUrlURL parser which breaks a full url string up into its individual parts
 CVectorLightweight wrapper around std::vector with Arduino-friendly helpers and a pluggable allocator
 CXMLAttributeParserSmall utility to extract attributes from a start-tag in an XML fragment
 CXMLDeviceParserIncremental XML device parser using XMLParserPrint
 CXMLNodeRepresents a single XML element
 CXMLParserLightweight streaming XML parser
 CXMLParserPrintHelper class that implements a Print interface to accumulate XML data and then parse it using XMLParser
 CCBRefInternal callback reference used to capture the callback data from XMLParser and forward it to the caller
 CXMLPrinterFunctions to efficiently output XML. XML data contains a lot of redundancy so it is more memory efficient to generate the data instead of using a predefined XML document
 CXMLProtocolInfoParserStreaming parser for ConnectionManager::GetProtocolInfo results