http://xml.apache.org/http://www.apache.org/http://www.w3.org/

Xerces Project

Overview
Charter
Release Info
Advisories
Download

Xerces-C++ 3.2.5
Installation
Build Instructions

Programming
Samples
FAQs

API Reference
DOM C++ Binding
Migration Guide

Feedback
Bug-Reporting
Mailing Lists

Source Repository
Applications

Questions
 


I have a problem and I think I know how to fix it. How can I communicate my ideas to the Xerces-C++ team?
 

To maximize the probability that your ideas will grab the attention of one of the Xerces-C++ developers who knows about the area of the parser you're concerned with, you should follow these steps:

  1. Check out and build the most recent Xerces-C++ code. For instructions on how to do this, see Xerces-C++ Repository Information. If you do this, you can confirm that your bug still exists and has not been fixed since the last release.
  2. Write up your bug report as per the instructions described in the Bug-Reporting page.
  3. Describe why your solution works.
  4. Prepare a patch to fix Xerces-C++ code. To do this, when you have applied your changes to a local copy of the most recent Xerces-C++ source code, do svn diff file for each file you have changed. Keep in mind the coding guidelines for Xerces-C++ as described below.
  5. Zip (or tar) up your patches. If you send them in the body of a message or bug report they are very difficult to apply.
  6. Submit a bug report to the Xerces-C++ bug database as described on the Bug-Reporting page. Pick the product "Xerces-C++" (remembering to attach your patches and test code) or, if you think your patch might need some discussion, post it to the developer mailing list.
  7. If you are submitting a substantial amount of code, provide the information required in the Contributors section of the Project Charter.

What are the release policies for Xerces-C++?
 

The informal release policies for Xerces-C++ are (using a versioning of version.release.modification):

  • We don't try to enforce binary compatibility between new versions and releases.
  • New versions and releases will be delivered when a certain number of bug fixes/new features have been added (as decided by the committers).
  • New modification levels will almost never be issued, the only exception is a showstopper bug encountered within a release.
  • Any normal bug is fixed only in the HEAD branch (latest development code).

The specific source and binary compatibility objectives for these release policies and the corresponding allowed source changes are:

  • x.x.x to x.x.y: the API is the same to ensure binary compatibility.
    • To maintain binary compatibility the allowed source code changes are:
      • Add new non-virtual functions.
      • Add new classes.
      • Add new STATIC data members.
    • To maintain binary compatibility you cannot:
      • Add new virtual functions as this will change the layout of the virtual function table.
      • Change the order of virtual functions in the class declaration.
      • Change the signature of a function (including adding additional parameters with defaults).
      • Change the access specifier (private/public/protected) on functions or data members as this may be part of the signature with some compilers.
      • Add new data members to a class (other than STATIC members).
      • Change the order of data members in the class declaration (other than STATIC members).
      • Change the class hierarchy (other than adding new classes).
    • Methods that are deprecated should be marked with the Doxygen tag @deprecated in the header file.
  • x.x.x to x.y.z: the API is source code compatible but not binary compatible (a recompilation of an application that uses the public headers of Xerces-C++ should work).
    • This means that to maintain release to release source code compatibility the signature of public methods can only be changed by adding default parameters.
    • Signatures of private and protected methods can be changed and/or removed.
    • Methods that are deprecated should be marked with the Doxygen tag @deprecated in the header file.
  • x.x.x to a.b.c: the API may not be source code compatible and is not binary compatible (a recompilation of an application using Xerces-C++ may fail).
    • In this situation, a separate branch of the code will be created so that bug fixes may be applied to the last version.
    • Deprecated methods may be removed. Deprecated methods that are removed should be documented in the migration information (migration.xml).

What are the coding conventions for Xerces-C++?
 

As with any coding effort, there are always arguments over what coding conventions to use. Everyone thinks that they have the best style which leads to the entire source tree looking different. This causes consternation as well as eye fatigue on subsequent developers that need to maintain the code. Therefore, we are going to make an attempt at defining some basic coding conventions for Xerces-C++. When committing files or providing patches please keep them in mind:

  1. All classes should have a constructor, destructor, assignment operator and copy constructor to avoid compiler generated default versions of these.
    • If a class contains only static methods, only a private constructor is required.
    • If a class contains any virtual methods, the destructor should be virtual.
    • If a class has a public or protected constructor, it should declare private assignment operator and copy constructor which are not implemented (unless of course you need either of these).
  2. If you add a catch(...) block be sure to add the following block catch(const OutOfMemoryException&) { throw; } so the OutOfMemory condition does not get absorbed.
  3. If you change the serialization format (by adding something to be serialized or removing something that was serialized) increment the XERCES_GRAMMAR_SERIALIZATION_LEVEL constant in XercesVersion.hpp.
  4. If a class allocates memory or is instantiated with new then it should inherit from XMemory.
  5. Use a tab size of 4 and insert them as spaces instead of keeping tabs.
  6. The code is written to be platform independent. Platform specific code should only be in the util/FileManagers, util/MutexManagers, util/Transcoders, util/MsgLoaders, and util/NetAccessors directories.
  7. The header file name and the source file name should both be named corresponding to the primary class they contain. For example class StringPool should be in the header file StringPool.hpp and in the source file StringPool.cpp.
  8. In general, code should be documented with comments. Use Doxygen tags to describe methods.
  9. The naming convention for enumerations should be chosen to be unique and descriptive (i.e. INVALID or UNKNOWN) to avoid colliding with predefined macros in other products. The current style of using ALL CAP enums should be phased out with Mixed Case instead, except for names specified in standards (for example, TEXT_NODE should not be converted to mixed case for standards compliance).


Copyright © 1999-2017 The Apache Software Foundation. All Rights Reserved.