sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // ULogger input plug-in interface sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef ULOGGERINPUTPLUGIN_H sl@0: #define ULOGGERINPUTPLUGIN_H sl@0: sl@0: #include sl@0: #include "uloggerplugin.h" sl@0: #include "uloggerdatatypes.h" sl@0: sl@0: namespace Ulogger sl@0: { sl@0: sl@0: //! Abstract class for input plug-ins. sl@0: /*! sl@0: A ULogger input plug-in listens for ULogger commands on some communication sl@0: medium, such as serial, usb or a TCP socket. Whenever a command is received sl@0: by the input plug-in, it passes this command to ULogger, which then interprets sl@0: the command, acts on it, and returns a response to the input plug-in. The input sl@0: plug-in sends any response coming from ULogger back to the client that sent sl@0: the command in the first place. sl@0: sl@0: All input plug-ins must derive from this class in order to be compatible with sl@0: ULogger. They must also derive from ULogger::CPlugin (whose header is already sl@0: included by this header, for convenience) in order to be compatible with the sl@0: ECom framework, which ULogger uses to load its input plug-ins. sl@0: */ sl@0: class MInputPlugin sl@0: { sl@0: public: sl@0: /** sl@0: Asynchronous method that reads command data from the input medium. ULogger sl@0: calls this when it's ready to receive command data from the input plug-in. sl@0: When the input plug-in completes the read operation it notifies the caller sl@0: via the TRequestStatus that is passed into this method by reference. It sl@0: provides the command data that has been received in the descriptor that is sl@0: passed into this method by reference. sl@0: Input plug-ins typically implement this method by simply passing the sl@0: TRequestStatus and descriptor arguments on to another asynchronous method, sl@0: such as for example a socket's ReadOneOrMore method. sl@0: sl@0: @param aStatus The request status used to contain completion information for sl@0: the function. On completion, contains a system-wide error sl@0: code. sl@0: @param aData A descriptor reference to store data obtained from input sl@0: channel. sl@0: @return KErrNone if operation was finished without any problems, system wide sl@0: error code otherwise. sl@0: */ sl@0: virtual TInt ReadData(TRequestStatus& aStatus, TDes8& aData) = 0; sl@0: sl@0: /** Cancels asynchronous operation issued by ReadData method. */ sl@0: virtual void CancelReadData() = 0; sl@0: sl@0: /** sl@0: Synchronous Method that sends the given acknowledgment data back to the sl@0: client that is sending command data to the input plug-in. ULogger calls this sl@0: method whenever it needs to send a response to a previously received sl@0: command. sl@0: sl@0: @param aData A descriptor which contains error code or other results, for sl@0: example, array of filters. sl@0: Format of this data depends on previously obtained command. sl@0: @return KErrNone is send operation finished with success otherwise sl@0: system wide error code. sl@0: */ sl@0: virtual TInt SendAcknowledgment(const TDesC8& aData) = 0; sl@0: sl@0: /** sl@0: Called by ULogger as first method after construction or after changes in sl@0: config file. This allows the input plug-in to initialize itself with its sl@0: private settings. sl@0: sl@0: @param aConfigs actual configurations valid for this instance sl@0: @return KErrNone, if successful; otherwise one of the other system wide sl@0: error codes. sl@0: */ sl@0: virtual TInt ConfigureInputPlugin(const RPointerArray& aConfigs) = 0; sl@0: sl@0: /** sl@0: Called by ULogger to indicate that the input plug-in must flush all buffers sl@0: and release any locked resources. Any resources may be locked only after any sl@0: other method is called. sl@0: */ sl@0: virtual void CloseInputPlugin() = 0; sl@0: sl@0: /** Virtual destructor. */ sl@0: virtual ~MInputPlugin(){} sl@0: sl@0: /** sl@0: Input plug-in interface id. This is for ULogger to distinguish between the sl@0: different types of plug-ins (e.g. Intput vs Output plug-ins). sl@0: */ sl@0: static const CPlugin::TPluginInterface iInterfaceId = CPlugin::EInput; sl@0: }; sl@0: sl@0: } //end of namespace sl@0: sl@0: #endif /* ULOGGERINPUTPLUGIN_H */