Mercurial > hg > svcore
annotate transform/transform.pro @ 489:82ab61fa9223
* Reorganise our sparql queries on the basis that Redland must be
available, not only optional. So for anything querying the pool
of data about plugins, we use a single datastore and model which
is initialised at the outset by PluginRDFIndexer and then queried
directly; for anything that "reads from a file" (e.g. loading
annotations) we query directly using Rasqal, going to the
datastore when we need additional plugin-related information.
This may improve performance, but mostly it simplifies the code
and fixes a serious issue with RDF import in the previous versions
(namely that multiple sequential RDF imports would end up sharing
the same RDF data pool!)
author | Chris Cannam |
---|---|
date | Fri, 21 Nov 2008 16:12:29 +0000 |
parents | bf1311518f80 |
children | fdf5930b7ccc |
rev | line source |
---|---|
Chris@395 | 1 TEMPLATE = lib |
Chris@395 | 2 |
Chris@395 | 3 SV_UNIT_PACKAGES = vamp vamp-hostsdk |
Chris@395 | 4 load(../sv.prf) |
Chris@395 | 5 |
Chris@395 | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
Chris@395 | 7 QT += xml |
Chris@395 | 8 |
Chris@395 | 9 TARGET = svtransform |
Chris@395 | 10 |
Chris@395 | 11 DEPENDPATH += . .. |
Chris@395 | 12 INCLUDEPATH += . .. |
Chris@395 | 13 OBJECTS_DIR = tmp_obj |
Chris@395 | 14 MOC_DIR = tmp_moc |
Chris@395 | 15 |
Chris@395 | 16 # Input |
Chris@395 | 17 HEADERS += FeatureExtractionModelTransformer.h \ |
Chris@395 | 18 RealTimeEffectModelTransformer.h \ |
Chris@395 | 19 Transform.h \ |
Chris@395 | 20 TransformDescription.h \ |
Chris@395 | 21 TransformFactory.h \ |
Chris@395 | 22 ModelTransformer.h \ |
Chris@395 | 23 ModelTransformerFactory.h |
Chris@395 | 24 SOURCES += FeatureExtractionModelTransformer.cpp \ |
Chris@395 | 25 RealTimeEffectModelTransformer.cpp \ |
Chris@395 | 26 Transform.cpp \ |
Chris@395 | 27 TransformFactory.cpp \ |
Chris@395 | 28 ModelTransformer.cpp \ |
Chris@395 | 29 ModelTransformerFactory.cpp |