Replace avhttp with libcurl: Some fixes:

1. Fixed an assumption somebody originally made in the plugin that std::string had contiguous storage. This is not specced behavior pre C++11 so we gamble by calling .reserve() which should give a far better guarantee.
2. Added copy to clipboard information for curl
3. Removed some openssl references in compiling.md
4. Renamed struct vars to be uppercase to match "public var" code style policy
This commit is contained in:
unknown 2015-12-22 15:19:00 +01:00 committed by jean-pierre charras
parent 59d02cf1a4
commit e506a4354b
9 changed files with 58 additions and 37 deletions

View File

@ -78,14 +78,6 @@ specific patches required to build a working Boost library. These patches can b
[patches folder][] in the KiCad source. These patches are named by the platform name they should [patches folder][] in the KiCad source. These patches are named by the platform name they should
be applied against. be applied against.
## OpenSSL Secure Socket Layer Library ## {#openssl}
The [OpenSSL][] library is only required when the KiCad build is configured with the Github plugin
enabled. See the [KiCad Build Configuration Options](#build_opts)` section for more information.
Please note that KiCad will download and build version 1.0.1e of OpenSSL by default. You should
probably use the version of OpenSSL installed on your system as it will most likely be more up to
date and contain the latest security fixes.
## GLEW OpenGL Extension Wrangler Library ## {#glew} ## GLEW OpenGL Extension Wrangler Library ## {#glew}
The [OpenGL Extension Wrangler][GLEW] is an OpenGL helper library used by the KiCad graphics The [OpenGL Extension Wrangler][GLEW] is an OpenGL helper library used by the KiCad graphics
@ -280,7 +272,7 @@ the following commands:
mingw-w64-x86_64-boost \ mingw-w64-x86_64-boost \
mingw-w64-x86_64-cairo \ mingw-w64-x86_64-cairo \
mingw-w64-x86_64-glew \ mingw-w64-x86_64-glew \
mingw-w64-x86_64-openssl \ mingw-w64-x86_64-curl \
mingw-w64-x86_64-wxPython \ mingw-w64-x86_64-wxPython \
mingw-w64-x86_64-wxWidgets mingw-w64-x86_64-wxWidgets
cd kicad-source cd kicad-source
@ -292,7 +284,6 @@ the following commands:
-DCMAKE_PREFIX_PATH=/mingw64 \ -DCMAKE_PREFIX_PATH=/mingw64 \
-DCMAKE_INSTALL_PREFIX=/mingw64 \ -DCMAKE_INSTALL_PREFIX=/mingw64 \
-DDEFAULT_INSTALL_PATH=/mingw64 \ -DDEFAULT_INSTALL_PATH=/mingw64 \
-DOPENSSL_ROOT_DIR=/mingw64 \
-DKICAD_SKIP_BOOST=ON \ -DKICAD_SKIP_BOOST=ON \
-DKICAD_SCRIPTING=ON \ -DKICAD_SCRIPTING=ON \
-DKICAD_SCRIPTING_MODULES=ON \ -DKICAD_SCRIPTING_MODULES=ON \
@ -415,7 +406,6 @@ Boost patches in the KiCad source [patches folder][].
[wxWidgets]: http://wxwidgets.org/ [wxWidgets]: http://wxwidgets.org/
[patches folder]: http://bazaar.launchpad.net/~kicad-product-committers/kicad/product/files/head:/patches/ [patches folder]: http://bazaar.launchpad.net/~kicad-product-committers/kicad/product/files/head:/patches/
[Boost]: http://www.boost.org/ [Boost]: http://www.boost.org/
[OpenSSL]: https://www.openssl.org/
[GLEW]: http://glew.sourceforge.net/ [GLEW]: http://glew.sourceforge.net/
[GLUT]: https://www.opengl.org/resources/libraries/glut/ [GLUT]: https://www.opengl.org/resources/libraries/glut/
[Cairo]: http://cairographics.org/ [Cairo]: http://cairographics.org/

View File

@ -28,6 +28,7 @@
* @brief EDA_BASE_FRAME class implementation. * @brief EDA_BASE_FRAME class implementation.
*/ */
#include <kicad_curl/kicad_curl.h> /* Include before any wx file */
#include <wx/aboutdlg.h> #include <wx/aboutdlg.h>
#include <wx/fontdlg.h> #include <wx/fontdlg.h>
#include <wx/clipbrd.h> #include <wx/clipbrd.h>
@ -573,6 +574,8 @@ void EDA_BASE_FRAME::CopyVersionInfoToClipboard( wxCommandEvent& event )
<< ( BOOST_VERSION / 100 % 1000 ) << wxT( "." ) << ( BOOST_VERSION / 100 % 1000 ) << wxT( "." )
<< ( BOOST_VERSION % 100 ) << wxT( "\n" ); << ( BOOST_VERSION % 100 ) << wxT( "\n" );
msg_version << KICAD_CURL::GetSimpleVersion() << wxT( "\n" );
msg_version << wxT( " USE_WX_GRAPHICS_CONTEXT=" ); msg_version << wxT( " USE_WX_GRAPHICS_CONTEXT=" );
#ifdef USE_WX_GRAPHICS_CONTEXT #ifdef USE_WX_GRAPHICS_CONTEXT
msg_version << wxT( "ON\n" ); msg_version << wxT( "ON\n" );

View File

@ -51,4 +51,30 @@ std::string KICAD_CURL::GetVersion()
} }
std::string KICAD_CURL::GetSimpleVersion()
{
curl_version_info_data *info = curl_version_info(CURLVERSION_NOW);
std::string res;
if( info->version )
{
res += "libcurl version: " + std::string(info->version);
}
res += " (";
if( info->features & CURL_VERSION_SSL )
{
res += "with SSL - ";
res += std::string(info->ssl_version);
}
else
{
res += "without SSL";
}
res += ")";
return res;
}
bool KICAD_CURL::m_initialized = false; bool KICAD_CURL::m_initialized = false;

