Code Monkey home page Code Monkey logo

Comments (7)

luthir avatar luthir commented on July 25, 2024 1

Great work, thank you!
But, as far as I can see, there already was no problem with MessageType6 and MessageType8, since variable length field data has been as-is-encoded bytes type, not padded text. Also, instead of fixing MessageType14, MessageType17 was modified.
Please consider rework possibility #97

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024 1

Thanks again! 🥇

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

Yes, you are totally right. I will look into this.

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

Hey @luthir,

I patched this bug. I added a new keyword to the bit_field: variable_length. This is a boolean value that is False by default and that can be used to tell the encoder whether or not to add trailing padding (@) to text/data fields.

This affects messages of type 6, 8, 12, 17.

The output for this example program now produces the following output:

Driver program:

from pyais.encode import encode_msg
from pyais.messages import MessageType6, MessageType12

msg = MessageType6.create(mmsi='366053209', dest_mmsi='1111', data=b'TEST')
encoded = encode_msg(msg)
print(encoded)

msg = MessageType12.create(mmsi='366053209', dest_mmsi='1111', text='TEST')
encoded = encode_msg(msg)
print(encoded)

Result:

['!AIVDO,1,1,,A,65M67F@0015L001DAE=D,0*2D']
['!AIVDO,1,1,,A,<5M67F@0015LD5CD,0*59']

Before this fix, the same driver code produced the following output for type 12:

['!AIVDO,3,1,0,A,<5M67F@0015LD5CD00000000000000000000000000000000000000000000,0*6B', '!AIVDO,3,2,0,A,000000000000000000000000000000000000000000000000000000000000,0*15', '!AIVDO,3,3,0,A,000000000000000000000000000000000000000000000000,0*14']

This fix will be available shortly.

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

Can be installed with version 2.3.1

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

as far as I can see, there already was no problem with MessageType6 and MessageType8, since variable length field data has been as-is-encoded bytes type, not padded text

Technically, you are correct. Those messages were already correctly encoded. But because they are variable in length, I decided to set the flag variable_length=True even tough it doesn't change anything. True to the motto: "explicit is better than implicit".

Also, instead of fixing MessageType14, MessageType17 was modified.

For type 17 the same applies as for type 6 and 8. I wanted to make the intention explicit. The data field is variable in length. But I definitely forgot type 14. Nice catch!

from pyais.

luthir avatar luthir commented on July 25, 2024

Here is also a fix to broken test #98

from pyais.

Related Issues (20)

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.