Raise an exception when cURL dynamic library not found.

git-svn-id: https://svn.origo.ethz.ch/eiffelstudio/trunk/Src/library/cURL@72546 8089f293-4706-0410-a29e-feb5c42a2edf
This commit is contained in:
larryl
2008-02-29 03:43:43 +00:00
parent 893fce5706
commit 098032e815
3 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
indexing
description: "[
Exception which means cURL dynamic library (*.dll on Windows,
*.so on Linux and ...) not found.
]"
status: "See notice at end of class."
legal: "See notice at end of class."
date: "$Date$"
revision: "$Revision$"
class
CURL_DYNAMIC_LIBRARY_NOT_FOUND_EXCEPTION
inherit
DEVELOPER_EXCEPTION
create
make
feature {NONE} -- Initialization
make is
-- Creation method.
do
set_message ("cURL dynamic library not found.")
end
indexing
library: "cURL: Library of reusable components for Eiffel."
copyright: "Copyright (c) 1984-2006, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
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

View File

@@ -18,10 +18,14 @@ feature -- Command
-- Declared as curl_easy_init(). -- Declared as curl_easy_init().
local local
l_api: POINTER l_api: POINTER
l_exception: CURL_DYNAMIC_LIBRARY_NOT_FOUND_EXCEPTION
do do
l_api := api_loader.safe_load_api (module_name, "curl_easy_init") l_api := api_loader.safe_load_api (module_name, "curl_easy_init")
if l_api /= default_pointer then if l_api /= default_pointer then
Result := c_init (l_api) Result := c_init (l_api)
else
create l_exception.make
l_exception.raise
end end
ensure ensure
exists: Result /= default_pointer exists: Result /= default_pointer

View File

@@ -18,10 +18,14 @@ feature -- Command
-- Declared as curl_global_init(). -- Declared as curl_global_init().
local local
l_ptr: POINTER l_ptr: POINTER
l_exception: CURL_DYNAMIC_LIBRARY_NOT_FOUND_EXCEPTION
do do
l_ptr := api_loader.safe_load_api (module_name, "curl_global_init") l_ptr := api_loader.safe_load_api (module_name, "curl_global_init")
if l_ptr /= default_pointer then if l_ptr /= default_pointer then
c_curl_global_init (l_ptr, {CURL_GLOBAL_CONSTANTS}.curl_global_all); c_curl_global_init (l_ptr, {CURL_GLOBAL_CONSTANTS}.curl_global_all);
else
create l_exception.make
l_exception.raise
end end
end end