c - Gwan 处理程序状态

标签 c url-rewriting handler restful-url g-wan

我正在尝试为我的脚本实现一个 Restful 处理程序,用 & 替换 / 这样我就可以像这样转换 url:?script.c&things 到这个:?script/things。目前我只有一个基于 this 的测试脚本吉尔发表。

  // ============================================================================
  // 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 是什么

有什么帮助吗?我的操作系统是 Linux Mint 14,Gwan 版本 4.2.19

[编辑] 即使使用 Gwan 附带的 main_generic.c 处理程序示例也会给出这些奇怪的状态值

最佳答案

I'm trying to implement a restful handler for my scripts that replaces the / with & so I can turn url's like this: ?script.c&things into this: ?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&456 G-WAN 示例使用 /?argv/123/456 进行测试...

关于c - Gwan 处理程序状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15102173/

相关文章:

mod-rewrite - 重写规则给出两个尾部斜杠

url - URL 约定中的新 `#!` 是什么?

Android - 按住按钮重复操作

servlets - Jetty 7 的 websocket、servlet 和资源处理程序的嵌入式配置

c - 在 C 中使用外部

c++ - 如果应用程序从具有 Windows 管理权限的 cmd 打开,则会出现访问冲突

c - malloc : Anonymous mapping and magic area

c - 段错误 - 两个功能不同时运行

wordpress - 如何使用 .htaccess 在除一个目录/图像之外的所有 URL 上强制使用 HTTPS?

java - 如何为给定的代码实现 Runnable ?