From 35662787f479b93b3205310934574132609461cc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 8 Nov 2011 12:36:25 +0200 Subject: Get rid of special tracer database The include, types, and pragma tests have been moved to the common/ directory while the object test has been merged into common/lifecycle. The transaction test will be re-implemented as common/ test as soon as SQL statement tracing support is merged. --- common/include/driver.cxx | 42 ++++++++++++++++++++++ common/include/makefile | 91 +++++++++++++++++++++++++++++++++++++++++++++++ common/include/obj1.hxx | 27 ++++++++++++++ common/include/obj2.hxx | 27 ++++++++++++++ common/include/obj3.hxx | 27 ++++++++++++++ common/include/objs1.hxx | 15 ++++++++ common/include/objs2.hxx | 15 ++++++++ common/include/objs3.hxx | 13 +++++++ common/include/objs4.hxx | 13 +++++++ common/include/test.std | 0 common/include/test1.hxx | 18 ++++++++++ common/include/test2.hxx | 17 +++++++++ common/include/test3.hxx | 14 ++++++++ common/include/test4.hxx | 14 ++++++++ 14 files changed, 333 insertions(+) create mode 100644 common/include/driver.cxx create mode 100644 common/include/makefile create mode 100644 common/include/obj1.hxx create mode 100644 common/include/obj2.hxx create mode 100644 common/include/obj3.hxx create mode 100644 common/include/objs1.hxx create mode 100644 common/include/objs2.hxx create mode 100644 common/include/objs3.hxx create mode 100644 common/include/objs4.hxx create mode 100644 common/include/test.std create mode 100644 common/include/test1.hxx create mode 100644 common/include/test2.hxx create mode 100644 common/include/test3.hxx create mode 100644 common/include/test4.hxx (limited to 'common/include') diff --git a/common/include/driver.cxx b/common/include/driver.cxx new file mode 100644 index 0000000..d588a62 --- /dev/null +++ b/common/include/driver.cxx @@ -0,0 +1,42 @@ +// file : common/include/driver.cxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +// Test inclusion of -odb files (compilation test). +// +// The setup of this test is as follows: the ODB compiler has two +// additional include directories in its search path: .. and ../.. +// while the C++ compiler has only ../.. . This way, if a ..-based +// path is used in the generated code, the C++ compilation will +// fail. +// + +#include +#include +#include + +#include +#include + +#include + +#include "test1.hxx" +#include "test1-odb.hxx" + +#include "test2.hxx" +#include "test2-odb.hxx" + +#include "test3.hxx" +#include "test3-odb.hxx" + +#include "test4.hxx" +#include "test4-odb.hxx" + +using namespace std; +using namespace odb::core; + +int +main () +{ +} diff --git a/common/include/makefile b/common/include/makefile new file mode 100644 index 0000000..7053d75 --- /dev/null +++ b/common/include/makefile @@ -0,0 +1,91 @@ +# file : common/include/makefile +# author : Boris Kolpackov +# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +# license : GNU GPL v2; see accompanying LICENSE file + +include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make + +cxx_tun := driver.cxx +odb_hdr := obj1.hxx obj2.hxx obj3.hxx test1.hxx test2.hxx test3.hxx test4.hxx +cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o) $(odb_hdr:.hxx=-odb.o)) +cxx_od := $(cxx_obj:.o=.o.d) + +common.l := $(out_root)/libcommon/common/common.l +common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options + +driver := $(out_base)/driver +dist := $(out_base)/.dist +test := $(out_base)/.test +clean := $(out_base)/.clean + +# Import. +# +$(call import,\ + $(scf_root)/import/odb/stub.make,\ + odb: odb,odb-rules: odb_rules) + +# Build. +# +$(driver): $(cxx_obj) $(common.l) +$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base) \ +-I$(out_base)/../.. -I$(src_base)/../.. +$(cxx_obj) $(cxx_od): $(common.l.cpp-options) + +genf := $(foreach f,$(odb_hdr:.hxx=-odb),$(addprefix $f,.hxx .ixx .cxx)) +gen := $(addprefix $(out_base)/,$(genf)) + +$(gen): $(odb) +$(gen): odb := $(odb) +$(gen) $(dist): export odb_options += --database $(db_id) \ +--table-prefix include_ +$(gen): cpp_options := -I$(out_base) -I$(src_base)/.. -I$(src_base)/../.. +$(gen): $(common.l.cpp-options) + +$(call include-dep,$(cxx_od),$(cxx_obj),$(gen)) + +# Alias for default target. +# +$(out_base)/: $(driver) + +# Dist: not supported. +# +$(dist): + +# Test. +# +$(test): $(driver) $(src_base)/test.std + $(call message,test $<,$< --options-file $(dcf_root)/db.options \ +>$(out_base)/test.out) + $(call message,,diff -u $(src_base)/test.std $(out_base)/test.out) + $(call message,,rm -f $(out_base)/test.out) + +# Clean. +# +$(clean): \ + $(driver).o.clean \ + $(addsuffix .cxx.clean,$(cxx_obj)) \ + $(addsuffix .cxx.clean,$(cxx_od)) \ + $(addprefix $(out_base)/,$(odb_hdr:.hxx=-odb.cxx.hxx.clean)) + $(call message,,rm -f $(out_base)/test.out) + +# Generated .gitignore. +# +ifeq ($(out_base),$(src_base)) +$(driver): | $(out_base)/.gitignore + +$(out_base)/.gitignore: files := driver $(genf) +$(clean): $(out_base)/.gitignore.clean + +$(call include,$(bld_root)/git/gitignore.make) +endif + +# How to. +# +$(call include,$(odb_rules)) +$(call include,$(bld_root)/cxx/cxx-d.make) +$(call include,$(bld_root)/cxx/cxx-o.make) +$(call include,$(bld_root)/cxx/o-e.make) + +# Dependencies. +# +$(call import,$(src_root)/libcommon/makefile) diff --git a/common/include/obj1.hxx b/common/include/obj1.hxx new file mode 100644 index 0000000..cdf6a66 --- /dev/null +++ b/common/include/obj1.hxx @@ -0,0 +1,27 @@ +// file : common/include/obj1.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef OBJ1_HXX +#define OBJ1_HXX + +#include + +#pragma db object +struct object1 +{ + object1 (unsigned long id) + : id_ (id) + { + } + + object1 () + { + } + + #pragma db id + unsigned long id_; +}; + +#endif // OBJ1_HXX diff --git a/common/include/obj2.hxx b/common/include/obj2.hxx new file mode 100644 index 0000000..4c98d7d --- /dev/null +++ b/common/include/obj2.hxx @@ -0,0 +1,27 @@ +// file : common/include/obj2.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef OBJ2_HXX +#define OBJ2_HXX + +#include + +#pragma db object +struct object2 +{ + object2 (unsigned long id) + : id_ (id) + { + } + + object2 () + { + } + + #pragma db id + unsigned long id_; +}; + +#endif // OBJ2_HXX diff --git a/common/include/obj3.hxx b/common/include/obj3.hxx new file mode 100644 index 0000000..b73673a --- /dev/null +++ b/common/include/obj3.hxx @@ -0,0 +1,27 @@ +// file : common/include/obj3.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef OBJ3_HXX +#define OBJ3_HXX + +#include + +#pragma db object +struct object3 +{ + object3 (unsigned long id) + : id_ (id) + { + } + + object3 () + { + } + + #pragma db id + unsigned long id_; +}; + +#endif // OBJ3_HXX diff --git a/common/include/objs1.hxx b/common/include/objs1.hxx new file mode 100644 index 0000000..5e592a4 --- /dev/null +++ b/common/include/objs1.hxx @@ -0,0 +1,15 @@ +// file : common/include/objs1.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef OBJS1_HXX +#define OBJS1_HXX + +#ifdef ODB_COMPILER +# include +# include +# include +#endif + +#endif // OBJS1_HXX diff --git a/common/include/objs2.hxx b/common/include/objs2.hxx new file mode 100644 index 0000000..f2cfee0 --- /dev/null +++ b/common/include/objs2.hxx @@ -0,0 +1,15 @@ +// file : common/include/objs2.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef OBJS2_HXX +#define OBJS2_HXX + +#ifdef ODB_COMPILER +# include "include/obj1.hxx" +# include "include/obj2.hxx" +# include "include/obj3.hxx" +#endif + +#endif // OBJS2_HXX diff --git a/common/include/objs3.hxx b/common/include/objs3.hxx new file mode 100644 index 0000000..d9bc01a --- /dev/null +++ b/common/include/objs3.hxx @@ -0,0 +1,13 @@ +// file : common/include/objs3.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef OBJS3_HXX +#define OBJS3_HXX + +#include "../include/obj1.hxx" +#include "../include/obj2.hxx" +#include "../include/obj3.hxx" + +#endif // OBJS3_HXX diff --git a/common/include/objs4.hxx b/common/include/objs4.hxx new file mode 100644 index 0000000..fc5f1de --- /dev/null +++ b/common/include/objs4.hxx @@ -0,0 +1,13 @@ +// file : common/include/objs1.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef OBJS4_HXX +#define OBJS4_HXX + +#include +#include +#include + +#endif // OBJS4_HXX diff --git a/common/include/test.std b/common/include/test.std new file mode 100644 index 0000000..e69de29 diff --git a/common/include/test1.hxx b/common/include/test1.hxx new file mode 100644 index 0000000..15972c1 --- /dev/null +++ b/common/include/test1.hxx @@ -0,0 +1,18 @@ +// file : common/include/test1.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST1_HXX +#define TEST1_HXX + +// Test include directive parsing. +// +#include"obj1.hxx" + + # include \ + + +/*comment*/ # /*comment*/ include /* comment */ "obj3.hxx" // comment + +#endif // TEST1_HXX diff --git a/common/include/test2.hxx b/common/include/test2.hxx new file mode 100644 index 0000000..ee26994 --- /dev/null +++ b/common/include/test2.hxx @@ -0,0 +1,17 @@ +// file : common/include/test2.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST2_HXX +#define TEST2_HXX + +// Test preference of includes from the main file. +// +#include "objs1.hxx" + +#include "obj1.hxx" +#include "obj2.hxx" +#include "obj3.hxx" + +#endif // TEST2_HXX diff --git a/common/include/test3.hxx b/common/include/test3.hxx new file mode 100644 index 0000000..a2b2096 --- /dev/null +++ b/common/include/test3.hxx @@ -0,0 +1,14 @@ +// file : common/include/test3.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST3_HXX +#define TEST3_HXX + +// Test preference of longer (more qualified) paths. +// +#include "objs2.hxx" +#include "objs3.hxx" + +#endif // TEST3_HXX diff --git a/common/include/test4.hxx b/common/include/test4.hxx new file mode 100644 index 0000000..49180bc --- /dev/null +++ b/common/include/test4.hxx @@ -0,0 +1,14 @@ +// file : common/include/test3.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST3_HXX +#define TEST3_HXX + +// Test preference of <> over "". +// +#include "objs2.hxx" +#include "objs4.hxx" + +#endif // TEST3_HXX -- cgit v1.1