Code Monkey home page Code Monkey logo

stomperl's Introduction

my environment:
	- Cygwin
	- Erlang/OTP R11B-5
	- EUnit 2.0 Beta
	- Java 6
	- Ant 1.7.0
	- Perl 5.8.8

to make it run:
	make startup 	# console 1, should start an Erlang console
	make test 		# console 2, should pass all tests and kill the Erlang process in console 1
	
NOTE: 
Destinations could be both topics(sender/subscriber) or queues(producer/consumer).
By default they are all topics.
To create a queue, just name it starting with "queue^".
(E.g. "/a/b" would be a topic, and "queue^/a/b" would be a queue.)

stomperl's People

Watchers

James Cloos avatar

stomperl's Issues

Frame header parsing error

What steps will reproduce the problem?
1. send header with any key and a value of a url http://

What is the expected output?
A pair of strings

What do you see instead?
An error.

What version of the product are you using? On what operating system?
Latest and ubuntu

Please provide any additional information below.
This is my fix for it but im sure there is quicker way todo it :)

stomp_frame.erl

parse_headers([]) -> [];
parse_headers([HeaderText | Others]) ->
    case re:run(HeaderText, "^(?<key>[a-z0-9])(\s)?\:(\s)?(?<val>.+)", [{capture, [key, val], list}]) of
        nomatch ->
            Tokens = string:tokens(HeaderText, ":"),
            Pair = to_pair(Tokens),
            [Pair | parse_headers(Others)];
        {match,[K,V]} ->
            Pair = to_pair([K,V]),
            [Pair | parse_headers(Others)]
    end.


Original issue reported on code.google.com by [email protected] on 24 Feb 2014 at 2:49

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.