1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_cli_ure.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include "Cli_environment.h" 32*cdf0e10cSrcweir 33*cdf0e10cSrcweir #using <mscorlib.dll> 34*cdf0e10cSrcweir #using <cli_ure.dll> 35*cdf0e10cSrcweir #using <system.dll> 36*cdf0e10cSrcweir #include "osl/diagnose.h" 37*cdf0e10cSrcweir #include "cli_proxy.h" 38*cdf0e10cSrcweir 39*cdf0e10cSrcweir using namespace System::Runtime::Remoting; 40*cdf0e10cSrcweir using namespace System::Runtime::Remoting::Proxies; 41*cdf0e10cSrcweir using namespace System::Collections; 42*cdf0e10cSrcweir using namespace System::Text; 43*cdf0e10cSrcweir using namespace System::Diagnostics; 44*cdf0e10cSrcweir using namespace System::Threading; 45*cdf0e10cSrcweir 46*cdf0e10cSrcweir namespace cli_uno 47*cdf0e10cSrcweir { 48*cdf0e10cSrcweir 49*cdf0e10cSrcweir inline System::String* Cli_environment::createKey(System::String* oid, System::Type* t) 50*cdf0e10cSrcweir { 51*cdf0e10cSrcweir return System::String::Concat(oid, t->get_FullName()); 52*cdf0e10cSrcweir } 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir 55*cdf0e10cSrcweir inline Cli_environment::Cli_environment() 56*cdf0e10cSrcweir { 57*cdf0e10cSrcweir #if OSL_DEBUG_LEVEL >= 2 58*cdf0e10cSrcweir _numRegisteredObjects = 0; 59*cdf0e10cSrcweir #endif 60*cdf0e10cSrcweir } 61*cdf0e10cSrcweir 62*cdf0e10cSrcweir Cli_environment::~Cli_environment() 63*cdf0e10cSrcweir { 64*cdf0e10cSrcweir OSL_ENSURE(_numRegisteredObjects == 0, 65*cdf0e10cSrcweir "cli uno bridge: CLI environment contains unrevoked objects"); 66*cdf0e10cSrcweir } 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir 69*cdf0e10cSrcweir System::Object* Cli_environment::registerInterface( 70*cdf0e10cSrcweir System::Object* obj, System::String* oid) 71*cdf0e10cSrcweir { 72*cdf0e10cSrcweir #if OSL_DEBUG_LEVEL >= 1 73*cdf0e10cSrcweir //obj must be a transparent proxy 74*cdf0e10cSrcweir OSL_ASSERT(RemotingServices::IsTransparentProxy(obj)); 75*cdf0e10cSrcweir _numRegisteredObjects ++; 76*cdf0e10cSrcweir #endif 77*cdf0e10cSrcweir OSL_ASSERT( ! m_objects->ContainsKey(oid)); 78*cdf0e10cSrcweir m_objects->Add(oid, new WeakReference(obj)); 79*cdf0e10cSrcweir return obj; 80*cdf0e10cSrcweir } 81*cdf0e10cSrcweir System::Object* Cli_environment::registerInterface ( 82*cdf0e10cSrcweir System::Object* obj, System::String* oid, System::Type* type) 83*cdf0e10cSrcweir { 84*cdf0e10cSrcweir #if OSL_DEBUG_LEVEL >= 1 85*cdf0e10cSrcweir //obj must be a real cli object 86*cdf0e10cSrcweir OSL_ASSERT( ! RemotingServices::IsTransparentProxy(obj)); 87*cdf0e10cSrcweir _numRegisteredObjects ++; 88*cdf0e10cSrcweir #endif 89*cdf0e10cSrcweir System::String* key = createKey(oid, type); 90*cdf0e10cSrcweir //see synchronization in map_uno2cli in cli_data.cxx 91*cdf0e10cSrcweir OSL_ASSERT( ! m_objects->ContainsKey(key)); 92*cdf0e10cSrcweir m_objects->Add(key, new WeakReference(obj)); 93*cdf0e10cSrcweir return obj; 94*cdf0e10cSrcweir } 95*cdf0e10cSrcweir 96*cdf0e10cSrcweir void Cli_environment::revokeInterface(System::String* oid, System::Type* type) 97*cdf0e10cSrcweir { 98*cdf0e10cSrcweir System::String* key = type != NULL ? createKey(oid, type) : oid; 99*cdf0e10cSrcweir #if OSL_DEBUG_LEVEL >= 1 100*cdf0e10cSrcweir _numRegisteredObjects --; 101*cdf0e10cSrcweir #endif 102*cdf0e10cSrcweir #if OSL_DEBUG_LEVEL >= 2 103*cdf0e10cSrcweir int i = 1; 104*cdf0e10cSrcweir if (m_objects->ContainsKey(key) == false) 105*cdf0e10cSrcweir { 106*cdf0e10cSrcweir Trace::WriteLine("cli uno bridge: try to revoke unregistered interface"); 107*cdf0e10cSrcweir Trace::WriteLine(oid); 108*cdf0e10cSrcweir i = 0; 109*cdf0e10cSrcweir } 110*cdf0e10cSrcweir Trace::WriteLine(System::String::Format( 111*cdf0e10cSrcweir new System::String(S"cli uno bridge: {0} remaining registered interfaces"), 112*cdf0e10cSrcweir __box(m_objects->get_Count() - 1))); 113*cdf0e10cSrcweir #endif 114*cdf0e10cSrcweir m_objects->Remove(key); 115*cdf0e10cSrcweir } 116*cdf0e10cSrcweir 117*cdf0e10cSrcweir inline void Cli_environment::revokeInterface(System::String* oid) 118*cdf0e10cSrcweir { 119*cdf0e10cSrcweir return revokeInterface(oid, NULL); 120*cdf0e10cSrcweir } 121*cdf0e10cSrcweir 122*cdf0e10cSrcweir System::Object* Cli_environment::getRegisteredInterface(System::String* oid, 123*cdf0e10cSrcweir System::Type* type) 124*cdf0e10cSrcweir { 125*cdf0e10cSrcweir //try if it is a UNO interface 126*cdf0e10cSrcweir System::Object* ret = NULL; 127*cdf0e10cSrcweir ret = m_objects->get_Item(oid); 128*cdf0e10cSrcweir if (! ret) 129*cdf0e10cSrcweir { 130*cdf0e10cSrcweir //try if if it is a proxy for a cli object 131*cdf0e10cSrcweir oid = createKey(oid, type); 132*cdf0e10cSrcweir ret = m_objects->get_Item( oid ); 133*cdf0e10cSrcweir } 134*cdf0e10cSrcweir if (ret != 0) 135*cdf0e10cSrcweir { 136*cdf0e10cSrcweir System::WeakReference* weakIface = 137*cdf0e10cSrcweir static_cast< System::WeakReference * >( ret ); 138*cdf0e10cSrcweir ret = weakIface->Target; 139*cdf0e10cSrcweir } 140*cdf0e10cSrcweir if (ret == 0) 141*cdf0e10cSrcweir m_objects->Remove( oid ); 142*cdf0e10cSrcweir return ret; 143*cdf0e10cSrcweir } 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir System::String* Cli_environment::getObjectIdentifier(System::Object* obj) 146*cdf0e10cSrcweir { 147*cdf0e10cSrcweir System::String* oId= 0; 148*cdf0e10cSrcweir RealProxy* aProxy= RemotingServices::GetRealProxy(obj); 149*cdf0e10cSrcweir if (aProxy) 150*cdf0e10cSrcweir { 151*cdf0e10cSrcweir UnoInterfaceProxy* proxyImpl= dynamic_cast<UnoInterfaceProxy*>(aProxy); 152*cdf0e10cSrcweir if (proxyImpl) 153*cdf0e10cSrcweir oId= proxyImpl->getOid(); 154*cdf0e10cSrcweir } 155*cdf0e10cSrcweir 156*cdf0e10cSrcweir if (oId == 0) 157*cdf0e10cSrcweir { 158*cdf0e10cSrcweir StringBuilder * buf= new StringBuilder(256); 159*cdf0e10cSrcweir bool bFirst = false; 160*cdf0e10cSrcweir System::Threading::Monitor::Enter(__typeof(Cli_environment)); 161*cdf0e10cSrcweir try { 162*cdf0e10cSrcweir buf->Append(m_IDGen->GetId(obj, & bFirst)); 163*cdf0e10cSrcweir } __finally 164*cdf0e10cSrcweir { 165*cdf0e10cSrcweir System::Threading::Monitor::Exit(__typeof(Cli_environment)); 166*cdf0e10cSrcweir } 167*cdf0e10cSrcweir 168*cdf0e10cSrcweir buf->Append(sOidPart); 169*cdf0e10cSrcweir oId= buf->ToString(); 170*cdf0e10cSrcweir } 171*cdf0e10cSrcweir return oId; 172*cdf0e10cSrcweir } 173*cdf0e10cSrcweir } //namespace cli_uno 174