blob: 831384cde9a53d0069e94765b85de09ac37066bf [file] [log] [blame]
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 PacketVideo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
* -------------------------------------------------------------------
*/
#ifndef OSCL_LIBRARY_LIST_H_INCLUDED
#define OSCL_LIBRARY_LIST_H_INCLUDED
#ifndef OSCL_MEM_H_INCLUDED
#include "oscl_mem.h"
#endif
#ifndef OSCL_STRING_CONTAINERS_H_INCLUDED
#include "oscl_string_containers.h"
#endif
#ifndef OSCL_VECTOR_H_INCLUDED
#include "oscl_vector.h"
#endif
#ifndef OSCL_LIBRARY_COMMON_H_INCLUDED
#include "oscl_library_common.h"
#endif
struct OsclUuid;
class PVLogger;
/**
* OsclLibraryList contains the list of dynamically shared libraries that need to be loaded
**/
class OsclLibraryList
{
public:
/**
* Default object Constructor function
**/
OSCL_IMPORT_REF OsclLibraryList();
/**
* Object destructor function
**/
OSCL_IMPORT_REF ~OsclLibraryList();
/**
* Populate the list for the given interface ID.
*
* @param aInterfaceId ID to find the list of libraries for.
* @param aConfigFile - DLL Config file
*
* @returns OsclLibStatus about whether the librarylist vector got populated or not
**/
OSCL_IMPORT_REF OsclLibStatus Populate(const OsclUuid& aInterfaceId, const OSCL_String& aConfigFile);
/**
* Get the number of libraries in the list.
*
* @returns Number of libraries in list.
*/
OSCL_IMPORT_REF uint32 Size();
/**
* Returns the n'th element.
* @param n element position to return
* @returns the reference to the library path stored in the iLibList vector
*/
OSCL_IMPORT_REF const OSCL_String& GetLibraryPathAt(uint32 n);
private:
Oscl_Vector<OSCL_HeapString<OsclMemAllocator>, OsclMemAllocator> iLibList;
PVLogger* ipLogger;
#if OSCL_LIBRARY_PERF_LOGGING
PVLogger* iDiagnosticsLogger;
uint32 iLibHit;
uint32 iLinesRead;
#endif
};
#endif //OSCL_LIBRARY_LIST_H_INCLUDED