(file) Return to todo.txt CVS log (file) (dir) Up to [Pegasus] / pegasus / doc / Attic

Diff for /pegasus/doc/Attic/todo.txt between version 1.15 and 1.25

version 1.15, 2001/06/12 03:16:11 version 1.25, 2001/07/06 04:27:20
Line 1 
Line 1 
 Urgent  
 ======  
  
     -   Add CIMOM handle to provider interface.      -   Revisit use of namespace v.s. objectName in all CIM operations.
  
     -   Fix case sensitivity problems in repository (just add an _Open method      -   What do we do when getInstance() is called and the nameSpace is
         that ignores the case of the file).          provided both as an argument and as part of the instance name?
  
     -   Add newly implemented repository operations to protocol and to      -   ReferenceNames should return classes not just instances?
         dispatcher.  
  
     -   Change INVALID_CLASS exceptions to NOT_FOUND (they're wrong in      -   Remove final const from const methods in non-const CIM element classes.
         Repository).  
  
     -   Add tracing of output HTTP messages.      -   Null vs. empty CIM/HTTP parameters.
  
     -   Need CIMInstance::removeMethod() and CIMInstance::removeProperty().      -   Resolve constness problems. (get rid or Const classes?)
     -   Add a exists namespace operation under the repository stuff.  Maybe we  
     need more than this.  
  
 Topical To-Do List      -   Change CIMReference to CIMObjectPath?
 ==================  
  
     -   Sun uses string message-ids. Pegasus uses integer.      -   Finish associations.
         Sun uses 2000.5.12.... format. Changed Pegasus to  
         use string message-ids. DONE.  
  
     -   Some clients send '\n\n' to terminate HTTP headers.      -   Provide CIMOM Context.
         We were only accepted '\r\n\r\n'. DONE.  
  
     -   Provide way of printing out command line options help from cimserver.      -   Complete conventions document.
  
     -   GetInstances() and GetClasses() need to use iterators on      -   The CIMServer.exe program should probably create the logs directory
         provider and repository end. Otherwise, all classes or instance          under PEGASUS_HOME.
         to be enumerated, must be sucked into memory.  
  
     -   Template bloat reduction.      -   Clean up exceptions.
  
     -   Use YACC on Linux.      -   Resolve redundancy in which the namespace is passed to certain methods
           (getClass) and the CIMReference itself may contain a namespace arguent.
  
     -   Need a tool to say which features are supported by a compiler.      -   Implement consistency and constraint checking on classes and instances.
  
     -   Support unloading of dynamic libraries (presently only load() is      -   Implement filtering (using includeQualifiers, localOnly, etc.)
         supported).  
  
 -   Instances:      -   Consider eliminating const CIM element classes.
  
     -   Implement CIMRepository::getProperty()      -   Support for NULL property lists (in interface and protocol).
  
     -   Implement CIMRepository::setProperty()      -   Rename tests (prepend "Test" to each test).
  
     -   Implement CIMRepository::deleteInstance()      -   Fix bug with cimserver.exe causing it to fail to start without te
           "-l" option.
  
     -   Implement CIMRepository::modifyInstance()      -   Resolve whether the backslash should be permitted in namespaces.
  
     -   Implement CIMRepository::enumerateInstances()      -   Create CIMOMContext (interface to CIMOM used b the provider).
  
     -   Implement CIMRepository::enumerateInstanceNames()      -   Define Encoding module interface.
  
     -   Handle inheritance in all instance operations.      -   Develop XMLEncodings module.
  
     -   Double check that all these operations work across protocol.      -   Develop BinaryEncodings module.
  
     -   Check that they have keys during validation.      -   Develop MOFEncodings module.
  
 -   Associations:      -   Employ BinaryEncodings module in repository (reduce disk usage).
  
     -   Implement CIMRepository::referencesOf()      -   Combine repository instances, classes, and qualifiers  into their
           respective files (to reduce the number of files).
  
     -   Implement CIMRepository::associatorsOf()      -   Employ an efficient indexing scheme in repository (B-trees or hashing).
  
     -   Implement protocol stubs for these operations.      -   Develop module manager: interface, lookup scheme, and loading scheme.
  
 -   Exceptions:      -   Package Encodings classes as a module.
  
     -   Force __FILE__ and __LINE__ argument on every usage of CIMException.      -   Finalize repository assocations.
  
     -   Clean up and consolidate exception classes.      -   Add association CIM/HTTP operations.
  
     -   Propagate underlying error messages across the CIM protocol.      -   Design association provider infrastructure.
  
 -   References:      -   Implement missing CIM protocol operations.
  
     -   Validate arguments to CIMReference compound constructor and modifiers.      -   Implement good observer module interface which allows different levels:
         (namespaces, hosts, classnames, and keybindings)  
  
     -   Be sure that escape sequences are handled inside of object names. For          -   Observation of client/CIMMOM connections/disconnection.
         example:  
  
             X.key1="Hello \"You\""          -   Observation of client/CIMOM communication.
  
 -   Protocol:          -   Observation of CIMOM/repository communication.
  
     -   Improve protocol tracing to show messages in both directions.          -   Observation of CIMOM/provider communication.
  
     -   The TCPChannel::writeN() method blocks when the client and server          -   Observation of CIMOM state transitions.
         are in the same process. That is because the client cannot read  
         anything as long as writeN() is blocked on a synchronous write.  
  
     -   Figure out how to handle getProperty() return type.      -   Pegasus providers for Sun WBEM Services.
  
     -   Provide ACE Channel implementation (for porting purposes)?      -   Pegasus providers for WMI.
  
     -   Handle PARAMETER.REFARRAY in Procotol?      -   Sun WBEM Services providers for Pegasus.
  
     -   Ignore extraneous XML elements (loosely valid).      -   CIM/HTTP Proxy for WMI.
  
 -   Porting:      -   Web Server/Pegasus Integration (use HTTP protocol capabilities of
           web server rather than Pegasus).
  
     -   Replace "std::something" with "STD(something)"      -   Add CIMRepository::namespaceExists() method.
  
     -   Replace "using namespace std" with "USING_NAMESPACE_PEGASUS"      -   Change HTTP message id's to this format: "YYYY.MM.DD.HH.MM.SS.NNNNN".
  
 -   Aesthetics/Consistency/Usability:      -   GetInstances() and GetClasses() need to use iterators on
           provider and repository end. Otherwise, all classes or instance
           to be enumerated, must be sucked into memory.
  
     -   Change getLength() and getSize() to just size(): "Brevity is the soul      -   Template bloat reduction.
         of genius and of Lingerie".  
  
     -   Add methods to get objects by their names, in addition to index. For      -   Need a tool to say which features are supported by a compiler.
         example:  
  
             CIMProperty CIMClass::getProperty(const String& name);      -   Support unloading of dynamic libraries (presently only load() is
           supported).
  
     -   Perform walkthrough to expose consistency problems.      -   Clean up and consolidate exception classes.
  
     -   Distinguish between private and public classes (otherwise, users may      -   Asynchronous socket writes in the CIMOM (need write enabled flags).
         come to depend on classes with unstable interfaces).  
  
 -   Documentation:      -   Handle PARAMETER.REFARRAY in Procotol?
  
     -   Suggest newlines after methods.      -   Implemented stream oriented XML parsing.
  
     -   Suggest use of "/** ... */" instead of "///"      -   Ignore extraneous XML elements (implement "loose validation" concept).
  
     -   Refine header file documentation.      -   Add methods to get objects by their names, in addition to index. For
           example:
  
     -   Write Pegasus Architecture Paper.              CIMProperty CIMClass::getProperty(const String& name);
  
     -   Integrate DOC++ with make system (put all docs in doc tree):      -   Distinguish between private and public classes (otherwise, users may
           come to depend on classes with unstable interfaces).
  
 -   Namespaces:      -   Walk through all code to expose consistency/aesthetic issues.
  
     -   Implement create and destroy namespace (according to the standard).      -   Provide ACE Channel implementation (for porting purposes)?
  
 -   Providers      -   Expand datatime (setCurrentTime() and comparison and increment
           functions).
  
     -   Add CIM-Server handles to provider interface.      -   Write Pegasus Architecture Paper.
  
     -   Implement MOF provider registration scheme (according to the     -   Implement MOF provider registration scheme (according to the
     standard).     standard).
  
 -   WBEM Query Language      -   WBEM Query Language and integration.
   
     -   Find someone to work on standard.  
   
     -   Implement leve-1 parser.  
   
 -   MOF compiler:  
   
     -   Work with Bob to identify work items.  
  
 -   Threading -   Threading
  
     -   Write thread queuing document (input and output thread queue per  
         provider).  
   
     -   Implement queuing.  
   
     -   Make reference counted objects thread safe (Mutexing and atomic  
         increments).  
   
 -   Connectors  
   
     -   Work out basic concepts (write paper).  
   
     -   Package up pegasus in Install Shield application.     -   Package up pegasus in Install Shield application.
  
       -   Internationalization: Handle UCS2 characters in XML
           (parsing and writing).
  
 -   Install      -   Export of repository to MOF.
   
     -   Need install mechanism for Unix and Windows.  
   
 -   Interoperability  
   
     -   Fix reported bugs.  
   
 -   Internationalization  
   
     -   Handle UCS2 characters in XML (parsing and writing).  
   
 -   Repository:  
   
     -   Export to MOF.  
   
 -   Miscellaneous  
  
     -   Change CompareNoCase() to String::compareNoCase().     -   Change CompareNoCase() to String::compareNoCase().
  
     -   Place configuration startup parameters in Repository (e.g., port).      -   Figure out how to handle CIM NULL values.
   
     -   Integrate logging  
   
     -   Figure out how to handle CIM null values.  
   
     -   Generalize iteration.  
  
     -   Figure out how inheritance of keys works.     -   Figure out how inheritance of keys works.
  
     -   Investiage weak assocations.     -   Investiage weak assocations.
  
     -   Provide conversions between DateTime and time_t.  
   
 -   Constraint hanlding  
   
     -   Enforce constraint qualifiers.     -   Enforce constraint qualifiers.
  
     -   Disallow resetting size of fixed length arrays.     -   Disallow resetting size of fixed length arrays.
  
 -   Optimization/Tuning  
   
     -   Shrink object sizes.     -   Shrink object sizes.
  
     -   Use lighter I/O system (than C++ streams).     -   Use lighter I/O system (than C++ streams).
Line 226 
Line 171 
  
     -   Optimize clear method on arrays (to not release memory).     -   Optimize clear method on arrays (to not release memory).
  
 -   Porting      -   Provide conversions between DateTime and time_t.
  
     -   Port to Solaris     -   Port to Solaris
  
     -   Port to HPUX      -   Support multiple providers of the extact same class.
           DiskController example and LanController.
     -   Port to AIX  
   
 -   Testing  
   
     -   Test case insensitivity of class names and qualifier names.  
   
     -   Run Purify on all sources (port to Sun first).  
   
     -   Run CIM/XML test suite.  
   
 -   Server  
   
     -   Use Service class in cimserver  
   
     -   Implement Service class on Unix (daemonization from Comer book).  
  
       -   SLP
               - Eliminate lib directory.


Legend:
Removed from v.1.15  
changed lines
  Added in v.1.25

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2