+Option --enable-bundle for the fully static built single-file binary.
[udpgate.git] / src / bundle.pl
1 #! /usr/bin/perl
2
3 # $Id$
4 # Perl generator for the bundled files with UDPGate.
5 # Copyright (C) 2004 Jan Kratochvil <project-udpgate@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 use vars qw($VERSION);
22 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
23 use strict;
24 use warnings;
25
26 use File::Basename;
27
28
29 print <<"EOH";
30 /* AUTOGENERATED FILE! DO NOT EDIT!
31  * Bundled files with UDPGate.
32  */
33
34
35 #include "config.h"
36
37 #include <glib/ghash.h>
38
39 #include "bundle.h"     /* self */
40
41
42 GHashTable *bundle_hash_new(void)
43 {
44 static GHashTable *hash;
45 EOH
46 my @files;
47 for my $pathname (@ARGV) {
48         local *F;
49         open F,$pathname or die "Cannot open $pathname: $!";
50         local $/=undef();
51         my $F=<F>;
52         close F or warn "Cannot close $pathname: $!";
53         my $filename=basename $pathname;
54         (my $filename_sym=$filename)=~tr/a-zA-Z/_/c;
55         $filename_sym=~s/^_*//; # Prevent conflict with system internal symbols.
56         push @files,{
57                         "filename"    =>$filename,
58                         "filename_sym"=>$filename_sym,
59                         };
60         my $Fout=unpack "H*",$F;
61         $Fout=~s/../0x$&,/g;
62         $Fout=~s/(?:.....){1,16}/\t\t$&\n/g;
63         $Fout=~s/,\n$//;
64         print <<"EOH";
65 static const guint8 ${filename_sym}_data[]={
66 $Fout
67                 };
68 EOH
69         }
70 print <<"EOH";
71
72         if (!hash) {
73                 hash=g_hash_table_new(g_str_hash,g_str_equal);
74 EOH
75         for (@files) {
76                 print "\t\tg_hash_table_insert(hash,\"".$_->{"filename"}."\",(gpointer)".$_->{"filename_sym"}."_data);\n";
77                 }
78 print <<"EOH";
79                 }
80         return hash;
81 }
82
83 /* EOF */
84 EOH