View File

@ -43,8 +43,8 @@ KICAD_CURL_EASY::KICAD_CURL_EASY()
THROW_IO_ERROR( "Unable to initialize CURL session" ); THROW_IO_ERROR( "Unable to initialize CURL session" );
} }
m_Buffer.payload = (char*)malloc( 1 ); m_Buffer.Payload = (char*)malloc( 1 );
m_Buffer.size = 0; m_Buffer.Size = 0;
curl_easy_setopt( m_CURL, CURLOPT_WRITEFUNCTION, write_callback ); curl_easy_setopt( m_CURL, CURLOPT_WRITEFUNCTION, write_callback );
curl_easy_setopt( m_CURL, CURLOPT_WRITEDATA, (void *)&m_Buffer ); curl_easy_setopt( m_CURL, CURLOPT_WRITEDATA, (void *)&m_Buffer );
@ -53,7 +53,7 @@ KICAD_CURL_EASY::KICAD_CURL_EASY()
KICAD_CURL_EASY::~KICAD_CURL_EASY() KICAD_CURL_EASY::~KICAD_CURL_EASY()
{ {
free(m_Buffer.payload); free(m_Buffer.Payload);
curl_easy_cleanup(m_CURL); curl_easy_cleanup(m_CURL);
} }
@ -110,27 +110,27 @@ static size_t write_callback( void *contents, size_t size, size_t nmemb, void *u
struct KICAD_EASY_CURL_BUFFER *p = ( struct KICAD_EASY_CURL_BUFFER * ) userp; struct KICAD_EASY_CURL_BUFFER *p = ( struct KICAD_EASY_CURL_BUFFER * ) userp;
/* expand buffer */ /* expand buffer */
p->payload = (char *) realloc( p->payload, p->size + realsize + 1 ); p->Payload = (char *) realloc( p->Payload, p->Size + realsize + 1 );
/* check buffer */ /* check buffer */
if ( p->payload == NULL ) if ( p->Payload == NULL )
{ {
wxLogError( wxT( "Failed to expand buffer in curl_callback" ) ); wxLogError( wxT( "Failed to expand buffer in curl_callback" ) );
/* free buffer */ /* free buffer */
free( p->payload ); free( p->Payload );
return -1; return -1;
} }
/* copy contents to buffer */ /* copy contents to buffer */
memcpy( &(p->payload[p->size]), contents, realsize ); memcpy( &(p->Payload[p->Size]), contents, realsize );
/* set new buffer size */ /* set new buffer size */
p->size += realsize; p->Size += realsize;
/* ensure null termination */ /* ensure null termination */
p->payload[p->size] = 0; p->Payload[p->Size] = 0;
/* return size */ /* return size */
return realsize; return realsize;
@ -144,11 +144,11 @@ void KICAD_CURL_EASY::Perform()
curl_easy_setopt( m_CURL, CURLOPT_HTTPHEADER, m_headers ); curl_easy_setopt( m_CURL, CURLOPT_HTTPHEADER, m_headers );
} }
if( m_Buffer.size > 0 ) if( m_Buffer.Size > 0 )
{ {
free( m_Buffer.payload ); free( m_Buffer.Payload );
m_Buffer.payload = (char*)malloc( 1 ); m_Buffer.Payload = (char*)malloc( 1 );
m_Buffer.size = 0; m_Buffer.Size = 0;
} }
CURLcode res = curl_easy_perform( m_CURL ); CURLcode res = curl_easy_perform( m_CURL );

