Introduction to C & C++

Post on 14-Jan-2016

55 views 2 download

Tags:

description

Introduction to C & C++. Lecture 10 – library JJCAO. Content. Static lib Dynamic lib Mex Open source libraries. Library. A  library  is a package of code that is meant to be reused by many programs. Typically, a C++ library comes in two pieces: - PowerPoint PPT Presentation

transcript

Introduction to C & C++

Lecture 10 – library

JJCAO

Content

• Static lib• Dynamic lib• Mex• Open source libraries

Library

A library is a package of code that is meant to be reused by many programs. Typically, a C++ library comes in two pieces:

1) A header file that defines the functionality the library is exposing (offering) to the programs using it.2) A precompiled binary that contains the implementation of that functionality pre-compiled into machine language.

Note: Some libraries may be split into multiple files and/or have multiple header files.

Libraries are precompiled for several reasons

• First, since libraries rarely change, they do not need to be recompiled often. It would be a waste of time to recompile the library every time you wrote a program that used them.

• Second, because precompiled objects are in machine language, it prevents people from accessing or changing the source code, which is important to businesses or people who don’t want to make their source code available for intellectual property reasons.

Static & dynamic library

• A static library (archive) consists of routines that are compiled and linked directly into your program. When you compile a program that uses a static library, all the functionality of the static library becomes part of your executable. – .lib extension for windows– .a extension for Linux

• A dynamic library (shared library) consists of routines that are loaded into your application at run time. When you compile a program that uses a dynamic library, the library does not become part of your executable — it remains as a separate unit. – .dll extension for windows– .so extension for Linux

Create a static lib

1. Win32 console application

• 2. Application settings

Call a static lib

• Create a project, such as win32 console app• Include header files• Call functions in the lib &• Tell your program where to locate the lib

Create a dll• 1. Win32 console application• 2. Application settings

3. After the project is created, it defined MYDLL_EXPORTS automatically. How to use it?

#ifdef MYDLL_EXPORTS#define MY_DLL_API __declspec(dllexport)#else #define MY_DLL_API __declspec(dllimport)#endif

MY_DLL_API void print_dynamic();

class MY_DLL_API PointArray{private:

std::vector<Point> pts;int size;

public:PointArray(){}void push_back( const Point &p);

};

Call a dll

• Create a project, such as win32 console app• Include header files• Call functions in the dll &• Tell your program where to locate the lib

Demo

MEX-files

1. Interface to external programs written in C and Fortran

2. Dynamically linked subroutines behaving like M-files

3. But platform-specific (dll for wondows)4. Applications:

① Pre-existing C and Fortran programs can be called without having to be rewritten

② Bottleneck computations, e.g., for-loops, can be recoded in C or Fortran for efficiency

Matlab Data• Only mxArray:– Its type– Its dimensions– The data associated with this array– If numeric, whether the variable is real or complex– If sparse, its indices and nonzero maximum

elements– If a structure or object, the number of fields and

field names

Build Mex-fileSupported compilers options files

Lcc C Compiler (bundled) lccopts.bat

Microsoft Visual C++ msvc90opts.bat

System ANSI Compiler mexopts.sh

GCC gccopts.sh

• Compile: mex filename -f <optionsfile>• Configure: mex–setup

• Test your configure– mex yprime.c– yprime(1,1:4)

C:\Program Files\MATLAB\R2009a\bin\win32\mexopts

C:\Program Files\MATLAB\R2009a\extern\examples\mex\ yprime.c

Structure of C Mex-File

• A C MEX-file gateway routine:void mexFunction( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { /* more C code ... */ }

Mex-file = Gateway routine + computational routine

• Two simple examples– Scalar_times.c– Matrix_times.c

• Important functions:– mexErrMsgTxt("Two input arguments required.");– mxGetPr– mxCreate* functions, like mxCreateDoubleMatrix,

mxCreateSparse, or mxCreateString

Advanced Topics

• Help– Use m-file sharing same name

• Link multiple files– mex circle.c square.obj rectangle.c shapes.lib– Output: circle. Mexw32

• Memory management• Automatic Cleanup of Temporary Arrays– You are more efficient than the automatic

mechanism.– Persistent Arrays– …

Team work

• SVN

Competition

• ACM/ICPC