I want to write a program in C/C++ that will dynamically read a web page and extract information from it. As an example imagine if you wanted to write an application to follow and log an ebay auction. Is there an easy way to grab the web page? A library which provides this functionality? And is there an easy way to parse the page to get the specific data?
|
|
Have a look at the cURL library:
BTW, if C++ is not strictly required. I encourage you to try C# or Java. It is much easier and there is a built-in way. |
|||||||||||||
|
|
Windows code:
|
|||
|
|
What you are looking for is called HTML Screen Scraping. A search of "c++" and "scraping" should turn up a lot of links. |
||||
|
|
|
You can do it with socket programming, but it's tricky to implement the parts of the protocol needed to reliably fetch a page. Better to use a library, like neon. This is likely to be installed in most Linux distributions. Under FreeBSD use the fetch library. For parsing the data, because many pages don't use valid XML, you need to implement heuristics, not a real yacc-based parser. You can implement these using regular expressions or a state transition machine. As what you're trying to do involves a lot of trial-and-error you're better off using a scripting language, like Perl. Due to the high network latency you will not see any difference in performance. |
|||||
|
|
Try using a library, like Qt, which can read data from across a network and get data out of an xml document. This is an example of how to read an xml feed. You could use the ebay feed for example. |
|||
|
|
|
Are you sure you want to do this in C++? Perl was explicitly made for such things, and other scripting languages should be good too. |
|||
|
|
|
There is a free TCP/IP library available for Windows that supports HTTP and HTTPS - using it is very straightforward.
You can also GET files and store them in a memory buffer (via |
|||
|
|
|
You're not mentioning any platform, so I give you an answer for Win32. One simple way to download anything from the Internet is the |
|||
|
|
|
This is what I use. It works good. wininet is your friend :)
#pragma comment(lib,"wininet")
#include
class INet {
public:
INet (char *me = NULL)
{ _hi = ::InternetOpen (
(me != NULL) ? me : "inet",
INTERNET_OPEN_TYPE_PRECONFIG, NULL, INTERNET_INVALID_PORT_NUMBER, 0);
if (::GetLastError ()) _hi = NULL;
}
~INet ()
{ if (_hi) ::InternetCloseHandle (_hi); }
ulong Get (char *url, void *buf, ulong max)
{ HINTERNET u;
ulong len = 0, ln, grab, ln2;
BOOL b, done = false;
TStr dbg;
if (_hi == NULL) return 0;
if ((u = ::InternetOpenUrl (_hi, url,
NULL, 0, INTERNET_FLAG_RELOAD | INTERNET_FLAG_DONT_CACHE, 0)) == NULL)
{::InternetCloseHandle (u); return 0;}
do {
grab = max - len; if (grab > 128*1024) grab = 128*1024;
b = ::InternetReadFile (u, (ubyte *)(buf) + len, grab, & ln);
//TStr dbg;sprintf (dbg, "Max=%d Grab=%d TotalLen=%d LastLen=%d",
// max, grab, len, ln); DBG (dbg);
len += ln;
if (b != TRUE) {
DBG ("INet::Get had err:"); ERR (dbg); DBG (dbg);
ln2 = sizeof (dbg);
::InternetGetLastResponseInfo (& ln, dbg, & ln2); DBG (dbg);
}
} while (ln && (b == TRUE));
::InternetCloseHandle (u);
return len;
}
private:
HINTERNET _hi;
};
void DLBuf (char *src) // suck a file offa the web into Buf[],Len
{ INet _iNet ("WebGetter");
char dbg [801];
Len = _iNet.Get (src, Buf, sizeof (Buf));
sprintf(dbg," len=%d\n", Len); DBG (dbg);
}
|
|||||||
|