View File

@ -75,6 +75,13 @@ public:
*/ */
static std::string GetVersion(); static std::string GetVersion();
/**
* Function GetSimpleVersion
* Reports back curl version only and SSL library support
*
* @return std::string - Generated version string
*/
static std::string GetSimpleVersion();
private: private:
static bool m_initialized; static bool m_initialized;
}; };

View File

@ -52,8 +52,8 @@
*/ */
struct KICAD_EASY_CURL_BUFFER struct KICAD_EASY_CURL_BUFFER
{ {
char* payload; char* Payload;
size_t size; size_t Size;
}; };

View File

@ -20,11 +20,6 @@
# or you may write to the Free Software Foundation, Inc., # or you may write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
# Download avhttp and install the headers, not actually compiled
#################################################
# These are additions to any inherited from pcbnew dir: # These are additions to any inherited from pcbnew dir:
include_directories( . ) include_directories( . )
@ -37,8 +32,6 @@ set( GITHUB_PLUGIN_SRCS
add_library( github_plugin STATIC ${GITHUB_PLUGIN_SRCS} ) add_library( github_plugin STATIC ${GITHUB_PLUGIN_SRCS} )
# No, you don't get github without boost and openssl. Boost_LIBRARIES now moved up
# into CMakeLists.txt for pcbnew and cvpcb:
target_link_libraries( github_plugin target_link_libraries( github_plugin
common common
) )

View File

@ -220,7 +220,8 @@ bool GITHUB_GETLIBLIST::remoteGetJSON( const std::string& aFullURLCommand, wxStr
try try
{ {
kcurl.Perform(); kcurl.Perform();
m_image.assign(kcurl.GetBuffer()->payload, kcurl.GetBuffer()->size); m_image.reserve( kcurl.GetBuffer()->Size );
m_image.assign( kcurl.GetBuffer()->Payload, kcurl.GetBuffer()->Size );
return true; return true;
} }
catch( const IO_ERROR& ioe ) catch( const IO_ERROR& ioe )

View File

@ -538,7 +538,8 @@ void GITHUB_PLUGIN::remoteGetZip( const wxString& aRepoURL ) throw( IO_ERROR )
try try
{ {
kcurl.Perform(); kcurl.Perform();
m_zip_image.assign(kcurl.GetBuffer()->payload, kcurl.GetBuffer()->size); m_zip_image.reserve( kcurl.GetBuffer()->Size );
m_zip_image.assign( kcurl.GetBuffer()->Payload, kcurl.GetBuffer()->Size );
} }
catch( const IO_ERROR& ioe ) catch( const IO_ERROR& ioe )
{ {