add build file for headers and svg/output code directories to hold the svg_renderer used for output - refs #1438

This commit is contained in:
Dane Springmeyer 2012-08-27 17:58:49 -07:00
parent ac418a7d4e
commit 5120d0398d
44 changed files with 95 additions and 100 deletions

View file

@ -1670,6 +1670,9 @@ if not HELP_REQUESTED:
# Build the core library
SConscript('src/build.py')
# Install headers
SConscript('include/build.py')
# Build the requested and able-to-be-compiled input plug-ins
GDAL_BUILT = False
OGR_BUILT = False

View file

@ -28,7 +28,7 @@
#include <mapnik/formatting/text.hpp>
#include <mapnik/formatting/list.hpp>
#include <mapnik/formatting/format.hpp>
#include <mapnik/formatting/expression.hpp>
#include <mapnik/formatting/expression_format.hpp>
#include <mapnik/processed_text.hpp>
#include <mapnik/expression_string.hpp>
#include <mapnik/text_symbolizer.hpp>

29
include/build.py Normal file
View file

@ -0,0 +1,29 @@
import os
from glob import glob
Import('env')
base = '../include/mapnik/'
subdirs = ['svg','wkt','grid','json','util']
#if env['SVG_RENDERER']:
# subdirs.append('svg/output')
inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik')
if 'install' in COMMAND_LINE_TARGETS:
includes = glob('../include/mapnik/*.hpp')
for subdir in subdirs:
pathdir = os.path.join(base,subdir,'*.hpp')
includes.extend(glob(pathdir))
env.Alias(target='install', source=env.Install(inc_target, includes))
# special case these as duplicate named headers break scons
for subdir in ['text_placements','formatting']:
includes = glob('../include/mapnik/%s*.hpp' % subdir)
env.Alias(target='install', source=env.Install(inc_target, includes))
env['create_uninstall_target'](env, inc_target)

View file

@ -52,7 +52,7 @@
#endif
#if defined(SVG_RENDERER)
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
#endif
#if defined(RENDERING_STATS)

View file

@ -26,7 +26,7 @@
// mapnik
#include <mapnik/geometry.hpp>
#include <mapnik/text_properties.hpp>
#include <mapnik/text_placements/base.hpp>
//#include <mapnik/text_placements/base.hpp>
#include <mapnik/symbolizer_helpers.hpp>
#include <mapnik/label_collision_detector.hpp>
#include <mapnik/ctrans.hpp>

View file

@ -27,8 +27,8 @@
#include <mapnik/vertex.hpp>
#include <mapnik/ctrans.hpp>
#include <mapnik/geometry.hpp>
#include <mapnik/svg/svg_path_iterator.hpp>
#include <mapnik/svg/svg_output_attributes.hpp>
#include <mapnik/svg/output/svg_path_iterator.hpp>
#include <mapnik/svg/output/svg_output_attributes.hpp>
// boost
#include <boost/spirit/include/karma.hpp>

View file

@ -26,8 +26,8 @@
// mapnik
#include <mapnik/feature_style_processor.hpp>
#include <mapnik/map.hpp>
#include <mapnik/svg/svg_generator.hpp>
#include <mapnik/svg/svg_output_attributes.hpp>
#include <mapnik/svg/output/svg_generator.hpp>
#include <mapnik/svg/output/svg_output_attributes.hpp>
// stl
#include <string>

View file

@ -20,8 +20,8 @@
*
*****************************************************************************/
#ifndef MAPNIK_SVG_RENDERER_HPP
#define MAPNIK_SVG_RENDERER_HPP
#ifndef MAPNIK_SVG_RENDERER_AGG_HPP
#define MAPNIK_SVG_RENDERER_AGG_HPP
// mapnik
#include <mapnik/debug.hpp>
@ -100,7 +100,7 @@ private:
};
template <typename VertexSource, typename AttributeSource, typename ScanlineRenderer, typename PixelFormat>
class svg_renderer : boost::noncopyable
class svg_renderer_agg : boost::noncopyable
{
public:
typedef agg::conv_curve<VertexSource> curved_type;
@ -110,7 +110,7 @@ public:
typedef agg::conv_contour<curved_trans_type> curved_trans_contour_type;
typedef agg::renderer_base<PixelFormat> renderer_base;
svg_renderer(VertexSource & source, AttributeSource const& attributes)
svg_renderer_agg(VertexSource & source, AttributeSource const& attributes)
: source_(source),
curved_(source_),
curved_stroked_(curved_),
@ -440,4 +440,4 @@ private:
}}
#endif //MAPNIK_SVG_RENDERER_HPP
#endif //MAPNIK_SVG_RENDERER_AGG_HPP

