Implemented startup script registration command-line interface.
[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 /* Prefixed 32-bit network byte order file length. */
46 EOH
47 my @files;
48 for my $pathname (@ARGV) {
49         local *F;
50         open F,$pathname or die "Cannot open $pathname: $!";
51         local $/=undef();
52         my $F=<F>;
53         close F or warn "Cannot close $pathname: $!";
54         my $filename=basename $pathname;
55         (my $filename_sym=$filename)=~tr/a-zA-Z/_/c;
56         $filename_sym=~s/^_*//; # Prevent conflict with system internal symbols.
57         push @files,{
58                         "filename"    =>$filename,
59                         "filename_sym"=>$filename_sym,
60                         };
61         $F=pack("N*",length($F)).$F;    # Prefix 32-bit network byte order file length.
62         my $Fout=unpack "H*",$F;
63         $Fout=~s/../0x$&,/g;
64         $Fout=~s/(?:.....){1,16}/\t\t$&\n/g;
65         $Fout=~s/,\n$//;
66         print <<"EOH";
67 static const guint8 ${filename_sym}_data[]={
68 $Fout
69                 };
70 EOH
71         }
72 print <<"EOH";
73
74         if (!hash) {
75                 hash=g_hash_table_new(g_str_hash,g_str_equal);
76 EOH
77         for (@files) {
78                 print "\t\tg_hash_table_insert(hash,\"".$_->{"filename"}."\",(gpointer)".$_->{"filename_sym"}."_data);\n";
79                 }
80 print <<"EOH";
81                 }
82         return hash;
83 }
84
85 /* EOF */
86 EOH