18

私は mongoose とhttp://code.google.com/p/mongoose/という名前の組み込み Web サーバーに出くわし、素晴らしい wiki を読み、サンプルの Hello World プログラムを検索しましたが、見つかりませんでした.. . 私はいくつかの例を見つけましたが、それは Windows 用の C++ で書かれており、この Web サーバーを実行するための C プログラムの例を提供できます..

4

4 に答える 4

23

非常に簡単です。最初に、コールバック関数を実装する必要があります。

void *event_handler(enum mg_event event,
    struct mg_connection *conn) {

    const struct mg_request_info *request_info = mg_get_request_info(conn);

    static void* done = "done";

    if (event == MG_NEW_REQUEST) {
        if (strcmp(request_info->uri, "/hello") == 0) {
            // handle c[renderer] request
            if(strcmp(request_info->request_method, "GET") != 0) {
                // send error (we only care about HTTP GET)
                mg_printf(conn, "HTTP/1.1 %d Error (%s)\r\n\r\n%s",
                    500,
                    "we only care about HTTP GET",
                    "we only care about HTTP GET");
                // return not null means we handled the request
                return done;
            }

            // handle your GET request to /hello
            char* content = "Hello World!";
            char* mimeType = "text/plain";
            int contentLength = strlen(content);

            mg_printf(conn,
                "HTTP/1.1 200 OK\r\n"
                "Cache: no-cache\r\n"
                "Content-Type: %s\r\n"
                "Content-Length: %d\r\n"
                "\r\n",
                mimeType,
                contentLength);
            mg_write(conn, content, contentLength);
            return done;
            }
        }
        // in this example i only handle /hello
        mg_printf(conn, "HTTP/1.1 %d Error (%s)\r\n\r\n%s",
            500, /* This the error code you want to send back*/
            "Invalid Request.",
            "Invalid Request.");
        return done;
    }

    // No suitable handler found, mark as not processed. Mongoose will
    // try to serve the request.
    return NULL;
}

次に、サーバーを起動する必要があります。

int main(int argc, char **argv) {

    /* Default options for the HTTP server */
    const char *options[] = {
        "listening_ports", "8081",
        "num_threads", "10",
        NULL
    };

    /* Initialize HTTP layer */
    static struct mg_context *ctx;

    ctx = mg_start(&event_handler, options);
    if(ctx == NULL) {
        exit(EXIT_FAILURE);
    }

    puts("Server running, press enter to exit\n");
    getchar();
    mg_stop(ctx);

    return EXIT_SUCCESS;
}
于 2011-03-03T13:45:34.790 に答える
4

Mongoose を使用する C++ REST サービス ライブラリを作成しました。簡単な例を次に示します。

#include <iostream>
#include <server/server.hpp>

int main()
{
  using namespace pwned::server;
  Server server;

  server.Get("/", [](mg_event*, Params const &) {
    return Server::response("Hello!");
  });

  std::cin.get();
}

https://github.com/nurettin/pwned/blob/master/examples/server/basics/server.cppに基づく

于 2013-11-12T10:59:40.350 に答える