123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- ############################################################################
- #
- # MODULE: v.pack
- # AUTHOR(S): Luca Delucchi, Fondazione E. Mach (Italy)
- #
- # PURPOSE: Pack up a vector map, collect vector map elements => gzip
- # COPYRIGHT: (C) 2011-2013 by the GRASS Development Team
- #
- # This program is free software under the GNU General
- # Public License (>=v2). Read the file COPYING that
- # comes with GRASS for details.
- #
- #############################################################################
- #%module
- #% description: Exports a vector map as GRASS GIS specific archive file
- #% keyword: vector
- #% keyword: export
- #% keyword: copying
- #%end
- #%option G_OPT_V_INPUT
- #% label: Name of vector map to pack up
- #% description:
- #%end
- #%option G_OPT_F_OUTPUT
- #% description: Name for output file (default is <input>.pack)
- #% required : no
- #%end
- #%flag
- #% key: c
- #% description: Switch the compression off
- #%end
- import os
- import sys
- import shutil
- import tarfile
- import atexit
- from grass.script.utils import try_rmdir, try_remove
- from grass.script import core as grass
- from grass.script import vector as vector
- def cleanup():
- try_rmdir(basedir)
- def main():
- infile = options['input']
- compression_off = flags['c']
- global basedir
- basedir = grass.tempdir()
- # check if vector map exists
- gfile = grass.find_file(infile, element='vector')
- if not gfile['name']:
- grass.fatal(_("Vector map <%s> not found") % infile)
- # check if input vector map is in the native format
- if vector.vector_info(gfile['fullname'])['format'] != 'native':
- grass.fatal(_("Unable to pack vector map <%s>. Only native format supported.") %
- gfile['fullname'])
- # split the name if there is the mapset name
- if infile.find('@'):
- infile = infile.split('@')[0]
- # output name
- if options['output']:
- outfile = options['output']
- else:
- outfile = infile + '.pack'
- # check if exists the output file
- if os.path.exists(outfile):
- if os.getenv('GRASS_OVERWRITE'):
- grass.warning(_("Pack file <%s> already exists and will be overwritten") % outfile)
- try_remove(outfile)
- else:
- grass.fatal(_("option <%s>: <%s> exists.") % ("output", outfile))
- # prepare for packing
- grass.verbose(_("Packing <%s>...") % (gfile['fullname']))
- # write tar file, optional compression
- if compression_off:
- tar = tarfile.open(name=outfile, mode='w:')
- else:
- tar = tarfile.open(name=outfile, mode='w:gz')
- tar.add(gfile['file'], infile)
- # check if exist a db connection for the vector
- db_vect = vector.vector_db(gfile['fullname'])
- if not db_vect:
- grass.verbose(_('There is not database connected with vector map <%s>') % gfile['fullname'])
- else:
- # for each layer connection save a table in sqlite database
- sqlitedb = os.path.join(basedir, 'db.sqlite')
- for i, dbconn in db_vect.iteritems():
- grass.run_command('db.copy', from_driver=dbconn['driver'],
- from_database=dbconn['database'],
- from_table=dbconn['table'],
- to_driver='sqlite', to_database=sqlitedb,
- to_table=dbconn['table'])
- tar.add(sqlitedb, 'db.sqlite')
- # add to the tar file the PROJ files to check when unpack file
- gisenv = grass.gisenv()
- for support in ['INFO', 'UNITS', 'EPSG']:
- path = os.path.join(gisenv['GISDBASE'], gisenv['LOCATION_NAME'],
- 'PERMANENT', 'PROJ_' + support)
- if os.path.exists(path):
- tar.add(path, 'PROJ_' + support)
- tar.close()
- grass.message(_("Pack file <%s> created") % os.path.join(os.getcwd(), outfile))
- if __name__ == "__main__":
- options, flags = grass.parser()
- atexit.register(cleanup)
- sys.exit(main())
|