diff options
Diffstat (limited to 'xsd/examples/cxx/parser/mixin')
| -rw-r--r-- | xsd/examples/cxx/parser/mixin/README | 34 | ||||
| -rw-r--r-- | xsd/examples/cxx/parser/mixin/driver.cxx | 104 | ||||
| -rw-r--r-- | xsd/examples/cxx/parser/mixin/instance.xml | 17 | ||||
| -rw-r--r-- | xsd/examples/cxx/parser/mixin/makefile | 108 | ||||
| -rw-r--r-- | xsd/examples/cxx/parser/mixin/schema.map | 8 | ||||
| -rw-r--r-- | xsd/examples/cxx/parser/mixin/schema.xsd | 31 | ||||
| -rw-r--r-- | xsd/examples/cxx/parser/mixin/types.hxx | 44 | 
7 files changed, 346 insertions, 0 deletions
diff --git a/xsd/examples/cxx/parser/mixin/README b/xsd/examples/cxx/parser/mixin/README new file mode 100644 index 0000000..343e379 --- /dev/null +++ b/xsd/examples/cxx/parser/mixin/README @@ -0,0 +1,34 @@ +This example shows how to reuse implementations of base parsers +in derived parsers using the mixin C++ idiom. + +The example consists of the following files: + +schema.xsd +  XML Schema which defined two data types: base and +  derived. + +instance.xml +  Sample XML instance document. + +types.hxx +  C++ classes that correspond to the base and derived +  types in schema.xsd. + +schema.map +  Type map. It maps XML Schema types defined in schema.xsd +  to C++ types defined in types.hxx. + +schema-pskel.hxx +schema-pskel.cxx +  Parser skeletons generated by XSD from schema.xsd and +  schema.map. + +driver.cxx +  Parser implementations and a driver for the example. It +  shows how to mix the implementation of the base parser +  into the derived parser. + +To run the example on the sample XML instance document simply +execute: + +$ ./driver instance.xml diff --git a/xsd/examples/cxx/parser/mixin/driver.cxx b/xsd/examples/cxx/parser/mixin/driver.cxx new file mode 100644 index 0000000..41e5a45 --- /dev/null +++ b/xsd/examples/cxx/parser/mixin/driver.cxx @@ -0,0 +1,104 @@ +// file      : examples/cxx/parser/mixin/driver.cxx +// author    : Boris Kolpackov <boris@codesynthesis.com> +// copyright : not copyrighted - public domain + +#include <memory> +#include <iostream> + +#include "types.hxx" +#include "schema-pskel.hxx" + +using namespace std; + +struct base_pimpl: virtual base_pskel +{ +  virtual void +  pre () +  { +    base_.reset (new ::base); +  } + +  virtual void +  a (bool v) +  { +    base_->a (v); +  } + +  virtual base* +  post_base () +  { +    return base_.release (); +  } + +protected: +  auto_ptr<base> base_; +}; + +// Implement derived parser by mixing-in base's implementation. +// +struct derived_pimpl: derived_pskel, base_pimpl +{ +  virtual void +  pre () +  { +    // Override base's pre() with the new implementation that +    // instantiates derived instead of base. +    // +    base_.reset (new ::derived); +  } + +  virtual void +  b (int v) +  { +    // We could also store a pointer to derived in derived_impl to +    // avoid casting. +    // +    static_cast< ::derived* > (base_.get ())->b (v); +  } + +  virtual derived* +  post_derived () +  { +    return static_cast<derived*> (base_.release ()); +  } +}; + +int +main (int argc, char* argv[]) +{ +  if (argc != 2) +  { +    cerr << "usage: " << argv[0] << " instance.xml" << endl; +    return 1; +  } + +  try +  { +    // Construct the parser. +    // +    xml_schema::boolean_pimpl bool_p; +    xml_schema::int_pimpl int_p; +    derived_pimpl derived_p; + +    derived_p.parsers (bool_p, int_p); + +    xml_schema::document doc_p (derived_p, "root"); + +    derived_p.pre (); +    doc_p.parse (argv[1]); +    auto_ptr<derived> d (derived_p.post_derived ()); + +    cerr << "a: " << boolalpha << d->a () << endl; +    cerr << "b: " << d->b () << endl; +  } +  catch (const xml_schema::exception& e) +  { +    cerr << e << endl; +    return 1; +  } +  catch (const std::ios_base::failure&) +  { +    cerr << argv[1] << ": unable to open or read failure" << endl; +    return 1; +  } +} diff --git a/xsd/examples/cxx/parser/mixin/instance.xml b/xsd/examples/cxx/parser/mixin/instance.xml new file mode 100644 index 0000000..265271b --- /dev/null +++ b/xsd/examples/cxx/parser/mixin/instance.xml @@ -0,0 +1,17 @@ +<?xml version="1.0"?> + +<!-- + +file      : examples/cxx/parser/mixin/instance.xml +author    : Boris Kolpackov <boris@codesynthesis.com> +copyright : not copyrighted - public domain + +--> + +<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +      xsi:noNamespaceSchemaLocation="schema.xsd"> + +  <a>true</a> +  <b>1</b> + +</root> diff --git a/xsd/examples/cxx/parser/mixin/makefile b/xsd/examples/cxx/parser/mixin/makefile new file mode 100644 index 0000000..9021106 --- /dev/null +++ b/xsd/examples/cxx/parser/mixin/makefile @@ -0,0 +1,108 @@ +# file      : examples/cxx/parser/mixin/makefile +# author    : Boris Kolpackov <boris@codesynthesis.com> +# copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC +# license   : GNU GPL v2 + exceptions; see accompanying LICENSE file + +include $(dir $(lastword $(MAKEFILE_LIST)))../../../../build/bootstrap.make + +xsd := schema.xsd +cxx := driver.cxx + +obj := $(addprefix $(out_base)/,$(cxx:.cxx=.o) $(xsd:.xsd=-pskel.o)) +dep := $(obj:.o=.o.d) + +driver   := $(out_base)/driver +install  := $(out_base)/.install +dist     := $(out_base)/.dist +dist-win := $(out_base)/.dist-win +clean    := $(out_base)/.clean + + +# Import. +# +$(call import,\ +  $(scf_root)/import/libxerces-c/stub.make,\ +  l: xerces_c.l,cpp-options: xerces_c.l.cpp-options) + + +# Build. +# +$(driver): $(obj) $(xerces_c.l) + +$(obj) $(dep): cpp_options := -I$(src_root)/libxsd +$(obj) $(dep): $(xerces_c.l.cpp-options) + +genf := $(xsd:.xsd=-pskel.hxx) $(xsd:.xsd=-pskel.ixx) $(xsd:.xsd=-pskel.cxx) +gen  := $(addprefix $(out_base)/,$(genf)) + +$(gen): xsd := $(out_root)/xsd/xsd +$(gen): xsd_options := --type-map $(src_base)/schema.map +$(gen): $(out_root)/xsd/xsd $(src_base)/schema.map + +$(call include-dep,$(dep)) + +# Convenience alias for default target. +# +$(out_base)/: $(driver) + + +# Install & Dist. +# +dist-common := $(out_base)/.dist-common + +$(install) $(dist) $(dist-win) $(dist-common): path := $(subst $(src_root)/,,$(src_base)) + +$(install): +	$(call install-data,$(src_base)/README,$(install_doc_dir)/xsd/$(path)/README) +	$(call install-data,$(src_base)/driver.cxx,$(install_doc_dir)/xsd/$(path)/driver.cxx) +	$(call install-data,$(src_base)/schema.xsd,$(install_doc_dir)/xsd/$(path)/schema.xsd) +	$(call install-data,$(src_base)/instance.xml,$(install_doc_dir)/xsd/$(path)/instance.xml) +	$(call install-data,$(src_base)/schema.map,$(install_doc_dir)/xsd/$(path)/schema.map) +	$(call install-data,$(src_base)/types.hxx,$(install_doc_dir)/xsd/$(path)/types.hxx) + +$(dist-common): +	$(call install-data,$(src_base)/driver.cxx,$(dist_prefix)/$(path)/driver.cxx) +	$(call install-data,$(src_base)/schema.xsd,$(dist_prefix)/$(path)/schema.xsd) +	$(call install-data,$(src_base)/instance.xml,$(dist_prefix)/$(path)/instance.xml) +	$(call install-data,$(src_base)/schema.map,$(dist_prefix)/$(path)/schema.map) +	$(call install-data,$(src_base)/types.hxx,$(dist_prefix)/$(path)/types.hxx) + +$(dist): $(dist-common) +	$(call install-data,$(src_base)/README,$(dist_prefix)/$(path)/README) + +$(dist-win): $(dist-common) +	$(call install-data,$(src_base)/README,$(dist_prefix)/$(path)/README.txt) +	$(call message,,unix2dos $(dist_prefix)/$(path)/README.txt) + + +# Clean. +# +$(clean): $(driver).o.clean                                 \ +  $(addsuffix .cxx.clean,$(obj))                            \ +  $(addsuffix .cxx.clean,$(dep))                            \ +  $(addprefix $(out_base)/,$(xsd:.xsd=-pskel.cxx.xsd.clean)) + +# Generated .gitignore. +# +ifeq ($(out_base),$(src_base)) +$(gen): | $(out_base)/.gitignore +$(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,$(bld_root)/cxx/o-e.make) +$(call include,$(bld_root)/cxx/cxx-o.make) +$(call include,$(bld_root)/cxx/cxx-d.make) +$(call include,$(bld_root)/install.make) +$(call include,$(scf_root)/xsd/parser/xsd-cxx.make) + + +# Dependencies. +# +$(call import,$(src_root)/xsd/makefile) diff --git a/xsd/examples/cxx/parser/mixin/schema.map b/xsd/examples/cxx/parser/mixin/schema.map new file mode 100644 index 0000000..22edb1e --- /dev/null +++ b/xsd/examples/cxx/parser/mixin/schema.map @@ -0,0 +1,8 @@ +# file      : examples/cxx/parser/mixin/schema.map +# author    : Boris Kolpackov <boris@codesynthesis.com> +# copyright : not copyrighted - public domain + +include "types.hxx"; + +base ::base*; +derived ::derived*; diff --git a/xsd/examples/cxx/parser/mixin/schema.xsd b/xsd/examples/cxx/parser/mixin/schema.xsd new file mode 100644 index 0000000..59d8d3b --- /dev/null +++ b/xsd/examples/cxx/parser/mixin/schema.xsd @@ -0,0 +1,31 @@ +<?xml version="1.0"?> + +<!-- + +file      : examples/cxx/parser/mixin/schema.xsd +author    : Boris Kolpackov <boris@codesynthesis.com> +copyright : not copyrighted - public domain + +--> + +<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> + +  <xsd:complexType name="base"> +    <xsd:sequence> +      <xsd:element name="a" type="xsd:boolean"/> +    </xsd:sequence> +  </xsd:complexType> + +  <xsd:complexType name="derived"> +    <xsd:complexContent> +      <xsd:extension base="base"> +        <xsd:sequence> +          <xsd:element name="b" type="xsd:int"/> +        </xsd:sequence> +      </xsd:extension> +    </xsd:complexContent> +  </xsd:complexType> + +  <xsd:element name="root" type="derived"/> + +</xsd:schema> diff --git a/xsd/examples/cxx/parser/mixin/types.hxx b/xsd/examples/cxx/parser/mixin/types.hxx new file mode 100644 index 0000000..708dfc3 --- /dev/null +++ b/xsd/examples/cxx/parser/mixin/types.hxx @@ -0,0 +1,44 @@ +// file      : examples/cxx/parser/mixin/types.hxx +// author    : Boris Kolpackov <boris@codesynthesis.com> +// copyright : not copyrighted - public domain + +#ifndef TYPES_HXX +#define TYPES_HXX + +struct base +{ +  bool +  a () const +  { +    return a_; +  } + +  void +  a (bool v) +  { +    a_ = v; +  } + +private: +  bool a_; +}; + +struct derived: base +{ +  int +  b () const +  { +    return b_; +  } + +  void +  b (int v) +  { +    b_ = v; +  } + +private: +  int b_; +}; + +#endif // TYPES_HXX  | 
