diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-02 18:16:54 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-02 18:16:54 +0000 |
commit | 73578276afa8d64128d10a4b0ff9b7246b178cc3 (patch) | |
tree | 7d5d580d968a5d5432a75f4e49ba893bc1631c48 /libs | |
parent | 330c013475ee061585e944098c9855166874db53 (diff) |
libs/lmo: skip all entries with identical key and value when generating lmo archives
Diffstat (limited to 'libs')
-rw-r--r-- | libs/lmo/src/lmo_po2lmo.c | 44 |
1 files changed, 25 insertions, 19 deletions
diff --git a/libs/lmo/src/lmo_po2lmo.c b/libs/lmo/src/lmo_po2lmo.c index afe894e8e..380f18dd6 100644 --- a/libs/lmo/src/lmo_po2lmo.c +++ b/libs/lmo/src/lmo_po2lmo.c @@ -1,7 +1,7 @@ /* * lmo - Lua Machine Objects - PO to LMO conversion tool * - * Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.org> + * Copyright (C) 2009-2011 Jo-Philipp Wich <xm@subsignal.org> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -59,7 +59,6 @@ static int extract_string(const char *src, char *dest, int len) { off++; esc = 1; - } else if( src[pos] != '"' ) { @@ -85,6 +84,7 @@ int main(int argc, char *argv[]) int state = 0; int offset = 0; int length = 0; + uint32_t key_id, val_id; FILE *in; FILE *out; @@ -155,25 +155,31 @@ int main(int argc, char *argv[]) { if( strlen(key) > 0 && strlen(val) > 0 ) { - if( (entry = (lmo_entry_t *) malloc(sizeof(lmo_entry_t))) != NULL ) - { - memset(entry, 0, sizeof(entry)); - length = strlen(val) + ((4 - (strlen(val) % 4)) % 4); - - entry->key_id = htonl(sfh_hash(key, strlen(key))); - entry->val_id = htonl(sfh_hash(val, strlen(val))); - entry->offset = htonl(offset); - entry->length = htonl(strlen(val)); + key_id = sfh_hash(key, strlen(key)); + val_id = sfh_hash(val, strlen(val)); - print(val, length, 1, out); - offset += length; - - entry->next = head; - head = entry; - } - else + if( key_id != val_id ) { - die("Out of memory"); + if( (entry = (lmo_entry_t *) malloc(sizeof(lmo_entry_t))) != NULL ) + { + memset(entry, 0, sizeof(entry)); + length = strlen(val) + ((4 - (strlen(val) % 4)) % 4); + + entry->key_id = htonl(key_id); + entry->val_id = htonl(val_id); + entry->offset = htonl(offset); + entry->length = htonl(strlen(val)); + + print(val, length, 1, out); + offset += length; + + entry->next = head; + head = entry; + } + else + { + die("Out of memory"); + } } } |