This repo contains code for three functions to be loaded into PostgreSQL as a shared library: 1. `maptile_for_point`, which is used only by the `/changes` API call. This API call is little-used and IMHO should be deprecated and removed. However, even now it's hardly on the hot path for most development activities. 2. `tile_for_point`, which is used only in migrations. At this point, it seems unlikely that anyone will be doing a migration on existing data which would call this function (most developers will be running migrations on an empty database, to set it up). 3. `xid_to_int4`, which is only used for replication using Osmosis and isn't used in the Rails code at all. Hopefully this will be replaced Real Soon Now, but until then it's a quite advanced feature that most developers won't need. Therefore, this patch proposes to replace the above three shared library functions with SQL implementations of the first two. These are _much_ slower - by a factor of about 30x, however this makes no difference when they're run on a completely empty database. In return, we're able to drop a dependency on the PostgreSQL server development package, and clean a few lines out of the installation instructions. It's still possible to make and install the shared library functions, and I've included instructions about how to do that - although it shouldn't be necessary for the vast majority of `openstreetmap-website` developers.
66 lines
2.9 KiB
Bash
66 lines
2.9 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# abort on error
|
|
set -e
|
|
|
|
# set locale to UTF-8 compatible. apologies to non-english speakers...
|
|
locale-gen en_GB.utf8
|
|
update-locale LANG=en_GB.utf8 LC_ALL=en_GB.utf8
|
|
export LANG=en_GB.utf8
|
|
export LC_ALL=en_GB.utf8
|
|
|
|
# make sure we have up-to-date packages
|
|
apt-get update
|
|
|
|
# upgrade all packages
|
|
apt-get upgrade -y
|
|
|
|
# install packages as explained in INSTALL.md
|
|
apt-get install -y ruby2.5 libruby2.5 ruby2.5-dev \
|
|
libmagickwand-dev libxml2-dev libxslt1-dev nodejs \
|
|
apache2 apache2-dev build-essential git-core phantomjs \
|
|
postgresql postgresql-contrib libpq-dev \
|
|
libsasl2-dev imagemagick libffi-dev libgd-dev libarchive-dev libbz2-dev
|
|
gem2.5 install rake
|
|
gem2.5 install --version "~> 1.16.2" bundler
|
|
|
|
## install the bundle necessary for openstreetmap-website
|
|
pushd /srv/openstreetmap-website
|
|
# do bundle install as a convenience
|
|
bundle install --retry=10 --jobs=2
|
|
# create user and database for openstreetmap-website
|
|
db_user_exists=`sudo -u postgres psql postgres -tAc "select 1 from pg_roles where rolname='vagrant'"`
|
|
if [ "$db_user_exists" != "1" ]; then
|
|
sudo -u postgres createuser -s vagrant
|
|
sudo -u vagrant createdb -E UTF-8 -O vagrant openstreetmap
|
|
sudo -u vagrant createdb -E UTF-8 -O vagrant osm_test
|
|
# add btree_gist extension
|
|
sudo -u vagrant psql -c "create extension btree_gist" openstreetmap
|
|
sudo -u vagrant psql -c "create extension btree_gist" osm_test
|
|
fi
|
|
|
|
|
|
# install PostgreSQL functions
|
|
sudo -u vagrant psql -d openstreetmap -f db/functions/functions.sql
|
|
################################################################################
|
|
# *IF* you want a vagrant image which supports replication (or perhaps you're
|
|
# using this script to provision some other server and want replication), then
|
|
# uncomment the following lines (until popd) and comment out the one above
|
|
# (functions.sql).
|
|
################################################################################
|
|
#pushd db/functions
|
|
#sudo -u vagrant make
|
|
#sudo -u vagrant psql openstreetmap -c "CREATE OR REPLACE FUNCTION maptile_for_point(int8, int8, int4) RETURNS int4 AS '/srv/openstreetmap-website/db/functions/libpgosm.so', 'maptile_for_point' LANGUAGE C ST#RICT"
|
|
#sudo -u vagrant psql openstreetmap -c "CREATE OR REPLACE FUNCTION tile_for_point(int4, int4) RETURNS int8 AS '/srv/openstreetmap-website/db/functions/libpgosm.so', 'tile_for_point' LANGUAGE C STRICT"
|
|
#sudo -u vagrant psql openstreetmap -c "CREATE OR REPLACE FUNCTION xid_to_int4(xid) RETURNS int4 AS '/srv/openstreetmap-website/db/functions/libpgosm.so', 'xid_to_int4' LANGUAGE C STRICT"
|
|
#popd
|
|
|
|
|
|
# set up sample configs
|
|
if [ ! -f config/database.yml ]; then
|
|
sudo -u vagrant cp config/example.database.yml config/database.yml
|
|
fi
|
|
touch config/settings.local.yml
|
|
# migrate the database to the latest version
|
|
sudo -u vagrant bundle exec rake db:migrate
|
|
popd
|