1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <oox/ole/vbamodule.hxx>
21 #include <com/sun/star/container/XNameContainer.hpp>
22 #include <com/sun/star/container/XIndexContainer.hpp>
23 #include <com/sun/star/script/ModuleInfo.hpp>
24 #include <com/sun/star/script/ModuleType.hpp>
25 #include <com/sun/star/script/vba/XVBAModuleInfo.hpp>
26 #include <com/sun/star/awt/KeyEvent.hpp>
27 #include <osl/diagnose.h>
28 #include <rtl/character.hxx>
29 #include <filter/msfilter/msvbahelper.hxx>
30 #include <oox/helper/binaryinputstream.hxx>
31 #include <oox/helper/storagebase.hxx>
32 #include <oox/helper/textinputstream.hxx>
33 #include <oox/ole/vbahelper.hxx>
34 #include <oox/ole/vbainputstream.hxx>
39 using namespace ::com::sun::star::lang
;
40 using namespace ::com::sun::star::script::vba
;
41 using namespace ::com::sun::star::uno
;
42 using namespace ::com::sun::star
;
44 using ::com::sun::star::awt::KeyEvent
;
46 VbaModule::VbaModule( const Reference
< XComponentContext
>& rxContext
,
47 const Reference
< frame::XModel
>& rxDocModel
,
48 const OUString
& rName
, rtl_TextEncoding eTextEnc
, bool bExecutable
) :
49 mxContext( rxContext
),
50 mxDocModel( rxDocModel
),
52 meTextEnc( eTextEnc
),
53 mnType( script::ModuleType::UNKNOWN
),
54 mnOffset( SAL_MAX_UINT32
),
57 mbExecutable( bExecutable
)
61 void VbaModule::importDirRecords( BinaryInputStream
& rDirStrm
)
63 sal_uInt16 nRecId
= 0;
64 StreamDataSequence aRecData
;
65 while( VbaHelper::readDirRecord( nRecId
, aRecData
, rDirStrm
) && (nRecId
!= VBA_ID_MODULEEND
) )
67 SequenceInputStream
aRecStrm( aRecData
);
68 sal_Int32 nRecSize
= aRecData
.getLength();
71 #define OOX_ENSURE_RECORDSIZE( cond ) OSL_ENSURE( cond, "VbaModule::importDirRecords - invalid record size" )
72 case VBA_ID_MODULENAME
:
73 OSL_FAIL( "VbaModule::importDirRecords - unexpected MODULENAME record" );
74 maName
= aRecStrm
.readCharArrayUC( nRecSize
, meTextEnc
);
76 case VBA_ID_MODULENAMEUNICODE
:
78 case VBA_ID_MODULESTREAMNAME
:
79 maStreamName
= aRecStrm
.readCharArrayUC( nRecSize
, meTextEnc
);
80 // Actually the stream name seems the best name to use
81 // the VBA_ID_MODULENAME name can sometimes be the wrong case
82 maName
= maStreamName
;
84 case VBA_ID_MODULESTREAMNAMEUNICODE
:
86 case VBA_ID_MODULEDOCSTRING
:
87 maDocString
= aRecStrm
.readCharArrayUC( nRecSize
, meTextEnc
);
89 case VBA_ID_MODULEDOCSTRINGUNICODE
:
91 case VBA_ID_MODULEOFFSET
:
92 OOX_ENSURE_RECORDSIZE( nRecSize
== 4 );
93 mnOffset
= aRecStrm
.readuInt32();
95 case VBA_ID_MODULEHELPCONTEXT
:
96 OOX_ENSURE_RECORDSIZE( nRecSize
== 4 );
98 case VBA_ID_MODULECOOKIE
:
99 OOX_ENSURE_RECORDSIZE( nRecSize
== 2 );
101 case VBA_ID_MODULETYPEPROCEDURAL
:
102 OOX_ENSURE_RECORDSIZE( nRecSize
== 0 );
103 OSL_ENSURE( mnType
== script::ModuleType::UNKNOWN
, "VbaModule::importDirRecords - multiple module type records" );
104 mnType
= script::ModuleType::NORMAL
;
106 case VBA_ID_MODULETYPEDOCUMENT
:
107 OOX_ENSURE_RECORDSIZE( nRecSize
== 0 );
108 OSL_ENSURE( mnType
== script::ModuleType::UNKNOWN
, "VbaModule::importDirRecords - multiple module type records" );
109 mnType
= script::ModuleType::DOCUMENT
;
111 case VBA_ID_MODULEREADONLY
:
112 OOX_ENSURE_RECORDSIZE( nRecSize
== 0 );
115 case VBA_ID_MODULEPRIVATE
:
116 OOX_ENSURE_RECORDSIZE( nRecSize
== 0 );
120 OSL_FAIL( "VbaModule::importDirRecords - unknown module record" );
121 #undef OOX_ENSURE_RECORDSIZE
124 OSL_ENSURE( !maName
.isEmpty(), "VbaModule::importDirRecords - missing module name" );
125 OSL_ENSURE( !maStreamName
.isEmpty(), "VbaModule::importDirRecords - missing module stream name" );
126 OSL_ENSURE( mnType
!= script::ModuleType::UNKNOWN
, "VbaModule::importDirRecords - missing module type" );
127 OSL_ENSURE( mnOffset
< SAL_MAX_UINT32
, "VbaModule::importDirRecords - missing module stream offset" );
130 void VbaModule::createAndImportModule( StorageBase
& rVbaStrg
,
131 const Reference
< container::XNameContainer
>& rxBasicLib
,
132 const Reference
< container::XNameAccess
>& rxDocObjectNA
) const
134 OUString aVBASourceCode
= readSourceCode( rVbaStrg
);
135 createModule( aVBASourceCode
, rxBasicLib
, rxDocObjectNA
);
138 void VbaModule::createEmptyModule( const Reference
< container::XNameContainer
>& rxBasicLib
,
139 const Reference
< container::XNameAccess
>& rxDocObjectNA
) const
141 createModule( OUString(), rxBasicLib
, rxDocObjectNA
);
144 OUString
VbaModule::readSourceCode( StorageBase
& rVbaStrg
) const
146 OUStringBuffer
aSourceCode(512);
147 static const char sUnmatchedRemovedTag
[] = "Rem removed unmatched Sub/End: ";
148 if( !maStreamName
.isEmpty() && (mnOffset
!= SAL_MAX_UINT32
) )
150 BinaryXInputStream
aInStrm( rVbaStrg
.openInputStream( maStreamName
), true );
151 OSL_ENSURE( !aInStrm
.isEof(), "VbaModule::readSourceCode - cannot open module stream" );
152 // skip the 'performance cache' stored before the actual source code
153 aInStrm
.seek( mnOffset
);
154 // if stream is still valid, load the source code
155 if( !aInStrm
.isEof() )
157 // decompression starts at current stream position of aInStrm
158 VbaInputStream
aVbaStrm( aInStrm
);
159 // load the source code line-by-line, with some more processing
160 TextInputStream
aVbaTextStrm( mxContext
, aVbaStrm
, meTextEnc
);
166 ProcedurePair() : bInProcedure( false ), nPos( 0 ) {};
169 while( !aVbaTextStrm
.isEof() )
171 OUString aCodeLine
= aVbaTextStrm
.readLine();
172 if( aCodeLine
.match( "Attribute " ) )
175 int index
= aCodeLine
.indexOf( ".VB_ProcData.VB_Invoke_Func = " );
179 // 'Attribute Procedure.VB_ProcData.VB_Invoke_Func = "*\n14"'
180 // where 'Procedure' is the procedure name and '*' is the shortcut key
181 // note: his is only relevant for Excel, seems that
182 // word doesn't store the shortcut in the module
184 int nSpaceIndex
= aCodeLine
.indexOf(' ');
185 OUString sProc
= aCodeLine
.copy( nSpaceIndex
+ 1, index
- nSpaceIndex
- 1);
186 // for Excel short cut key seems limited to cntrl+'a-z, A-Z'
187 OUString sKey
= aCodeLine
.copy( aCodeLine
.lastIndexOf("= ") + 3, 1 );
188 // only alpha key valid for key shortcut, however the api will accept other keys
189 if ( rtl::isAsciiAlpha( sKey
[ 0 ] ) )
191 // cntrl modifier is explicit ( but could be cntrl+shift ), parseKeyEvent
192 // will handle and uppercase letter appropriately
193 OUString sApiKey
= "^" + sKey
;
196 KeyEvent aKeyEvent
= ooo::vba::parseKeyEvent( sApiKey
);
197 ooo::vba::applyShortCutKeyBinding( mxDocModel
, aKeyEvent
, sProc
);
199 catch (const Exception
&)
207 // Hack here to weed out any unmatched End Sub / Sub Foo statements.
208 // The behaviour of the vba ide practically guarantees the case and
209 // spacing of Sub statement(s). However, indentation can be arbitrary hence
211 OUString
trimLine( aCodeLine
.trim() );
212 if ( mbExecutable
&& (
213 trimLine
.match("Sub ") ||
214 trimLine
.match("Public Sub ") ||
215 trimLine
.match("Private Sub ") ||
216 trimLine
.match("Static Sub ") ) )
218 // this should never happen, basic doesn't support nested procedures
219 // first Sub Foo must be bogus
220 if ( procInfo
.bInProcedure
)
222 // comment out the line
223 aSourceCode
.insert( procInfo
.nPos
, sUnmatchedRemovedTag
);
224 // mark location of this Sub
225 procInfo
.nPos
= aSourceCode
.getLength();
229 procInfo
.bInProcedure
= true;
230 procInfo
.nPos
= aSourceCode
.getLength();
233 else if ( mbExecutable
&& aCodeLine
.trim().match("End Sub") )
235 // un-matched End Sub
236 if ( !procInfo
.bInProcedure
)
238 aSourceCode
.append( sUnmatchedRemovedTag
);
242 procInfo
.bInProcedure
= false;
246 // normal source code line
248 aSourceCode
.append( "Rem " );
249 aSourceCode
.append( aCodeLine
).append( '\n' );
254 return aSourceCode
.makeStringAndClear();
257 void VbaModule::createModule( const OUString
& rVBASourceCode
,
258 const Reference
< container::XNameContainer
>& rxBasicLib
,
259 const Reference
< container::XNameAccess
>& rxDocObjectNA
) const
261 if( maName
.isEmpty() )
264 // prepare the Basic module
265 script::ModuleInfo aModuleInfo
;
266 aModuleInfo
.ModuleType
= mnType
;
267 OUStringBuffer
aSourceCode(512);
268 aSourceCode
.append( "Rem Attribute VBA_ModuleType=" );
271 case script::ModuleType::NORMAL
:
272 aSourceCode
.append( "VBAModule" );
274 case script::ModuleType::CLASS
:
275 aSourceCode
.append( "VBAClassModule" );
277 case script::ModuleType::FORM
:
278 aSourceCode
.append( "VBAFormModule" );
279 // hack from old filter, document Basic should know the XModel, but it doesn't
280 aModuleInfo
.ModuleObject
.set( mxDocModel
, UNO_QUERY
);
282 case script::ModuleType::DOCUMENT
:
283 aSourceCode
.append( "VBADocumentModule" );
284 // get the VBA implementation object associated to the document module
285 if( rxDocObjectNA
.is() ) try
287 aModuleInfo
.ModuleObject
.set( rxDocObjectNA
->getByName( maName
), UNO_QUERY
);
289 catch (const Exception
&)
294 aSourceCode
.append( "VBAUnknown" );
296 aSourceCode
.append( '\n' );
299 aSourceCode
.append( "Option VBASupport 1\n" );
300 if( mnType
== script::ModuleType::CLASS
)
301 aSourceCode
.append( "Option ClassModule\n" );
305 // add a subroutine named after the module itself
306 aSourceCode
.append( "Sub " ).
307 append( maName
.replace( ' ', '_' ) ).append( '\n' );
310 // append passed VBA source code
311 aSourceCode
.append( rVBASourceCode
);
313 // close the subroutine named after the module
315 aSourceCode
.append( "End Sub\n" );
317 // insert extended module info
320 Reference
< XVBAModuleInfo
> xVBAModuleInfo( rxBasicLib
, UNO_QUERY_THROW
);
321 xVBAModuleInfo
->insertModuleInfo( maName
, aModuleInfo
);
323 catch (const Exception
&)
327 // insert the module into the passed Basic library
330 rxBasicLib
->insertByName( maName
, Any( aSourceCode
.makeStringAndClear() ) );
332 catch (const Exception
&)
334 OSL_FAIL( "VbaModule::createModule - cannot insert module into library" );
341 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */