How to download a file from the internet? [SOLVED]
-
On 25/09/2014 at 22:10, xxxxxxxx wrote:
I installed curl and your code works fine for me.
All I had to do was change the URL to some text file on Google that I could grab as a test.
I'm guessing that you probably unzipped the curl files to your HD. But you never actually built them?
curl needs to be "built" so that you get a .dll from it.
The instructions for building are in: winbuild/BUILD.WINDOWS.txt
I built mine using this: nmake /f Makefile.vc mode=dllWhen you build curl it creates a new folder called "builds"
In there you'll find a bin folder with libcurl.dll in it.
That .dll file has to be copied to your VS project's Debug and Release folders or else they won't run.
QT users know about this sort of thing because they also need to copy some QT .dlls to their plugin's output folders if not using static builds.
It's a fairly common practice. So try to get comfortable with it.Also. You have to set up your project's properties in VS:
-In the VC++ Directories section you have to set the paths to your curl folders in the "Include Directories" and "Library Directories".
-In the Linker->Input section. You have to open the "Additional Dependencies" option.
And paste this into the top window: libcurl.lib
BTW: If you're wondering where I got libcurl.lib from. I got it from the builds/lib folder which you should see after you build it.This is similar to how I make all of my C4D plugins too.
I do it all from scratch. I don't copy and paste and then delete what's not needed as Maxon recommends.
I do it all completely from scratch every single time. Because when you download libraries from the web. You'll need to know how all the setting work in VS.
There's no such thing as copy and paste out there in the "real world".One thing that you're going to notice is that people who write C++ code rarely communicate clearly to the average user.
And people who write these libraries are the worst at communication.
They have coded stuff for so long that they have completely forgotten what it's like to be a new or casual C++ user.This is why C++ is thought of as "too hard".
It's not hard at all. It's only hard when people can't communicate clearly and properly.
There's files all over the place, and several things needing to be set up in VS for it all to work.
This stuff has to be communicated to the users clearly. And C++ programmers are the worst of the worst when it comes to communicating things clearly.-ScottA
-
On 25/09/2014 at 23:55, xxxxxxxx wrote:
I have noticed that information is very unclear.
Cryptic sentences and, above all, almost all assume that is a veteran programmer reading them. Newbies try to read them and can't make anything out of it.
I have dozens of browser tabs with stuff related to curl but most of them I can't decipher properlyWell, I guess I have something to start with, now. Oh, by the way, my code was mostly what I could come up with after reading a LOT about curl.
However, I start my development in Xcode. I assume that I need to compile the curl library for Mac and compile for Windows too, when I take my code to VS.
So, I still need to find out how to compile it for Mac, first.
Actually, on my Mac, I was just including the curl library that is already in my system. But I guess it is not enough.
Well, off I go, trying to find out how to compile it for Mac. -
On 03/10/2014 at 03:21, xxxxxxxx wrote:
Hello again, Scott.
I have it all working fine now in MacOS X. It was not easy but it is working perfectly now.
Now I was trying to build the Win32 and Win64 versions.
So, while trying to build the curl libraries, I got this:c:\Users\ruibatista\Desktop\curl-7.38.0\winbuild>nmake Makefile.vc mode=dll VC=10
Microsoft (R) Program Maintenance Utility Version 10.00.30319.01
Copyright (C) Microsoft Corporation. All rights reserved.configuration name: libcurl-vc10-x86-release-dll-ipv6-sspi-winssl
cl.exe /O2 /DNDEBUG /MD /I. /I ../lib /I../include /nologo /W3 /EHsc /DW
IN32 /FD /c /DBUILDING_LIBCURL /I"../../deps/include" /DUSE_WIN32_IDN /DWANT_ID
N_PROTOTYPES /DUSE_IPV6 /DUSE_WINDOWS_SSPI /DUSE_SCHANNEL /Fo"..\builds\libcur
l-vc10-x86-release-dll-ipv6-sspi-winssl-obj-lib/file.obj" ..\lib\file.c
file.c
../include\curl/curlbuild.h(152) : fatal error C1083: Cannot open include file:
'sys/socket.h': No such file or directory
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 10.0
\VC\BIN\cl.exe"' : return code '0x2'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 10.0
\VC\BIN\nmake.exe"' : return code '0x2'
Stop.Must I have the curl folder in some specific place?
Compiling curl in MacOS was so easy. I only had to type one command and everything worked fine the first time -
On 03/10/2014 at 03:23, xxxxxxxx wrote:
Also, one of the options is:
MACHINE=<x86 or x64>
Does this mean that, if I want to build Win32 and Win64 version I have to perform two compilations? Will they not conflict?
(but this only matters if I manage to compile it, of course, and I can't even do that now)
-
On 03/10/2014 at 08:01, xxxxxxxx wrote:
The 32 bit version of anything will typically compile fine when your compiler is making a 64 bit program. So it should be safe to set that option to x64. Assuming that you're building a 64 bit plugin.
If you're configuration is set to build a Debug | 64 or Release | 64 plugin. Then that option needs to be set to x64.
If you're configuration is set to build a Debug | Win32 or Release | Win32 plugin. Then that option needs to be set to Win32.The one I installed was: curl 7.38.0. It wasn't the MSVC version.
It's ok to rename it to "curl" to make the path shorter and easier to use.Here's the instructions I wrote for myself in case I forget how I did it
Installation instructions /////////////////////////////////////////////////////////////////////////////////////////////////////////// -Unzip to c:\curl -Build curl to generate the .dll and .lib files needed I used this in the VC console to build it: nmake /f Makefile.vc mode=dll -Set up VS to use them: Put libcurl.lib in the Linker->Input "Additional Dependencies" top window Put C:\curl\builds\libcurl-vc-x86-release-dll-ipv6-sspi-winssl\include\curl in "Include Directories" Put C:\curl\builds\libcurl-vc-x86-release-dll-ipv6-sspi-winssl\lib in "Library Directories" ////////////////////////////////////////////////////////////////////////////////////////////////////////////// Using the examples -If you can't run your code because of a "libcurl.dll not found" error You might need to copy the builds/bin/libcurl.dll file to your Degug & Release folders to fix that NOTE: In VS you will get lots of 'cannot convert from void..' errors from the examples This is because they need to be casted to work Examples: chunk.memory = (char* )malloc(1); mem->memory = (char* )realloc(mem->memory, mem->size + realsize + 1);
-ScottA
-
On 03/10/2014 at 11:13, xxxxxxxx wrote:
Once again, thank you. I managed to do it with a installer from here (http://www.confusedbycode.com/curl/)
But, if it weren't for you indications, I would never guess that those changes in the Prject Properties were required.
However, now I'm getting these errors:1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\xlocale(323) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\xlocale(323) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
1>c:\program files (x86)\microsoft sdks\windows\v7.0a\include\msxml.h(1436) : error C2143: syntax error : missing ')' before 'constant'
1>c:\program files (x86)\microsoft sdks\windows\v7.0a\include\msxml.h(1436) : error C2143: syntax error : missing ';' before 'constant'
1>c:\program files (x86)\microsoft sdks\windows\v7.0a\include\msxml.h(1436) : error C2059: syntax error : ')'
1>c:\program files (x86)\microsoft sdks\windows\v7.0a\include\msxml.h(1436) : error C2238: unexpected token(s) preceding ';'
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:02.10
========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========I didn't included and <msxml.h>
How come it is returning those errors? -
On 03/10/2014 at 11:54, xxxxxxxx wrote:
I'm afraid I have no idea about those.
One thing that I've noticed is that VS will throw missing ';' or missing ')'; error messages if you forget the closing brace '}' somewhere in your code.
VS apparently doesn't know how to check your scoping {} braces very well. And it throws those kinds of misleading error messages. And sends you on a wild goose chase if you forgot to close your scope with an '}' in your code.I doubt that's why you're getting those error though.
-ScottA
-
On 03/10/2014 at 12:00, xxxxxxxx wrote:
I also doubt that because I do all my initial development in Xcode and Xcode is excellent at balancing { }, " " and ( )
Damn!!! It would be so fine if it was just a matter of moving the source and res folder from my Mac project to the VS project -
On 05/10/2014 at 15:16, xxxxxxxx wrote:
1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\xlocale(323) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\xlocale(323) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
1>c:\program files (x86)\microsoft sdks\windows\v7.0a\include\msxml.h(1436) : error C2143: syntax error : missing ')' before 'constant'
1>c:\program files (x86)\microsoft sdks\windows\v7.0a\include\msxml.h(1436) : error C2143: syntax error : missing ';' before 'constant'
1>c:\program files (x86)\microsoft sdks\windows\v7.0a\include\msxml.h(1436) : error C2059: syntax error : ')'
1>c:\program files (x86)\microsoft sdks\windows\v7.0a\include\msxml.h(1436) : error C2238: unexpected token(s) preceding ';'I think in one of your files you are including <windows.h> or some other header that includes this (probably from the curl libs). Then after than include you are then including some c4d headers, perhaps "c4d.h". You will now get conflicts with windows when compiling.
Basically the issue is that you should not mix any non C4D header includes in a file that uses C4D.
What I would do is have a seperate CPP file that does all the calls to libcurl. Do not have any C4D includes in this at all. Create a header file for that CPP that has standard C++ variables. DownloadFile(const char *url, int len). Then implement this method in the CPP file to call all the libcurl required functions, this CPP file should not call any C4D code or have any C4D headers in it. Its just for libcurl. There is nothing else at all in the header file either.
Then in your C4D files you can include this header to call the methods. Or you could ignore the header file and forward declare these methods directly in your c4d file.
-
On 05/10/2014 at 16:02, xxxxxxxx wrote:
Oh shoot. You're right Kent.
Sorry about that Rui. I forgot to tell you about the order of the includes.
The C4D includes always need to be placed after your STL stuff.If you have your C4D includes listed first. That could explain the errors Rui.
Try putting #include <curl.h>afterbefore your C4D includes.
It works fine me.-ScottA
-
On 05/10/2014 at 16:13, xxxxxxxx wrote:
I did found that it had to be something to do with the #include <curl.h> just a while ago. I was commenting out each line of #include (and correspondent dependent code) and the errors stopped when I commented the #include <curl.h> line.
I do have my #include <curl.h> after my #include "c4d.h".
My #include's are like this:#include "c4d.h" #include "serialization.h" #include <stdio.h> #include <curl.h> #include <sys/stat.h> #include <time.h> #include <sstream> #include <fstream> #include <iostream> #include <string> #include <stdlib.h>
I will try out creating an individual .cpp file for all my curl stuff tomorrow. It is quite late here and I must go to bed now.
I will let you guys know how it went. Thank you all -
On 05/10/2014 at 16:38, xxxxxxxx wrote:
Note: Order of header inclusion can be very important. Typically, you want to include standard C++ headers first, SDK headers next, and then third-part headers last (just as a rule of thumb). Even then, you should juxtapose them during testing/debugging to resolve issues.
Another note (that I learned the hard way) : Never, ever include headers in headers. Include them in the source file (.cpp). It avoids any deeply-nested issues that may occur.
-
On 05/10/2014 at 16:54, xxxxxxxx wrote:
Doh!
I meant put your STL stuff before your c4d includes.
Sorry about that. My brain must be fried from trying to use the Mudbox SDK.
If you think the C4D SDK is bad...try using the Mudbox SDK. :zipper_mouth:curl compiles fine for me when it's inside of a C4D plugin.
However. I do get unresolved errors from this code if I use it inside of a plugin: curl = curl_easy_init();
Apparently VS can't find this method for some strange reason.When I tested your code and the curl examples. I tested them in a raw C++ project. Not inside of a C4D plugin.
There seems to some more hoops to solve if you want to run the curl code inside you're plugin.
You might be better off running it in a raw C++ project. Then having your C4D plugin execute your Raw C++ curl code.Fun...ain't it.
-ScottA
-
On 05/10/2014 at 18:27, xxxxxxxx wrote:
Easy enough to create a separate raw C++ project by using it as a lib. That is how I added zlib and other third-party C++ support. Doesn't always work, mind you. I was unable to (and it seems that noone else has been able either) to include the PointCloud library and not crash C4D - mainly because it allows multiple inheritances and exceptions, the former being verbotten in C4D.
-
On 05/10/2014 at 19:36, xxxxxxxx wrote:
@Robert won't any library work fine if you compile and work with it as a dynamic link library? or Cinema 4D will have problems in binary code exceptions in an external dll
-
On 06/10/2014 at 02:33, xxxxxxxx wrote:
I will try first sorting the #include's.
Why is it that it compiles and works just fine in Xcode but not in Visual Studio? -
On 06/10/2014 at 03:18, xxxxxxxx wrote:
Ok, no amount of shuffling around makes the errors go away
I will try to make the curl stuff into a separate .cpp file now. -
On 06/10/2014 at 05:33, xxxxxxxx wrote:
Good news and bad news.
The good news are that I no longer get the errors I was getting.
The bad news are that I now get new errors that I really don't understand:1>Link:
1> Creating library C:\Program Files\MAXON\CINEMA 4D R14\plugins\PolyPaintTag\obj\PolyPaintTag\Win32_Release\PolyPaintTag.cdl.lib and object C:\Program Files\MAXON\CINEMA 4D R14\plugins\PolyPaintTag\obj\PolyPaintTag\Win32_Release\PolyPaintTag.cdl.exp
1>access_url.obj : error LNK2019: unresolved external symbol __imp__curl_easy_cleanup referenced in function "bool __cdecl check_online(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?check_online@@YA_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z)
1>access_url.obj : error LNK2019: unresolved external symbol __imp__curl_easy_perform referenced in function "bool __cdecl check_online(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?check_online@@YA_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z)
1>access_url.obj : error LNK2019: unresolved external symbol __imp__curl_easy_setopt referenced in function "bool __cdecl check_online(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?check_online@@YA_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z)
1>access_url.obj : error LNK2019: unresolved external symbol __imp__curl_easy_init referenced in function "bool __cdecl check_online(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?check_online@@YA_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z)
1>C:\Program Files\MAXON\CINEMA 4D R14\plugins\PolyPaintTag\PolyPaintTag.cdl : fatal error LNK1120: 4 unresolved externals
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:05.36
========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========
1>Link:
1> Creating library C:\Program Files\MAXON\CINEMA 4D R14\plugins\PolyPaintTag\obj\PolyPaintTag\Win32_Release\PolyPaintTag.cdl.lib and object C:\Program Files\MAXON\CINEMA 4D R14\plugins\PolyPaintTag\obj\PolyPaintTag\Win32_Release\PolyPaintTag.cdl.exp
1>access_url.obj : error LNK2019: unresolved external symbol __imp__curl_easy_cleanup referenced in function "bool __cdecl check_online(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?check_online@@YA_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z)
1>access_url.obj : error LNK2019: unresolved external symbol __imp__curl_easy_perform referenced in function "bool __cdecl check_online(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?check_online@@YA_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z)
1>access_url.obj : error LNK2019: unresolved external symbol __imp__curl_easy_setopt referenced in function "bool __cdecl check_online(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?check_online@@YA_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z)
1>access_url.obj : error LNK2019: unresolved external symbol __imp__curl_easy_init referenced in function "bool __cdecl check_online(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?check_online@@YA_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z)
1>C:\Program Files\MAXON\CINEMA 4D R14\plugins\PolyPaintTag\PolyPaintTag.cdl : fatal error LNK1120: 4 unresolved externals
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:05.36
========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========Like before, it all works fine in Xcode.
-
On 06/10/2014 at 07:56, xxxxxxxx wrote:
you should link to the curl library, in VS , project-> properties-> linker-> general -> Additional library directories , put /lib folder of the curl lib
and in the linker->input->Additional dependencies , put the curl library name, example:the_curl_library_name.lib
-
On 06/10/2014 at 09:15, xxxxxxxx wrote:
I found the source of the unresolved symbols problem I had with: **curl = curl_easy_init();
** I installed the 32 bit version of curl. And my C4D plugin was set to Debug | x64.
When I changed my C4D plugin to Debug | Win32. It works. And I can write curl code inside of my plugin's Execute() method now without any errors.
So I guess that's very important!!I tested it using your small curl code Rui. And it seems to work fine.
I have not yet figured out how to convert the output of the code into GePrint compatible code yet:
fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
But it does run. And it does grab a file from the internet without errors. When executed from my C4D plugin.NOTE:
Since C4D plugins are basically .dll based programs.
You have to put the built libcurl.dll file in your main Maxon folder where the .exe files are.-ScottA