Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*************************************************************************
3 : *
4 : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : *
6 : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : *
8 : * OpenOffice.org - a multi-platform office productivity suite
9 : *
10 : * This file is part of OpenOffice.org.
11 : *
12 : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : * it under the terms of the GNU Lesser General Public License version 3
14 : * only, as published by the Free Software Foundation.
15 : *
16 : * OpenOffice.org is distributed in the hope that it will be useful,
17 : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : * GNU Lesser General Public License version 3 for more details
20 : * (a copy is included in the LICENSE file that accompanied this code).
21 : *
22 : * You should have received a copy of the GNU Lesser General Public License
23 : * version 3 along with OpenOffice.org. If not, see
24 : * <http://www.openoffice.org/license.html>
25 : * for a copy of the LGPLv3 License.
26 : *
27 : ************************************************************************/
28 :
29 :
30 : #ifdef AIX
31 : #define _LINUX_SOURCE_COMPAT
32 : #include <sys/timer.h>
33 : #undef _LINUX_SOURCE_COMPAT
34 : #endif
35 :
36 : #ifdef WNT
37 : #include <prewin.h>
38 : #include <postwin.h>
39 : #undef OPTIONAL
40 : #endif
41 :
42 : #ifdef SOLARIS
43 : #include <limits>
44 : #endif
45 :
46 : #include <cstdarg>
47 :
48 : #include <osl/file.hxx>
49 : #include <plugin/impl.hxx>
50 :
51 0 : PluginComm::PluginComm( const OString& rLibName, bool bReusable ) :
52 : m_nRefCount( 0 ),
53 0 : m_aLibName( rLibName )
54 : {
55 0 : if( bReusable )
56 0 : PluginManager::get().getPluginComms().push_back( this );
57 0 : }
58 :
59 0 : PluginComm::~PluginComm()
60 : {
61 0 : PluginManager::get().getPluginComms().remove( this );
62 0 : while( m_aFilesToDelete.size() )
63 : {
64 0 : OUString aFile( m_aFilesToDelete.front() );
65 0 : m_aFilesToDelete.pop_front();
66 0 : osl::FileBase::getFileURLFromSystemPath( aFile, aFile );
67 0 : osl::File::remove( aFile );
68 0 : }
69 0 : }
70 :
71 0 : NPError PluginComm::NPP_SetWindow( XPlugin_Impl* i_pImpl )
72 : {
73 0 : return NPP_SetWindow( i_pImpl->getNPPInstance(), i_pImpl->getNPWindow() );
74 : }
75 :
76 0 : NPError PluginComm::NPP_Destroy( XPlugin_Impl* i_pImpl, NPSavedData** save )
77 : {
78 0 : return NPP_Destroy( i_pImpl->getNPPInstance(), save );
79 : }
80 :
81 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|