123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "benc/Object.h"
- #include "dht/DHTMessage.h"
- #include "dht/DHTModule.h"
- #include "dht/DHTModuleRegistry.h"
- #include "memory/Allocator.h"
- #include "benc/serialization/standard/BencMessageReader.h"
- #include "benc/serialization/standard/BencMessageWriter.h"
- #include "util/Bits.h"
- #include "util/log/Log.h"
- #include "wire/Message.h"
- #define SERIALIZER StandardBencSerializer_get()
- struct SerializationModule_context {
- struct DHTModule module;
- struct Log* logger;
- };
- /*--------------------Prototypes--------------------*/
- static int handleOutgoing(struct DHTMessage* message,
- void* vcontext);
- static int handleIncoming(struct DHTMessage* message,
- void* vcontext);
- /*--------------------Interface--------------------*/
- void SerializationModule_register(struct DHTModuleRegistry* registry,
- struct Log* logger,
- struct Allocator* allocator)
- {
- struct SerializationModule_context* context =
- Allocator_malloc(allocator, sizeof(struct SerializationModule_context));
- Bits_memcpy(context, (&(struct SerializationModule_context) {
- .module = {
- .name = "SerializationModule",
- .context = context,
- .handleIncoming = handleIncoming,
- .handleOutgoing = handleOutgoing
- },
- .logger = logger
- }), sizeof(struct SerializationModule_context));
- DHTModuleRegistry_register(&(context->module), registry);
- }
- /*--------------------Internals--------------------*/
- /**
- * Take an outgoing message and serialize the bencoded message.
- *
- * @see DHTModule->handleOutgoing in DHTModules.h
- */
- static int handleOutgoing(struct DHTMessage* message,
- void* vcontext)
- {
- // This is always at the end of the message.
- Assert_true(!message->binMessage->length);
- Assert_true(!((uintptr_t)message->binMessage->bytes % 4) || !"alignment fault0");
- BencMessageWriter_write(message->asDict, message->binMessage, NULL);
- Assert_true(!((uintptr_t)message->binMessage->bytes % 4) || !"alignment fault");
- return 0;
- }
- /**
- * Take an incoming message and deserialize the bencoded message.
- *
- * @see DHTModule->handleIncoming in DHTModules.h
- */
- static int handleIncoming(struct DHTMessage* message,
- void* vcontext)
- {
- struct SerializationModule_context* context = vcontext;
- char* err =
- BencMessageReader_readNoExcept(message->binMessage, message->allocator, &message->asDict);
- if (err) {
- Log_info(context->logger, "Failed to parse message [%s]", err);
- return -2;
- }
- if (message->binMessage->length) {
- Log_info(context->logger, "Message contains [%d] bytes of crap at the end",
- (int)message->binMessage->length);
- }
- return 0;
- }
|