2 # This file is part of the LibreOffice project.
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # This file incorporates work covered by the following license notice:
10 # Licensed to the Apache Software Foundation (ASF) under one or more
11 # contributor license agreements. See the NOTICE file distributed
12 # with this work for additional information regarding copyright
13 # ownership. The ASF licenses this file to you under the Apache
14 # License, Version 2.0 (the "License"); you may not use this file
15 # except in compliance with the License. You may obtain a copy of
16 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 package par2script
::converter
;
22 use par2script
::remover
;
24 #############################
26 #############################
28 sub convert_array_to_hash
32 my ($line, $key, $value);
36 for ( my $i = 0; $i <= $#{$arrayref}; $i++ )
38 $line = ${$arrayref}[$i];
40 if ( $line =~ /^\s*(\w+?)\s+(.*?)\s*$/ )
44 $newhash{$key} = $value;
51 sub convert_stringlist_into_array_2
53 my ( $input, $separator ) = @_;
61 while ( $last =~ /^\s*(.+?)\s*\Q$separator\E\s*(.+)\s*$/) # "$" for minimal matching
65 par2script
::remover
::remove_leading_and_ending_whitespaces
(\
$first);
66 if ( $first ) { push(@newarray, $first); }
69 par2script
::remover
::remove_leading_and_ending_whitespaces
(\
$last);
70 if ( $last ) { push(@newarray, $last); }
75 sub convert_stringlist_into_array
77 my ( $includestringref, $separator ) = @_;
82 $last = ${$includestringref};
84 while ( $last =~ /^\s*(.+?)\s*\Q$separator\E\s*(.+)\s*$/) # "$" for minimal matching
88 par2script
::remover
::remove_leading_and_ending_whitespaces
(\
$first);
89 push(@newarray, $first);
92 par2script
::remover
::remove_leading_and_ending_whitespaces
(\
$last);
93 push(@newarray, $last);
98 #############################################################################
99 # The file name contains for some files "/". If this programs runs on
100 # a windows platform, this has to be converted to "\".
101 #############################################################################
103 sub convert_slash_to_backslash
105 my ($filesarrayref) = @_;
107 my ($onefile, $filename);
109 for ( my $i = 0; $i <= $#{$filesarrayref}; $i++ )
111 $onefile = ${$filesarrayref}[$i];
112 $onefile->{'Name'} =~ s/\//\\/g
;