note description: "Marshalled interface for the Emitter" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" frozen class MARSHAL_CACHE_MANAGER inherit MARSHAL_BY_REF_OBJECT redefine initialize_lifetime_service end feature -- Access is_successful: BOOLEAN -- Was the consuming successful? do if attached implementation as l_imp then Result := l_imp.is_successful end end is_initialized: BOOLEAN -- Has current object been initialized? do Result := implementation /= Void end last_error_message: detachable SYSTEM_STRING -- Last error message do if attached implementation as l_imp then Result := l_imp.last_error_message end end feature -- Basic Exportations initialize -- initialize the object using default path to EAC require not_already_initialized: not is_initialized do create implementation.make ensure current_initialized: is_initialized end initialize_with_path (a_path: SYSTEM_STRING) -- initialize object with path to specific EAC and initializes it if not already done. require not_already_initialized: not is_initialized non_void_path: a_path /= Void valid_path: a_path.length > 0 local l_path: PATH do create l_path.make_from_string (create {STRING_32}.make_from_cil (a_path)) create implementation.make_with_path (l_path) ensure current_initialized: is_initialized end consume_assembly (a_name: SYSTEM_STRING; a_version, a_culture, a_key: detachable SYSTEM_STRING; a_info_only: BOOLEAN) -- consume an assembly using it's display name parts. -- "`a_name', Version=`a_version', Culture=`a_culture', PublicKeyToken=`a_key'" require current_initialized: is_initialized non_void_name: a_name /= Void valid_name: a_name.length > 0 local l_version, l_culture, l_key: detachable STRING_32 do if attached implementation as l_imp then if a_version /= Void then l_version := a_version end if a_culture /= Void then l_culture := a_culture end if a_key /= Void then l_key := a_key end l_imp.consume_assembly (create {STRING_32}.make_from_cil (a_name), l_version, l_culture, l_key, a_info_only) end end consume_assembly_from_path (a_path: SYSTEM_STRING; a_info_only: BOOLEAN; a_references: detachable SYSTEM_STRING) -- Consume assembly located `a_path' require current_initialized: is_initialized non_void_path: a_path /= Void valid_path: a_path.length > 0 local l_references: detachable STRING_32 do if attached implementation as l_imp then if a_references /= Void then l_references := a_references end l_imp.consume_assembly_from_path (create {STRING_32}.make_from_cil (a_path), a_info_only, l_references) end end prepare_for_unload -- prepares all that in necessary be before running app domain in unloaded do if attached implementation as l_imp then l_imp.unload end end feature -- Lifetime Services initialize_lifetime_service: SYSTEM_OBJECT -- Obtains a lifetime service object to control the lifetime policy for this instance do if attached {ILEASE} Precursor {MARSHAL_BY_REF_OBJECT} as l_lease then l_lease.initial_lease_time := {TIME_SPAN}.zero Result := l_lease else check from_documentation: False then end end ensure then result_attached: Result /= Void end feature {NONE} -- Implementation implementation: detachable CACHE_MANAGER -- Access to `CACHE_MANAGER'. ;note copyright: "Copyright (c) 1984-2018, Eiffel Software" license: "GPL version 2 (see http://www.eiffel.com/licensing/gpl.txt)" licensing_options: "http://www.eiffel.com/licensing" copying: "[ This file is part of Eiffel Software's Eiffel Development Environment. Eiffel Software's Eiffel Development Environment is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License (available at the URL listed under "license" above). Eiffel Software's Eiffel Development Environment is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Eiffel Software's Eiffel Development Environment; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ]" source: "[ Eiffel Software 356 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end