build fix
[LibreOffice.git] / oox / source / ole / vbamodule.cxx
blob1451f4985e9e4f4c7ebbcb405545c181fcbc2767
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 <filter/msfilter/msvbahelper.hxx>
29 #include "oox/helper/binaryinputstream.hxx"
30 #include "oox/helper/storagebase.hxx"
31 #include "oox/helper/textinputstream.hxx"
32 #include "oox/ole/vbahelper.hxx"
33 #include "oox/ole/vbainputstream.hxx"
35 namespace oox {
36 namespace ole {
38 using namespace ::com::sun::star::lang;
39 using namespace ::com::sun::star::script::vba;
40 using namespace ::com::sun::star::uno;
41 using namespace ::com::sun::star;
43 using ::com::sun::star::awt::KeyEvent;
45 VbaModule::VbaModule( const Reference< XComponentContext >& rxContext,
46 const Reference< frame::XModel >& rxDocModel,
47 const OUString& rName, rtl_TextEncoding eTextEnc, bool bExecutable ) :
48 mxContext( rxContext ),
49 mxDocModel( rxDocModel ),
50 maName( rName ),
51 meTextEnc( eTextEnc ),
52 mnType( script::ModuleType::UNKNOWN ),
53 mnOffset( SAL_MAX_UINT32 ),
54 mbReadOnly( false ),
55 mbPrivate( false ),
56 mbExecutable( bExecutable )
60 void VbaModule::importDirRecords( BinaryInputStream& rDirStrm )
62 sal_uInt16 nRecId = 0;
63 StreamDataSequence aRecData;
64 while( VbaHelper::readDirRecord( nRecId, aRecData, rDirStrm ) && (nRecId != VBA_ID_MODULEEND) )
66 SequenceInputStream aRecStrm( aRecData );
67 sal_Int32 nRecSize = aRecData.getLength();
68 switch( nRecId )
70 #define OOX_ENSURE_RECORDSIZE( cond ) OSL_ENSURE( cond, "VbaModule::importDirRecords - invalid record size" )
71 case VBA_ID_MODULENAME:
72 OSL_FAIL( "VbaModule::importDirRecords - unexpected MODULENAME record" );
73 maName = aRecStrm.readCharArrayUC( nRecSize, meTextEnc );
74 break;
75 case VBA_ID_MODULENAMEUNICODE:
76 break;
77 case VBA_ID_MODULESTREAMNAME:
78 maStreamName = aRecStrm.readCharArrayUC( nRecSize, meTextEnc );
79 // Actually the stream name seems the best name to use
80 // the VBA_ID_MODULENAME name can sometimes be the wrong case
81 maName = maStreamName;
82 break;
83 case VBA_ID_MODULESTREAMNAMEUNICODE:
84 break;
85 case VBA_ID_MODULEDOCSTRING:
86 maDocString = aRecStrm.readCharArrayUC( nRecSize, meTextEnc );
87 break;
88 case VBA_ID_MODULEDOCSTRINGUNICODE:
89 break;
90 case VBA_ID_MODULEOFFSET:
91 OOX_ENSURE_RECORDSIZE( nRecSize == 4 );
92 mnOffset = aRecStrm.readuInt32();
93 break;
94 case VBA_ID_MODULEHELPCONTEXT:
95 OOX_ENSURE_RECORDSIZE( nRecSize == 4 );
96 break;
97 case VBA_ID_MODULECOOKIE:
98 OOX_ENSURE_RECORDSIZE( nRecSize == 2 );
99 break;
100 case VBA_ID_MODULETYPEPROCEDURAL:
101 OOX_ENSURE_RECORDSIZE( nRecSize == 0 );
102 OSL_ENSURE( mnType == script::ModuleType::UNKNOWN, "VbaModule::importDirRecords - multiple module type records" );
103 mnType = script::ModuleType::NORMAL;
104 break;
105 case VBA_ID_MODULETYPEDOCUMENT:
106 OOX_ENSURE_RECORDSIZE( nRecSize == 0 );
107 OSL_ENSURE( mnType == script::ModuleType::UNKNOWN, "VbaModule::importDirRecords - multiple module type records" );
108 mnType = script::ModuleType::DOCUMENT;
109 break;
110 case VBA_ID_MODULEREADONLY:
111 OOX_ENSURE_RECORDSIZE( nRecSize == 0 );
112 mbReadOnly = true;
113 break;
114 case VBA_ID_MODULEPRIVATE:
115 OOX_ENSURE_RECORDSIZE( nRecSize == 0 );
116 mbPrivate = true;
117 break;
118 default:
119 OSL_FAIL( "VbaModule::importDirRecords - unknown module record" );
120 #undef OOX_ENSURE_RECORDSIZE
123 OSL_ENSURE( !maName.isEmpty(), "VbaModule::importDirRecords - missing module name" );
124 OSL_ENSURE( !maStreamName.isEmpty(), "VbaModule::importDirRecords - missing module stream name" );
125 OSL_ENSURE( mnType != script::ModuleType::UNKNOWN, "VbaModule::importDirRecords - missing module type" );
126 OSL_ENSURE( mnOffset < SAL_MAX_UINT32, "VbaModule::importDirRecords - missing module stream offset" );
129 void VbaModule::createAndImportModule( StorageBase& rVbaStrg,
130 const Reference< container::XNameContainer >& rxBasicLib,
131 const Reference< container::XNameAccess >& rxDocObjectNA ) const
133 OUString aVBASourceCode = readSourceCode( rVbaStrg );
134 createModule( aVBASourceCode, rxBasicLib, rxDocObjectNA );
137 void VbaModule::createEmptyModule( const Reference< container::XNameContainer >& rxBasicLib,
138 const Reference< container::XNameAccess >& rxDocObjectNA ) const
140 createModule( OUString(), rxBasicLib, rxDocObjectNA );
143 OUString VbaModule::readSourceCode( StorageBase& rVbaStrg ) const
145 OUStringBuffer aSourceCode;
146 static const char sUnmatchedRemovedTag[] = "Rem removed unmatched Sub/End: ";
147 if( !maStreamName.isEmpty() && (mnOffset != SAL_MAX_UINT32) )
149 BinaryXInputStream aInStrm( rVbaStrg.openInputStream( maStreamName ), true );
150 OSL_ENSURE( !aInStrm.isEof(), "VbaModule::readSourceCode - cannot open module stream" );
151 // skip the 'performance cache' stored before the actual source code
152 aInStrm.seek( mnOffset );
153 // if stream is still valid, load the source code
154 if( !aInStrm.isEof() )
156 // decompression starts at current stream position of aInStrm
157 VbaInputStream aVbaStrm( aInStrm );
158 // load the source code line-by-line, with some more processing
159 TextInputStream aVbaTextStrm( mxContext, aVbaStrm, meTextEnc );
161 struct ProcedurePair
163 bool bInProcedure;
164 sal_uInt32 nPos;
165 ProcedurePair() : bInProcedure( false ), nPos( 0 ) {};
166 } procInfo;
168 while( !aVbaTextStrm.isEof() )
170 OUString aCodeLine = aVbaTextStrm.readLine();
171 if( aCodeLine.match( "Attribute " ) )
173 // attribute
174 int index = aCodeLine.indexOf( ".VB_ProcData.VB_Invoke_Func = " );
175 if ( index != -1 )
177 // format is
178 // 'Attribute Procedure.VB_ProcData.VB_Invoke_Func = "*\n14"'
179 // where 'Procedure' is the procedure name and '*' is the shortcut key
180 // note: his is only relevant for Excel, seems that
181 // word doesn't store the shortcut in the module
182 // attributes
183 int nSpaceIndex = aCodeLine.indexOf(' ');
184 OUString sProc = aCodeLine.copy( nSpaceIndex + 1, index - nSpaceIndex - 1);
185 // for Excel short cut key seems limited to cntrl+'a-z, A-Z'
186 OUString sKey = aCodeLine.copy( aCodeLine.lastIndexOf("= ") + 3, 1 );
187 // only alpha key valid for key shortcut, however the api will accept other keys
188 if ( !isalpha( (char)sKey[ 0 ] ) )
190 // cntrl modifier is explicit ( but could be cntrl+shift ), parseKeyEvent
191 // will handle and uppercase letter appropriately
192 OUString sApiKey = "^";
193 sApiKey += sKey;
196 KeyEvent aKeyEvent = ooo::vba::parseKeyEvent( sApiKey );
197 ooo::vba::applyShortCutKeyBinding( mxDocModel, aKeyEvent, sProc );
199 catch (const Exception&)
205 else
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
210 // the trim.
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();
227 else
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 );
240 else
242 procInfo.bInProcedure = false;
243 procInfo.nPos = 0;
246 // normal source code line
247 if( !mbExecutable )
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() )
262 return;
264 // prepare the Basic module
265 script::ModuleInfo aModuleInfo;
266 aModuleInfo.ModuleType = mnType;
267 OUStringBuffer aSourceCode;
268 aSourceCode.append( "Rem Attribute VBA_ModuleType=" );
269 switch( mnType )
271 case script::ModuleType::NORMAL:
272 aSourceCode.append( "VBAModule" );
273 break;
274 case script::ModuleType::CLASS:
275 aSourceCode.append( "VBAClassModule" );
276 break;
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 );
281 break;
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&)
292 break;
293 default:
294 aSourceCode.append( "VBAUnknown" );
296 aSourceCode.append( '\n' );
297 if( mbExecutable )
299 aSourceCode.append( "Option VBASupport 1\n" );
300 if( mnType == script::ModuleType::CLASS )
301 aSourceCode.append( "Option ClassModule\n" );
303 else
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
314 if( !mbExecutable )
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" );
338 } // namespace ole
339 } // namespace oox
341 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */