1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
| import os
__author__ = 'Jacks gong' __date__ = 'Jan 4, 2015'
def has_set(line=''): has_set_method = '' if line.isspace(): return '' return has_set_method
def cache_obj(line=''): return ''
def file_list(rootDir): list = [] for root, dirs, files in os.walk(rootDir): for filespath in files: list.append(os.path.join(root, filespath)) return list
def is_java(path=''): return path.endswith('.java')
def is_valid_deal(line=''): return '__offset(' in line and 'public ' in line
def get_type(line=''): values = line.split(' ')
type_index = 0 for value in values: type_index += 1 if value == 'public': break
if type_index >= len(values): return ''
return values[type_index]
def get_value_name(line=''): values = line.split(' ')
for value in values: if not '(' in value: continue return value[:value.find('(')]
return ''
def is_list(line=''): return 'int j' in line[line.find('('):line.find(')')]
def get_offset(line=''): offset_pre = '__offset(' offset_nums = line[line.find(offset_pre) + len(offset_pre):] return offset_nums[:offset_nums.find(')')]
def get_base_type_object(type=''): if not type in base_type: return type return base_type_object[base_type.index(type)]
base_type = ('int', 'float', 'long', 'boolean', 'uint', 'byte', 'ulong') base_type_object = ('Integer', 'Float', 'Long', 'Boolean', 'Integer', 'Byte', 'Long')
def main(): flatc_path = raw_input('flatbuffer absolute path: ')
list = file_list(flatc_path)
for path in list: if not is_java(path): continue file_read = open(path) lines = file_read.readlines() file_read.close()
print(path) file_write = open(path, 'w')
for line in lines: while True: if line.isspace(): break
if not is_valid_deal(line): break
type = get_type(line) value_name = get_value_name(line) if type.isspace() or value_name.isspace(): break;
offset_nums = get_offset(line)
cache_name = value_name + '_cache'
if is_list(line): list_offset = 'list_' + value_name + '_offset' has_set_list_def = ' public int ' + list_offset + ' = -1;\n'
type_object = get_base_type_object(type); cache_def = ' public android.util.SparseArray<' + type_object + '> ' + cache_name + ' = new android.util.SparseArray<' + type_object + '>();\n'
origin_method_pre = line[0:line.index('{') + 1] + \ ' if ( ' + cache_name + '.get(j) != null ) { return ' + cache_name + '.get(j); } ' origin_method_mid = line[line.index('{') + 1: line.index('}')] origin_method_mid = origin_method_mid.replace('__offset', list_offset + ' != -1? ' + list_offset + ' : __offset') origin_method_mid = origin_method_mid.replace('return', type + ' value = ') origin_method_end = ' ' + list_offset + ' = o; ' + cache_name + '.put( j, value); return value; }' origin_method_def = origin_method_pre + origin_method_mid + origin_method_end + '\n'
has_set_method_pre = ' public boolean hasSet_' + value_name + '() { if ( ' + list_offset + ' != -1 ) { return ' + \ list_offset + ' != 0; } ' has_set_method_mid = list_offset + ' = __offset(' + offset_nums + '); ' has_set_method_end = 'return ' + list_offset + '!= 0; }'
has_set_method_def = has_set_method_pre + has_set_method_mid + has_set_method_end + '\n'
line = has_set_list_def + cache_def + origin_method_def + has_set_method_def; print(line)
break;
has_set_value_name = 'hasSetValue_' + value_name has_set_value_def = ' public boolean ' + has_set_value_name + ' = false; \n'
has_cache = 'has_' + value_name + '_cache' has_cache_def = ' public boolean ' + has_cache + ' = false;\n'
cache_def = ' public ' + type + ' ' + cache_name + ';\n'
origin_method_pre = line[0:line.index('{') + 1] + \ ' if ( ' + has_cache + ' ) { return ' + cache_name + '; } '
origin_method_mid = line[line.index('{') + 1: line.index('}')]
origin_method_mid = origin_method_mid.replace('return', cache_name + ' =')
origin_method_end = ' ' + has_cache + '= true; return ' + cache_name + '; }'
origin_method_def = origin_method_pre + origin_method_mid + origin_method_end + '\n'
has_set_method_pre = ' public boolean hasSet_' + value_name + '() { if ( ' + has_set_value_name + ' ) { return true; } '
has_set_method_mid = ' if ( ' + has_cache + ' ) { return ' + cache_name if type in base_type: has_set_method_mid += ' != 0; } int o = __offset(' + offset_nums + '); if (o == 0) { ' + \ has_cache + ' = true; ' + cache_name + ' = 0; return false; } ' else: has_set_method_mid += ' != null; } int o = __offset( ' + offset_nums + ' ); if (o == 0) { ' + \ has_cache + ' = true; ' + cache_name + ' = null; return false; } '
has_set_method_end = 'else { ' + has_set_value_name + ' = true; return true; } }';
has_set_method_def = has_set_method_pre + has_set_method_mid + has_set_method_end + '\n'
line = has_cache_def + cache_def + origin_method_def + has_set_value_def + has_set_method_def;
print(line) break; line += '\n' file_write.write(line)
file_write.close()
main()
|