Changeset 3744
- Timestamp:
- 05/08/07 17:47:41 (6 years ago)
- Location:
- platform/logService
- Files:
-
- 5 added
- 5 removed
- 3 modified
-
CosLwLogAdministrator.idl (deleted)
-
CosLwLogConsumer.idl (deleted)
-
CosLwLogProducer.idl (deleted)
-
CosLwLogService.idl (deleted)
-
CosLwLogStatus.idl (deleted)
-
LogAdministrator_impl.cpp (modified) (1 diff)
-
LogConsumer_impl.cpp (modified) (3 diffs)
-
LogConsumer_impl.h (modified) (1 diff)
-
LogService.idl (added)
-
LogServiceAdministrator.idl (added)
-
LogServiceConsumer.idl (added)
-
LogServiceProducer.idl (added)
-
LogServiceStatus.idl (added)
Legend:
- Unmodified
- Added
- Removed
-
platform/logService/LogAdministrator_impl.cpp
r3743 r3744 12 12 // Bad assumption, JTAP tests for 0 length log. 13 13 // 14 // Need to check for max size 15 // 14 16 15 17 if (size < 0) { 16 18 throw LogService::InvalidParam("Log size cannot be negative"); 19 } 20 else if (size > 50000) { 21 throw LogService::InvalidParam("Requested size is too large"); 17 22 } 18 23 -
platform/logService/LogConsumer_impl.cpp
r3743 r3744 42 42 // 43 43 44 return LogConsumer_impl::retrieve _records(currentId, howMany);44 return LogConsumer_impl::retrieveRecords(currentId, howMany); 45 45 } 46 46 … … 53 53 // 54 54 55 return LogConsumer_impl::retrieve _records(currentId, howMany);55 return LogConsumer_impl::retrieveRecords(currentId, howMany); 56 56 } 57 57 … … 64 64 // 65 65 66 return LogConsumer_impl::retrieve _records(currentId, howMany);66 return LogConsumer_impl::retrieveRecords(currentId, howMany); 67 67 } 68 68 -
platform/logService/LogConsumer_impl.h
r3743 r3744 27 27 valueList); 28 28 29 LogService::LogRecordSequence* retrieveRecordsByProducer _id(29 LogService::LogRecordSequence* retrieveRecordsByProducerId( 30 30 LogService::RecordId& currentId, CORBA::ULong& howMany, const 31 31 LogService::StringSeq& valueList);