हां, इसका इस्तेमाल किया जा सकता है। दूसरों ने विभिन्न दृष्टिकोणों का उल्लेख किया है। यहाँ मेरा अपना दृष्टिकोण है। लाभ यह है कि यह पूरी तरह से पोर्टेबल और स्व-निहित है, सभी चुने गए पुस्तकालय केवल एएनएसआई सी पर निर्भर करते हैं। इसे स्थापित करने के लिए केवल लिनक्स कर्नेल और सी कंपाइलर की आवश्यकता होती है (और बिजीबॉक्स, बैश, आदि जैसे स्पष्ट सामान) (या विंडोज) और एक संकलक), कोई अतिरिक्त पुस्तकालयों की जरूरत नहीं है, कोई फैंसी विशाल प्रतिष्ठान नहीं।
परिणाम एक एकल कार्यक्रम है जो एक वेब सर्वर और एक गतिशील पृष्ठ जनरेटर ("अपाचे" और "php" दोनों को शामिल करता है) दोनों है, इसमें sqlite के माध्यम से डेटाबेस का उपयोग भी होगा।
प्रयुक्त पुस्तकालय:
- Mongoose - Http सर्वर
- Sqlite - SQL डेटाबेस
- MiniXML - गतिशील पेज पीढ़ी को आसान बनाता है। जावास्क्रिप्ट की तरह
createElement
इस उत्तर के बाकी लिनक्स के लिए एक पूर्ण सेट-अप गाइड है। SQlite और MiniXML दोनों वैकल्पिक हैं, लेकिन गाइड पूरी स्थापना को कवर करता है। यदि आप साइक्लाइट या मिनीएक्सएमएल को निष्क्रिय करने में रुचि रखते हैं तो गैर-जरूरी हिस्सों पर टिप्पणी करना आपके ऊपर है।
1. 3 पुस्तकालयों को डाउनलोड करें
2. अपना फोल्डर तैयार करें
- एक खाली फ़ोल्डर बनाएँ (हम इसे मुख्य फ़ोल्डर कहेंगे)
- इसमें निम्नलिखित फाइलें रखें:
- Sqlite से tar.gz:
sqlite3.c , sqlite3.h
- Mongoose ज़िप से:
mongoose.c , mongoose.h
- Mxml से tar.gz:
mxml.h
3. संकलन एमएक्सएमएल
आपने देखा होगा कि mxml.c गायब है, ऐसा इसलिए है क्योंकि हमें एक स्थिर mxml लाइब्रेरी बनाने की आवश्यकता है। उस फ़ोल्डर पर जाएँ जहाँ mxml tar.gz डाउनलोड किया गया था और प्रदर्शन:
tar -xvf mxml-<version>.tar.gz #Extract the tar
cd mxml-<version> #Go to the newly extracted directory
./configure #prepare the compiler
make #compile, you may need to install "make" first.
एक बार संकलन समाप्त हो जाने के बाद, कई फाइलें उत्पन्न हो जाएंगी, हमारे लिए केवल ब्याज की फाइल है libmxml.a
, उस फाइल को मुख्य फ़ोल्डर में कॉपी करें।
3.1 डबलचेक
जांचें कि मुख्य फ़ोल्डर में निम्नलिखित हैं:
- आम के लिए:
mongoose.c, mongoose.h
- Mxml के लिए:
libmxml.a, mxml.h
- sqlite के लिए:
sqlite.c, sqlite.h
4. मुख्य सी.सी.
चलो वास्तविक कार्यक्रम बनाते हैं, main.c
मुख्य फ़ोल्डर में एक फ़ाइल बनाते हैं , यहां आपको आरंभ करने के लिए एक कंकाल है।
#include <string.h>
#include <stdio.h>
#include "mongoose.h"
#include "mxml.h"
#include "sqlite3.h"
/***Sqlite initialization stuff***/
//comment out everything sqlite related if you don't want sqlite, including the callback function and the include "sqlite3.h"
static int callback(void * custom, int argc, char **argv, char **azColName);
char *zErrMsg = 0;
sqlite3 *db;
int rc;
/***Just some laziness shortcut functions I made***/
typedef mxml_node_t * dom; //type "dom" instead of "mxml_node_t *"
#define c mxmlNewElement //type "c" instead of "mxmlNewElement"
inline void t(dom parent,const char *string) //etc
{
mxmlNewText(parent, 0, string);
}
//type "sa" instead of "mxmlElementSetAttr"
inline void sa(dom element,const char * attribute,const char * value)
{
mxmlElementSetAttr(element,attribute,value);
}
//The only non boilerplate code around in this program is this function
void serve_hello_page(struct mg_connection *conn)
{
char output[1000];
mg_send_header(conn,"Content-Type","text/html; charset=utf-8");
mg_printf_data(conn, "%s", "<!DOCTYPE html>");
//This literally prints into the html document
/*Let's generate some html, we could have avoided the
* xml parser and just spat out pure html with mg_printf_data
* e.g. mg_printF_data(conn,"%s", "<html>hello</html>") */
//...But xml is cleaner, here we go:
dom html=mxmlNewElement(MXML_NO_PARENT,"html");
dom head=c(html,"head");
dom meta=c(head,"meta");
sa(meta,"charset","utf-8");
dom body=c(html,"body");
t(body,"Hello, world<<"); //The < is auto escaped, neat!
c(body,"br");
t(body,"Fred ate bred");
dom table=c(body,"table");
sa(table,"border","1");
//populate the table via sqlite
rc = sqlite3_exec(db, "SELECT * from myCoolTable", callback, table, &zErrMsg);
if( rc!=SQLITE_OK )
{
fprintf(stderr, "SQL error: %s\n", zErrMsg);
sqlite3_free(zErrMsg);
}
mxmlSaveString (html,output,1000, MXML_NO_CALLBACK);
mg_printf_data(conn, "%s", output);
mxmlDelete(html);
}
//sqlite callback
static int callback(void * custom, int argc, char **argv, char **azColName)
{
//this function is executed for each row
dom table=(dom)custom;
dom tr=c(table,"tr");
dom td;
int i;
for(i=0; i<argc; i++)
{
td=c(tr,"td");
if (argv[i])
t(td, argv[i]);
else
t(td, "NULL");
printf("%s == %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
}
printf("\n");
return 0;
}
static int event_handler(struct mg_connection *conn, enum mg_event ev)
{
if (ev == MG_AUTH)
{
return MG_TRUE; // Authorize all requests
}
else if (ev == MG_REQUEST)
{
if (!strcmp(conn->uri, "/hello"))
{
serve_hello_page(conn);
return MG_TRUE; // Mark as processed
}
}
return MG_FALSE; // Rest of the events are not processed
}
int main(void)
{
struct mg_server *server = mg_create_server(NULL, event_handler);
//mg_set_option(server, "document_root", "."); //prevent dir listing and auto file serving
//TODO can I allow file listing without dir listing in a specified directory?
mg_set_option(server, "listening_port", "8080");
rc = sqlite3_open("db.sqlite3", &db);
if( rc )
{
fprintf(stderr, "Can't open database: %s\n", sqlite3_errmsg(db));
sqlite3_close(db);
return(1);
}
printf("Server is running on port 8080!\n");
for (;;)
{
mg_poll_server(server, 1000); // Infinite loop, Ctrl-C to stop
}
mg_destroy_server(&server);
sqlite3_close(db);
return 0;
}
/*
* useful stuff:
* mg_send_file(struct mg_connection *, const char *path); - serve the file at *path*/
अंत में, संकलन!
संकलन करते हैं। cd
अपने मुख्य फ़ोल्डर में और इन पर अमल करें:
gcc -c main.c
gcc -c mongoose.c
gcc -c sqlite3.c
gcc -o server.out main.o mongoose.o sqlite3.o -ldl -lpthread -lmxml -L .
अब, server.out के साथ निष्पादित करें /server.out
, और नेविगेट करेंlocalhost:8080/hello
किया हुआ :)