Mercurial > hg > audiodb
annotate libtests/libtest.mk @ 402:58b88ab69424 api-inversion
Move the struct adb definition from the auidioDB_API.h into the
audioDB-internals.h header file, leaving only the typedef behind.
Thus a user of the API sees only an incomplete type, which cannot be
instantiated (but /pointers/ to it can); there's then less temptation to
break the abstraction barrier by using structure fields in client code.
Not only that, but we can now safely put C++ stuff in the structure.
Take advantage of this by putting a std::set<std::string> in there, to
hold all the keys currently in the database; populate this field on
audiodb_open() (and delete it on audiodb_close). This will be useful
when we come to implement variants of audiodb_insert().
author | mas01cr |
---|---|
date | Wed, 03 Dec 2008 17:40:15 +0000 |
parents | 64b2bf35d30b |
children | e072aa1611f5 |
rev | line source |
---|---|
map01bf@375 | 1 EXECUTABLE=audioDB |
map01bf@375 | 2 SOVERSION=0 |
map01bf@375 | 3 MINORVERSION=0 |
map01bf@375 | 4 LIBRARY_FULL=lib$(EXECUTABLE).so.$(SOVERSION).$(MINORVERSION) |
map01bf@375 | 5 LIBRARY_VERS=lib$(EXECUTABLE).so.$(SOVERSION) |
map01bf@375 | 6 LIBRARY=lib$(EXECUTABLE).so |
map01bf@375 | 7 ARCH_FLAGS= |
mas01cr@373 | 8 |
mas01cr@373 | 9 |
map01bf@375 | 10 ifeq ($(shell uname),Darwin) |
map01bf@375 | 11 override LIBRARY_FULL=lib$(EXECUTABLE).$(SOVERSION).$(MINORVERSION).dylib |
map01bf@375 | 12 override LIBRARY_VERS=lib$(EXECUTABLE).$(SOVERSION).dylib |
map01bf@375 | 13 override LIBRARY=lib$(EXECUTABLE).dylib |
map01bf@375 | 14 ifeq ($(shell sysctl -n hw.optional.x86_64),1) |
map01bf@375 | 15 override ARCH_FLAGS+=-arch x86_64 |
map01bf@375 | 16 endif |
map01bf@375 | 17 endif |
map01bf@375 | 18 |
map01bf@375 | 19 all: $(LIBRARY_FULL) $(LIBRARY_VERS) $(LIBRARY) test1 |
map01bf@375 | 20 |
map01bf@375 | 21 $(LIBRARY_FULL): |
map01bf@375 | 22 -ln -s ../../$(LIBRARY_FULL) $@ |
map01bf@375 | 23 |
map01bf@375 | 24 $(LIBRARY_VERS): |
map01bf@375 | 25 -ln -s ../../$(LIBRARY_FULL) $@ |
map01bf@375 | 26 |
map01bf@375 | 27 $(LIBRARY): $(LIBRARY_VERS) |
mas01cr@373 | 28 -ln -s $< $@ |
mas01cr@373 | 29 |
mas01cr@378 | 30 test1: prog1.c ../test_utils_lib.h ../../audioDB_API.h |
mas01cr@394 | 31 gcc -g -std=c99 -Wall $(ARCH_FLAGS) -laudioDB -L. -Wl,-rpath,. -o $@ $< |
mas01cr@373 | 32 |
mas01cr@373 | 33 clean: |
mas01cr@392 | 34 -rm $(LIBRARY_FULL) $(LIBRARY_VERS) $(LIBRARY) |