2

を置き換えるスクリプト用の安らかなハンドラーを実装しようとしている/ので&、このような URL を this: に変えることができ?script.c&thingsます?script/things。現在、Gil によるこの投稿に基づいたテスト スクリプトがあります。

  // ============================================================================
  // Handler C script for the G-WAN Web Application Server (http://gwan.ch/)
  // ----------------------------------------------------------------------------
  // main.c: basic rewrite example
  // ============================================================================
  #include "gwan.h"    // G-WAN exported functions

  #include <stdio.h> // puts(), printf()
  // ----------------------------------------------------------------------------
  // init() will initialize your data structures, load your files, etc.
  // ----------------------------------------------------------------------------
  // init() should return -1 if failure (to allocate memory for example)
  int init(int argc, char *argv[])
  {
     // define which handler states we want to be notified in main():
     // enum HANDLER_ACT { 
     //  HDL_INIT = 0, 
     //  HDL_AFTER_ACCEPT, // just after accept (only client IP address setup)
     //  HDL_AFTER_READ,   // each time a read was done until HTTP request OK
     //  HDL_BEFORE_PARSE, // HTTP verb/URI validated but HTTP headers are not 
     //  HDL_AFTER_PARSE,  // HTTP headers validated, ready to build reply
     //  HDL_BEFORE_WRITE, // after a reply was built, but before it is sent
     //  HDL_HTTP_ERRORS,  // when G-WAN is going to reply with an HTTP error
     //  HDL_CLEANUP };
     u32 *states = (u32*)get_env(argv, US_HANDLER_STATES);
     *states =  (1 << HDL_AFTER_READ);
     return 0;
  }
  // ----------------------------------------------------------------------------
  // clean() will free any allocated memory and possibly log summarized stats
  // ----------------------------------------------------------------------------
  void clean(int argc, char *argv[])
  {}
  // ----------------------------------------------------------------------------
  // main() does the job for all the connection states below:
  // (see 'HTTP_Env' in gwan.h for all the values you can fetch with get_env())
  // ----------------------------------------------------------------------------
  int main(int argc, char *argv[])
  {
     // HDL_HTTP_ERRORS return values:
     //   0: Close the client connection
     //   2: Send a server reply based on a custom reply buffer
     // 255: Continue (send a reply based on the request HTTP code)
     const long state = (long)argv[0];
     printf("Catching Gwan State: %i\n", (long)argv[0] );
     if(state != HDL_AFTER_READ)
        return 255;

     xbuf_t *read_xbuf = (xbuf_t*)get_env(argv, READ_XBUF);
     printf("req_1: %.20s\n", read_xbuf->ptr);
     xbuf_replfrto(read_xbuf, read_xbuf->ptr, read_xbuf->ptr + 16, "/", "&");
     printf("req_2: %.20s\n-------------------\n\n", read_xbuf->ptr);

     return 255; // continue G-WAN's default execution path
  }
  // ============================================================================
  // End of Source Code
  // ============================================================================

このスクリプトには、printf("Catching Gwan State: %lu\n", (long)argv[0] );取得した状態 (0 ~ 8 だと思います) を出力するはずの行がありますが、出力し続けます。

Catching Gwan State: -38241808

-38241808 が何かわかりません

ヘルプはありますか?私のOSはLinux Mint 14、Gwanバージョン4.2.19です

[編集] Gwan に付属の main_generic.c ハンドラの例を使用しても、これらの奇妙な状態値が得られます

4

2 に答える 2

2

/ を & に置き換えるスクリプト用の安らかなハンドラーを実装しようとしているので、 this: のような URL を this: に変えることができ?script.c&thingsます?script/things

G-WAN が自動的に行います。ハンドラーは絶対に必要ありません。そのRESTful機能は、PDF マニュアルタイムラインに記載されています。

どのプログラミング言語をデフォルト言語にするか (URI で明示的なファイル拡張子を必要としない言語) を定義することもできます。以下の方法を参照してください(ここではハンドラーから):

int init(int argc, char *argv[])
{
   // the QUERY_CHAR character can be chosen from the following set: 
   //  - _ . ! ~ * ' ( ) 
   // (see RFC 2396, section "2.3. Unreserved Characters")
   //   
   u8 *query_char = (u8*)get_env(argv, QUERY_CHAR);
   *query_char = '!'; // use "/!hello.c" instead of "/?hello.c"

   // by default, DEFAULT_LANG = LG_C (ANSI C)
   // LG_C, LG_CPP, LG_JAVA, etc. are defined in /gwan/include/gwan.h
   // and in http://gwan.com/api#env
   //
   u8 *lang = (u8*)get_env(argv, DEFAULT_LANG);
   *lang = LG_CPP; // use "/!hello" instead of "/!hello.cpp"
   return 0;
}

代わりに/?argv.c&123&456G-WANの例でテストしてください.../?argv/123/456

于 2013-02-27T08:52:25.527 に答える
-1

私はそれを自分でテストしました。あなたがこれが好きなら
u32 *states = (u32*)get_env(argv, US_HANDLER_STATES);
*states = (1L << HDL_AFTER_ACCEPT)
| (1L << HDL_AFTER_READ)
| (1L << HDL_BEFORE_PARSE)
| (1L << HDL_AFTER_PARSE)
| (1L << HDL_HTTP_ERRORS)
| (1L << HDL_BEFORE_WRITE);

0-8を生成します。

于 2013-02-27T02:15:11.027 に答える