Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 import sys
00019 import traceback
00020 from omniORB import any
00021
00022 import OpenRTM_aist
00023 import SDOPackage, SDOPackage__POA
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 def newNV(name, value):
00051 try:
00052 any_val = any.to_any(value)
00053 except:
00054 print "ERROR NVUtil.newNV : Can't convert to any. ", type(value)
00055 raise
00056
00057
00058 nv = SDOPackage.NameValue(name, any_val)
00059 return nv
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085 def copyFromProperties(nv, prop):
00086 keys = prop.propertyNames()
00087 keys_len = len(keys)
00088 nv_len = len(nv)
00089 if nv_len > 0:
00090 for i in range(nv_len):
00091 del nv[-1]
00092
00093 for i in range(keys_len):
00094 nv.append(newNV(keys[i], prop.getProperty(keys[i])))
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118 def copyToProperties(prop, nvlist):
00119 for nv in nvlist:
00120 try:
00121 val = str(any.from_any(nv.value, keep_structs=True))
00122 prop.setProperty(str(nv.name),val)
00123 except:
00124 print OpenRTM_aist.Logger.print_exception()
00125 pass
00126
00127
00128
00129
00130
00131
00132
00133
00134 class to_prop:
00135 def __init__(self):
00136 self._prop = OpenRTM_aist.Properties()
00137
00138 def __call__(self, nv):
00139 self._prop.setProperty(nv.name, nv.value)
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158 def toProperties(nv):
00159 p = OpenRTM_aist.CORBA_SeqUtil.for_each(nv, to_prop())
00160 return p._prop
00161
00162
00163
00164
00165
00166
00167
00168
00169 class nv_find:
00170 """
00171 """
00172
00173 def __init__(self, name):
00174 self._name = name
00175
00176 def __call__(self, nv):
00177 return str(self._name) == str(nv.name)
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204 def find(nv, name):
00205 index = OpenRTM_aist.CORBA_SeqUtil.find(nv, nv_find(name))
00206
00207 if index < 0:
00208 raise "Not found."
00209
00210 return nv[index].value
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229 def find_index(nv, name):
00230 return OpenRTM_aist.CORBA_SeqUtil.find(nv, nv_find(name))
00231
00232
00233
00234
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249 def isString(nv, name):
00250 try:
00251 value = find(nv, name)
00252 val = any.from_any(value, keep_structs=True)
00253 return type(val) == str
00254 except:
00255 return False
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276 def isStringValue(nv, name, value):
00277 if isString(nv, name):
00278 if toString(nv, name) == value:
00279 return True
00280 return False
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311 def toString(nv, name=None):
00312 if not name:
00313 str_ = [""]
00314 return dump_to_stream(str_, nv)
00315
00316 str_value = ""
00317 try:
00318 ret_value = find(nv, name)
00319 val = any.from_any(ret_value, keep_structs=True)
00320 if type(val) == str:
00321 str_value = val
00322 except:
00323 print OpenRTM_aist.Logger.print_exception()
00324 pass
00325
00326 return str_value
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350
00351
00352 def appendStringValue(nv, name, value):
00353 index = find_index(nv, name)
00354 if index >= 0:
00355 tmp_str = nv[index].value.value()
00356 values = OpenRTM_aist.split(tmp_str,",")
00357 find_flag = False
00358 for val in values:
00359 if val == value:
00360 find_flag = True
00361
00362 if not find_flag:
00363 tmp_str += ", "
00364 tmp_str += value
00365 nv[index].value = any.to_any(tmp_str)
00366 else:
00367 OpenRTM_aist.CORBA_SeqUtil.push_back(nv, newNV(name, value))
00368
00369 return True
00370
00371
00372
00373
00374
00375
00376
00377
00378
00379
00380
00381
00382
00383
00384
00385
00386 def append(dest, src):
00387 for i in range(len(src)):
00388 OpenRTM_aist.CORBA_SeqUtil.push_back(dest, src[i])
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398 def dump_to_stream(out, nv):
00399 for i in range(len(nv)):
00400 val = any.from_any(nv[i].value, keep_structs=True)
00401 if type(val) == str:
00402 out[0] += (nv[i].name + ": " + str(nv[i].value) + "\n")
00403 else:
00404 out[0] += (nv[i].name + ": not a string value \n")
00405
00406 return out[0]
00407
00408
00409
00410
00411
00412
00413
00414
00415
00416
00417
00418
00419
00420
00421
00422
00423 def dump(nv):
00424 out = [""]
00425 print dump_to_stream(out, nv)