Skip to content

Commit bd5f700

Browse files
committed
Fix for #4 - remove duplication in code for getting processor count.
1 parent b9093ac commit bd5f700

File tree

5 files changed

+28
-18
lines changed

5 files changed

+28
-18
lines changed

fabgis/gdal.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from fabric.api import fastprint, run, cd, env, task, sudo, settings
1010

1111
from .common import add_ubuntugis_ppa, setup_env
12-
from .system import setup_ccache
12+
from .system import setup_ccache, get_processor_count
1313
from .proj4 import build_proj4
1414

1515

@@ -61,7 +61,7 @@ def build_gdal(with_ecw=False, with_mrsid=False):
6161
'--with-spatialite '
6262
'--without-libtool')
6363

64-
processor_count = run('cat /proc/cpuinfo | grep processor | wc -l')
64+
processor_count = get_processor_count()
6565

6666
# Currently you need to have downloaded the MRSID sdk to remote home dir
6767
if with_mrsid:

fabgis/hdf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from fabric.contrib.files import exists
1010
from fabric.api import fastprint, run, cd, env, task, sudo, settings
1111

12-
from .system import setup_ccache
12+
from .system import setup_ccache, get_processor_count
1313
from .common import setup_env
1414
from .utilities import append_if_not_present
1515

@@ -42,7 +42,7 @@ def build_hdf5(version='1.8.11'):
4242
run('wget %s' % source_url)
4343
run('tar xfz %s.tar.gz' % filename)
4444

45-
processor_count = run('cat /proc/cpuinfo | grep processor | wc -l')
45+
processor_count = get_processor_count()
4646

4747
with cd(code_path):
4848
# Dont fail if make clean does not work

fabgis/proj4.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,19 @@
55
66
"""
77

8+
89
import fabtools
910
from fabric.contrib.files import exists
1011
from fabric.api import fastprint, run, cd, env, task, sudo, settings
1112

12-
from .system import setup_ccache
13+
from .system import setup_ccache, get_processor_count
1314
from .common import setup_env
1415
from .utilities import append_if_not_present
1516

1617

18+
19+
20+
1721
@task
1822
def build_proj4(version='4.8.0'):
1923
"""Get proj4 from tarball and build it.
@@ -40,7 +44,7 @@ def build_proj4(version='4.8.0'):
4044
run('wget %s' % source_url)
4145
run('tar xfz %s.tar.gz' % filename)
4246

43-
processor_count = run('cat /proc/cpuinfo | grep ^processor | wc -l')
47+
processor_count = get_processor_count()
4448

4549
with cd(code_path):
4650
# Dont fail if make clean does not work

fabgis/qgis.py

+13-12
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from .common import add_ubuntugis_ppa
1515
from .common import setup_env
1616
from .git import update_git_checkout
17-
from .system import setup_ccache
17+
from .system import setup_ccache, get_processor_count
1818
from .gdal import build_gdal
1919
from .postgres import create_postgis_1_5_db
2020

@@ -96,18 +96,19 @@ def compile_qgis(build_path, build_prefix, gdal_from_source=False):
9696
build_gdal() # see that task for ecw and mrsid support
9797
extra += '-DGDAL_CONFIG=/usr/local/bin/gdal-config '
9898

99-
cmake = ('cmake .. '
100-
'-DCMAKE_INSTALL_PREFIX=%s '
101-
'-DCMAKE_CXX_COMPILER:FILEPATH=/usr/local/bin/g++ '
102-
'-DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 '
103-
'-DWITH_MAPSERVER=ON '
104-
'-DWITH_INTERNAL_SPATIALITE=ON '
105-
'-DWITH_GRASS=OFF '
106-
'-DCMAKE_BUILD_TYPE=Debug '
107-
'%s'
108-
% (build_prefix, extra))
99+
cmake = (
100+
'cmake .. '
101+
'-DCMAKE_INSTALL_PREFIX=%s '
102+
'-DCMAKE_CXX_COMPILER:FILEPATH=/usr/local/bin/g++ '
103+
'-DQT_QMAKE_EXECUTABLE=/usr/bin/qmake-qt4 '
104+
'-DWITH_MAPSERVER=ON '
105+
'-DWITH_INTERNAL_SPATIALITE=ON '
106+
'-DWITH_GRASS=OFF '
107+
'-DCMAKE_BUILD_TYPE=Debug '
108+
'%s'
109+
% (build_prefix, extra))
109110
run(cmake)
110-
processor_count = run('cat /proc/cpuinfo | grep processor | wc -l')
111+
processor_count = get_processor_count()
111112
run('time make -j %s install' % processor_count)
112113

113114

fabgis/system.py

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from fabric.contrib.files import contains, exists, append, sed
1212
from fabric.colors import red
1313
from fabric.api import env, task, sudo, local, reboot
14+
from fabric.operations import run
1415
import fabtools
1516
from .utilities import append_if_not_present
1617

@@ -318,3 +319,7 @@ def masquerade():
318319
sed(rc_file, '^exit 0', '#exit 0', use_sudo=True)
319320
append(rc_file, rule_1, use_sudo=True)
320321
append(rc_file, rule_2, use_sudo=True)
322+
323+
324+
def get_processor_count():
325+
return run('cat /proc/cpuinfo | grep ^processor | wc -l')

0 commit comments

Comments
 (0)