View file

@ -36,7 +36,7 @@
#include <mapnik/parse_path.hpp>
#include <mapnik/map.hpp>
#include <mapnik/svg/svg_converter.hpp>
#include <mapnik/svg/svg_renderer.hpp>
#include <mapnik/svg/svg_renderer_agg.hpp>
#include <mapnik/svg/svg_path_adapter.hpp>
#include <mapnik/image_compositing.hpp>
@ -323,7 +323,7 @@ void agg_renderer<T>::render_marker(pixel_position const& pos, marker const& mar
using namespace mapnik::svg;
vertex_stl_adapter<svg_path_storage> stl_storage((*marker.get_vector_data())->source());
svg_path_adapter svg_path(stl_storage);
svg_renderer<svg_path_adapter,
svg_renderer_agg<svg_path_adapter,
agg::pod_bvector<path_attributes>,
renderer_type,
agg::pixfmt_rgba32> svg_renderer(svg_path,

View file

@ -32,7 +32,7 @@
#include <mapnik/marker_helpers.hpp>
#include <mapnik/marker.hpp>
#include <mapnik/marker_cache.hpp>
#include <mapnik/svg/svg_renderer.hpp>
#include <mapnik/svg/svg_renderer_agg.hpp>
#include <mapnik/svg/svg_storage.hpp>
#include <mapnik/svg/svg_path_adapter.hpp>
#include <mapnik/svg/svg_path_attributes.hpp>
@ -89,7 +89,7 @@ void agg_renderer<T>::process(markers_symbolizer const& sym,
using namespace mapnik::svg;
typedef agg::renderer_scanline_aa_solid<renderer_base> renderer_type;
typedef agg::pod_bvector<path_attributes> svg_attribute_type;
typedef svg_renderer<svg_path_adapter,
typedef svg_renderer_agg<svg_path_adapter,
svg_attribute_type,
renderer_type,
pixfmt_comp_type > svg_renderer_type;

View file

@ -25,7 +25,7 @@
#include <mapnik/agg_rasterizer.hpp>
#include <mapnik/image_util.hpp>
#include <mapnik/svg/svg_converter.hpp>
#include <mapnik/svg/svg_renderer.hpp>
#include <mapnik/svg/svg_renderer_agg.hpp>
#include <mapnik/svg/svg_path_adapter.hpp>
#include <mapnik/symbolizer_helpers.hpp>

View file

@ -162,10 +162,10 @@ source = Split(
wkt/wkt_generator.cpp
mapped_memory_cache.cpp
marker_cache.cpp
svg_parser.cpp
svg_path_parser.cpp
svg_points_parser.cpp
svg_transform_parser.cpp
svg/svg_parser.cpp
svg/svg_path_parser.cpp
svg/svg_points_parser.cpp
svg/svg_transform_parser.cpp
warp.cpp
json/geometry_grammar.cpp
json/geometry_parser.cpp
@ -284,20 +284,20 @@ source += Split(
#if env['SVG_RENDERER']: # svg backend
# source += Split(
# """
# svg/svg_renderer.cpp
# svg/svg_generator.cpp
# svg/svg_output_attributes.cpp
# svg/process_symbolizers.cpp
# svg/process_building_symbolizer.cpp
# svg/process_line_pattern_symbolizer.cpp
# svg/process_line_symbolizer.cpp
# svg/process_markers_symbolizer.cpp
# svg/process_point_symbolizer.cpp
# svg/process_polygon_pattern_symbolizer.cpp
# svg/process_polygon_symbolizer.cpp
# svg/process_raster_symbolizer.cpp
# svg/process_shield_symbolizer.cpp
# svg/process_text_symbolizer.cpp
# svg/output/svg_renderer.cpp
# svg/output/svg_generator.cpp
# svg/output/svg_output_attributes.cpp
# svg/output/process_symbolizers.cpp
# svg/output/process_building_symbolizer.cpp
# svg/output/process_line_pattern_symbolizer.cpp
# svg/output/process_line_symbolizer.cpp
# svg/output/process_markers_symbolizer.cpp
# svg/output/process_point_symbolizer.cpp
# svg/output/process_polygon_pattern_symbolizer.cpp
# svg/output/process_polygon_symbolizer.cpp
# svg/output/process_raster_symbolizer.cpp
# svg/output/process_shield_symbolizer.cpp
# svg/output/process_text_symbolizer.cpp
# """)
# lib_env.Append(CXXFLAGS = '-DSVG_RENDERER')
# libmapnik_cxxflags.append('-DSVG_RENDERER')
@ -384,40 +384,3 @@ else:
env['create_uninstall_target'](env, target2)
env['create_uninstall_target'](env, target1)
env['create_uninstall_target'](env, target)
includes = glob.glob('../include/mapnik/*.hpp')
svg_includes = glob.glob('../include/mapnik/svg/*.hpp')
wkt_includes = glob.glob('../include/mapnik/wkt/*.hpp')
grid_includes = glob.glob('../include/mapnik/grid/*.hpp')
json_includes = glob.glob('../include/mapnik/json/*.hpp')
util_includes = glob.glob('../include/mapnik/util/*.hpp')
text_placements_includes = glob.glob('../include/mapnik/text_placements/*.hpp')
formatting_includes = glob.glob('../include/mapnik/formatting/*.hpp')
inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik')
svg_inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/svg')
wkt_inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/wkt')
grid_inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/grid')
json_inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/json')
util_inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/util')
text_placements_inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/text_placements')
formatting_inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/formatting')
if 'uninstall' not in COMMAND_LINE_TARGETS:
env.Alias(target='install', source=env.Install(inc_target, includes))
env.Alias(target='install', source=env.Install(svg_inc_target, svg_includes))
env.Alias(target='install', source=env.Install(wkt_inc_target, wkt_includes))
env.Alias(target='install', source=env.Install(grid_inc_target, grid_includes))
env.Alias(target='install', source=env.Install(json_inc_target, json_includes))
env.Alias(target='install', source=env.Install(util_inc_target, util_includes))
env.Alias(target='install', source=env.Install(text_placements_inc_target, text_placements_includes))
env.Alias(target='install', source=env.Install(formatting_inc_target, formatting_includes))
env['create_uninstall_target'](env, inc_target)
env['create_uninstall_target'](env, svg_inc_target)
env['create_uninstall_target'](env, wkt_inc_target)
env['create_uninstall_target'](env, grid_inc_target)
env['create_uninstall_target'](env, json_inc_target)
env['create_uninstall_target'](env, util_inc_target)
env['create_uninstall_target'](env, text_placements_inc_target)
env['create_uninstall_target'](env, formatting_inc_target)

View file

@ -22,7 +22,7 @@
// mapnik
#include <mapnik/debug.hpp>
#include <mapnik/formatting/expression.hpp>
#include <mapnik/formatting/expression_format.hpp>
#include <mapnik/ptree_helpers.hpp>
#include <mapnik/expression_string.hpp>
#include <mapnik/expression_evaluator.hpp>

View file

@ -23,7 +23,7 @@
#include <mapnik/formatting/registry.hpp>
#include <mapnik/formatting/text.hpp>
#include <mapnik/formatting/format.hpp>
#include <mapnik/formatting/expression.hpp>
#include <mapnik/formatting/expression_format.hpp>
#include <mapnik/xml_node.hpp>
#include <mapnik/config_error.hpp>

View file

@ -37,7 +37,7 @@
#include <mapnik/parse_path.hpp>
#include <mapnik/map.hpp>
#include <mapnik/svg/svg_converter.hpp>
#include <mapnik/svg/svg_renderer.hpp>
#include <mapnik/svg/svg_renderer_agg.hpp>
#include <mapnik/svg/svg_path_adapter.hpp>
// boost
@ -158,7 +158,7 @@ void grid_renderer<T>::render_marker(mapnik::feature_impl & feature, unsigned in
using namespace mapnik::svg;
vertex_stl_adapter<svg_path_storage> stl_storage((*marker.get_vector_data())->source());
svg_path_adapter svg_path(stl_storage);
svg_renderer<svg_path_adapter,
svg_renderer_agg<svg_path_adapter,
agg::pod_bvector<path_attributes>,
renderer,
mapnik::pixfmt_gray32> svg_renderer(svg_path,

View file

@ -57,7 +57,7 @@ porting notes -->
#include <mapnik/marker.hpp>
#include <mapnik/marker_cache.hpp>
#include <mapnik/marker_helpers.hpp>
#include <mapnik/svg/svg_renderer.hpp>
#include <mapnik/svg/svg_renderer_agg.hpp>
#include <mapnik/svg/svg_storage.hpp>
#include <mapnik/svg/svg_path_adapter.hpp>
#include <mapnik/svg/svg_path_attributes.hpp>
@ -106,7 +106,7 @@ void grid_renderer<T>::process(markers_symbolizer const& sym,
{
using namespace mapnik::svg;
typedef agg::pod_bvector<path_attributes> svg_attribute_type;
typedef svg_renderer<svg_path_adapter,
typedef svg_renderer_agg<svg_path_adapter,
svg_attribute_type,
renderer_type,
pixfmt_type > svg_renderer_type;

View file

@ -28,7 +28,7 @@
#include <mapnik/grid/grid.hpp>
#include <mapnik/symbolizer_helpers.hpp>
#include <mapnik/svg/svg_converter.hpp>
#include <mapnik/svg/svg_renderer.hpp>
#include <mapnik/svg/svg_renderer_agg.hpp>
#include <mapnik/svg/svg_path_adapter.hpp>
// agg

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik {

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
namespace mapnik
{

View file

@ -21,7 +21,7 @@
*****************************************************************************/
// mapnik
#include <mapnik/svg/svg_generator.hpp>
#include <mapnik/svg/output/svg_generator.hpp>
#include <mapnik/geometry.hpp>
// boost

View file

@ -22,7 +22,7 @@
// mapnik
#include <mapnik/debug.hpp>
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
#include <mapnik/map.hpp>
// stl

View file

@ -25,7 +25,7 @@
#include <mapnik/svg/svg_path_parser.hpp>
#include <mapnik/svg/svg_path_grammar.hpp>
#include <mapnik/svg/svg_converter.hpp>
#include <mapnik/svg/svg_renderer.hpp>
// agg
#include "agg_path_storage.h"

View file

@ -5,7 +5,7 @@
// mapnik
#include <mapnik/map.hpp>
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
#include <mapnik/color_factory.hpp>
// std

View file

@ -5,7 +5,7 @@
// mapnik
#include <mapnik/map.hpp>
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
// std
#include <sstream>

View file

@ -14,7 +14,7 @@
// mapnik
#include <mapnik/map.hpp>
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
#include <mapnik/color_factory.hpp>
// stl

View file

@ -11,7 +11,7 @@
// mapnik
#include <mapnik/map.hpp>
#include <mapnik/svg_renderer.hpp>
#include <mapnik/svg/output/svg_renderer.hpp>
#include <mapnik/datasource_cache.hpp>
#include <mapnik/font_engine_freetype.hpp>
#include <mapnik/expression.hpp>

View file

@ -32,7 +32,7 @@
#include <mapnik/image_util.hpp>
#include <mapnik/graphics.hpp>
#include <mapnik/svg/svg_path_adapter.hpp>
#include <mapnik/svg/svg_renderer.hpp>
#include <mapnik/svg/svg_renderer_agg.hpp>
#include <mapnik/svg/svg_path_attributes.hpp>
#include <boost/algorithm/string.hpp>
@ -170,7 +170,7 @@ int main (int argc,char** argv)
mapnik::svg::vertex_stl_adapter<mapnik::svg::svg_path_storage> stl_storage((*marker.get_vector_data())->source());
mapnik::svg::svg_path_adapter svg_path(stl_storage);
mapnik::svg::svg_renderer<mapnik::svg::svg_path_adapter,
mapnik::svg::svg_renderer_agg<mapnik::svg::svg_path_adapter,
agg::pod_bvector<mapnik::svg::path_attributes>,
renderer_solid,
agg::pixfmt_rgba32_plain > svg_renderer_this(svg_path,