1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
#! /bin/sh
#!perl -w # --*- Perl -*--
eval 'exec perl -x $0 ${1+"$@"}'
if 0;
#------------------------------------------------------------------------------
#$Author: andrius $
#$Revision: 5376 $
#$URL: svn://www.crystallography.net/cod-tools/tags/v2.3/scripts/json2cif $
#$Date: 2017-05-30 14:51:03 +0300 (An, 30 geg. 2017) $
#$Id: json2cif 5376 2017-05-30 11:51:03Z andrius $
#------------------------------------------------------------------------------
#*
#* Parse JSON CIF and print out CIF.
#*
#* USAGE:
#* $0 [options] input.cif [input2.cif ...]
#**
use strict;
use COD::CIF::Parser qw( parse_cif );
use COD::CIF::Tags::DictTags;
use COD::CIF::Tags::COD;
use COD::CIF::Tags::AMCSD;
use COD::CIF::Tags::TCOD;
use COD::CIF::Tags::DFT;
use COD::CIF::Tags::CanonicalNames qw( canonicalize_all_names );
use COD::CIF::Tags::Print qw( print_cif );
use COD::UserMessage qw( error );
use COD::SOptions qw( getOptions );
use COD::SUsage qw( usage options );
use COD::ToolsVersion;
my $exclude_misspelled_tags = 0;
my $preserve_loop_order = 0;
my $preserve_tag_order = 0;
my $fold_long_fields = 0;
my $folding_width = 76;
my %options;
@ARGV = getOptions(
#* OPTIONS:
#* --exclude-misspelled-tags
#* Remove tags that were not present in the recognised tag
#* list.
#* --dont-exclude-misspelled-tags,
#* --no-exclude-misspelled-tags
#* Disable the '--exclude-misspelled-tags' option.
#*
#* --retain-tag-order
#* Print tags in the same order they appeared in the
#* original file.
#* --dont-retain-tag-order
#* Disregard original tag order while printing the tags
#* (default).
#*
#* --preserve-loop-order
#* Print loops in the same order they appeared in the
#* original file.
#* --use-internal-loop-order
#* Disregard original loop order while printing the tags
#* (default).
#*
#* --folding-width 76
#* Specify the length of the longest unfolded line
#* (default 76).
#*
#* --fold-long-fields
#* Fold fields, longer than folding width.
#* --dont-fold-long-fields
#* Do not fold fields (default).
#*
#* --help, --usage
#* Output a short usage message (this message) and exit.
#* --version
#* Output version information and exit.
#**
'--exclude-misspelled-tags' => sub { $exclude_misspelled_tags = 1; },
'--dont-exclude-misspelled-tags' => sub { $exclude_misspelled_tags = 0; },
'--no-exclude-misspelled-tags' => sub { $exclude_misspelled_tags = 0; },
'--preserve-loop-order' => sub { $preserve_loop_order = 1; },
'--use-internal-loop-order' => sub { $preserve_loop_order = 0; },
'--retain-tag-order' => sub { $preserve_tag_order = 1; },
'--dont-retain-tag-order' => sub { $preserve_tag_order = 0; },
'--folding-width' => \$folding_width,
'--fold-long-fields' => sub{ $fold_long_fields = 1 },
'--dont-fold-long-fields' => sub{ $fold_long_fields = 0 },
'--help,--usage' => sub { usage; exit },
'--version' => sub { print 'cod-tools version ',
$COD::ToolsVersion::Version, "\n";
exit }
);
my @dictionary_tags = ( @COD::CIF::Tags::DictTags::tag_list,
@COD::CIF::Tags::COD::tag_list,
@COD::CIF::Tags::AMCSD::tag_list,
@COD::CIF::Tags::TCOD::tag_list,
@COD::CIF::Tags::DFT::tag_list );
my %dictionary_tags = map { $_ => $_ } @dictionary_tags;
@ARGV = ( '-' ) unless @ARGV;
binmode STDOUT, ':encoding(UTF-8)';
binmode STDERR, ':encoding(UTF-8)';
for my $filename (@ARGV) {
my $options = { 'parser' => 'json', 'no_print' => 1 };
my ( $data, $err_count, $messages ) = parse_cif( $filename, $options );
if ( $err_count > 0 ) {
print STDERR $_ foreach ( @$messages );
error( $0, $filename, undef, "$err_count error(s) "
. "encountered while parsing the file", undef );
next;
}
print STDERR $_ foreach ( @$messages );
canonicalize_all_names( $data );
for my $dataset ( @$data ) {
print_cif( $dataset, {
exclude_misspelled_tags => $exclude_misspelled_tags,
preserve_loop_order => $preserve_loop_order,
fold_long_fields => $fold_long_fields,
folding_width => $folding_width,
dictionary_tags => \%dictionary_tags,
dictionary_tag_list => \@dictionary_tags,
keep_tag_order => $preserve_tag_order,
} );
}
}
|