4

netcat を使用して小さな HTTP サーバーを作成しようとしています。プレーン テキスト ファイルの場合、これは正常に機能しますが、画像を送信しようとすると、ブラウザには壊れた画像のアイコンしか表示されません。私がしているのは、要求されたファイルの MIME タイプとサイズを抽出し、クライアントに cat することです。私の例の写真のリクエストのヘッダーは次のようになります。

HTTP/1.0 200 OK
Content-Length: 197677 
Content-Type: image/jpeg

これは、netcat ツールの -e オプションで起動する私の bash スクリプトです。

#!/bin/bash

# -- OPTIONS
index_page=index.htm
error_page=notfound.htm

# -- CODE

# read request
read -s input
resource=$(echo $input | grep -P -o '(?<=GET \/).*(?=\ )') # extract requested file
[ ! -n "$resource" ] && resource=$index_page # if no file requested, set to default
[ ! -f "$resource" ] && resource=$error_page # if requested file not exists, show error pag

# generate output
http_content_type=$(file -b --mime-type $resource) # extract mime type
case "$(echo $http_content_type | cut -d '/' -f2)" in
    html|plain)
        output=$(cat $resource)

        # fix mime type for plain text documents
        echo $resource | grep -q '.css$' && http_content_type=${http_content_type//plain/css}
        echo $resource | grep -q '.js$' && http_content_type=${http_content_type//plain/javascript}
    ;;

    x-php)
        output=$(php $resource)
        http_content_type=${http_content_type//x-php/html} # fix mime type
    ;;

    jpeg)
        output=$(cat $resource)
    ;;

    png)
        output=$(cat $resource)
    ;;

    *)
        echo 'Unknown type'
esac

http_content_length="$(echo $output | wc -c | cut -d ' ' -f1)"

# sending reply
echo "HTTP/1.0 200 OK"
echo "Content-Length: $http_content_length"
echo -e "Content-Type: $http_content_type\n"
echo $output

誰かが私を助けることができれば、とても幸せです:-)

4

1 に答える 1

0

バイナリ データの特殊文字がシェル スクリプトでアクティブになっていると思います。

次の方法でファイルサイズを取得することをお勧めします。

http_content_length=`stat -c '%s' $resource`

そして、あなたはそれを「送信」します:

...
echo -e "Content-Type: $http_content_type\n"
cat $resource
于 2013-03-27T15:16:41.800 に答える