SspErrCode.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:14k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //-----------------------------------------------------------------------------
  2. // Ssperrcode.h
  3. //                                                  
  4. //
  5. //
  6. //  Copyright (c)1998 - 1999 Microsoft Corporation, All Rights Reserved
  7. //-----------------------------------------------------------------------------
  8. /************************************************************************************************
  9. |*                                                                                              *|
  10. |* Each error has been classified by several features which are severity, facility, action      *|
  11. |* object, and reason. Severity is the recoverability of the error, whether it was only the     *|
  12. |* call to the provider that failed or whether it's a symptom of a larger failure. Facility     *|
  13. |* is the facility that was being accessed when the failure occurred. Action is the action that *|
  14. |* failed. Object is the object that the action was being preformed on. And reason is the       *|
  15. |* reason for failure (which may or may not be known). In addition to the error code, the       *|
  16. |* error object (see SspError.h) also allows two other pieces to information to be returned,    *|
  17. |* a variant that describes the object (in some cases it may be the object) and a variant that  *|
  18. |* describes the reason. In many cases this will be an additional error code reported by a      *|
  19. |* a particular module.                                                                         *|
  20. |*                                                                                              *|
  21. ************************************************************************************************/
  22. // Error code bitfields:
  23. //
  24. //  31-30: Severity (2 bits)
  25. //  29-28: Reserved (2 bits)
  26. //  27-22: Facility (6 bits)
  27. //  21-16: Action   (6 bits)
  28. //  15- 8: Object   (8 bits)
  29. //   7- 0: Reason   (8 bits)
  30. #if !defined(__ssperrcode_H)
  31. #define      __ssperrcode_H
  32. #pragma once
  33. #define MKERR(S,F,A,O,R)  ((0x03UL & (S))<<30 | (0x3FUL & (F))<<22 | (0x3FUL & (A))<<16 |
  34. (0xFFUL & (O))<<8  | (0xFF & (R)))
  35. namespace SspEC
  36. {
  37.     const DWORD dwSMASK = MKERR(0xFF,0,0,0,0);
  38.     const DWORD dwFMASK = MKERR(0,0xFF,0,0,0);
  39.     const DWORD dwAMASK = MKERR(0,0,0xFF,0,0);
  40.     const DWORD dwOMASK = MKERR(0,0,0,0xFF,0);
  41.     const DWORD dwRMASK = MKERR(0,0,0,0,0xFF);
  42.     enum e_severity
  43.     {
  44.             S_NONE,
  45. S_FUNC,     // functional, can continue
  46. S_MINOR,    // minor system error, can use other functions of SMS
  47. S_MAJOR     // totally hosed, shut down
  48.     };
  49.     enum e_facility 
  50.     {
  51.             F_NONE, 
  52. F_INT,      // internal
  53. F_NET,      // network
  54. F_FILE,     // file
  55. F_COM,      // COM
  56. F_SQL,      // SQL
  57. F_CIMOM,    // CIMOM
  58. F_BC,       // base classes
  59. F_MEM,      // memory
  60. F_SEC,      // security
  61. F_REG       // registry
  62.     };
  63.     enum e_action
  64.     {
  65.             A_NONE,
  66. A_CREAT,    // create
  67. A_OPEN,     // open
  68. A_DEL,      // delete
  69. A_READ,     // read
  70. A_WRITE,    // write
  71. A_PERST,    //  persist     (create and write)
  72. A_INST,     // instantiate (open and read)
  73. A_VAL,      // validate
  74. A_EXEC,     // execute
  75. A_LOCK      // lock/unlock
  76.     };
  77.     enum e_object
  78.     {
  79.         O_NONE,
  80. O_FACILITY,
  81. O_DESCRIPTOR,
  82. O_DATAFILE,
  83. O_DIRECTORY,
  84. O_CONNECTION,
  85. O_TRANSACTION,
  86. O_PARAMETER,
  87. O_PROPERTY,
  88. O_METHOD,
  89. O_INSTANCE,
  90. O_DATA,
  91. O_RIGHTS,
  92. O_ROW,
  93. O_MEMORY,
  94. O_QUERY,
  95. O_COLLECTION,
  96. O_USER,
  97. O_FILELINE,
  98. O_RESOURCE
  99.     };
  100.     enum e_reason
  101.     {
  102.             R_NONE,          // no further information
  103. R_WINAPI,        // Win API failure, additional info is GetLastError()
  104. R_SQL,           // failure in call to SQL server, additional info is failure code
  105. R_COM,           // failure of call to COM method, additional info is HRESULT
  106. R_PDFERROR,      // PDF problem
  107. R_DISTSRC,       // problem with software distribution
  108. R_COLLERR,       // collection error
  109. R_TOKITSQL,      // Site control file SQL error
  110. R_TOKENITEM,     // Site control file error
  111. R_OFFERSRC,      // Advertisement error
  112. R_MFCFE,         // MFC CFileException, additional info is in cause code
  113. R_SITE,          // Site file error
  114. R_READONLY,      // attempt to write to read only object
  115. R_TIMEOUT,       // action timed out
  116. R_NOTFOUND,      // object not found - error object returns not found status when set
  117. R_ALREADYEXISTS, // object already exists
  118. R_BADHANDLE,     // invalid pointer or handle
  119. R_BADDATA,       // data is corrupt
  120. R_BADPARAM,      // bad parameter passed
  121. R_NETERR,        // network error
  122. R_NOTSUPPORTED,  // not supported - error object returns not supported status when set
  123. R_BADPROP,       // bad property
  124. R_INVALIDMTD,    // invalid method - error object returns invalid method status when set
  125. R_STATMSG,       // status message error
  126. R_FIELDNO,       // reason is field number starting at 0
  127. R_QUERYSRC       // problem with query object
  128.     };
  129.     inline DWORD MkErr(e_facility F, e_action A, e_object O, e_severity S=S_NONE, e_reason R=R_NONE)
  130.     {
  131.         return MKERR(S,F,A,O,R);
  132.     }
  133.     //**** Predefined error codes, these are the values we're actually using ****/
  134.     //                     some are used more than others
  135.     //
  136.     //**** NOTE: Reason bits may be set in the returned error code even if they are not
  137.     //           set below. Unless the reason bits are set in the code below, 
  138.     //           mask off the reason bits before comparing error codes.
  139.     const DWORD E_NONE(            MkErr(F_NONE, A_NONE,  O_NONE, S_NONE, R_NONE) );
  140.     // can't connect to the registry
  141.     const DWORD E_REG_CREAT_CONN( MkErr(F_REG,  A_CREAT, O_CONNECTION, S_MAJOR)  );
  142.     // can't get data from registry
  143.     const DWORD E_REG_OPEN_DATA(   MkErr(F_REG,  A_OPEN,  O_DATA,       S_MAJOR)  );
  144.     // can't connect to CIMOM
  145.     const DWORD E_CIMOM_CREAT_CONN( MkErr(F_REG, A_CREAT, O_CONNECTION, S_MAJOR)  );
  146.     // CoCreateInstance failed
  147.     const DWORD E_COM_CREAT_INST( MkErr(F_COM, A_CREAT, O_INSTANCE, S_MAJOR) );
  148.     const DWORD E_FILE_CREATE_DIR( MkErr(F_FILE, A_CREAT, O_DIRECTORY,S_MINOR)  );
  149.     const DWORD E_FILE_PERST_FILE( MkErr(F_FILE, A_PERST, O_DATAFILE,S_MINOR)   );
  150.     const DWORD E_FILE_INST_FILE(  MkErr(F_FILE, A_INST,  O_DATAFILE,S_MINOR)   );
  151.     const DWORD E_FILE_OPEN_FILE(  MkErr(F_FILE, A_OPEN,  O_DATAFILE,S_MINOR)   );
  152.     const DWORD E_FILE_WRITE_FILE( MkErr(F_FILE, A_WRITE, O_DATAFILE,S_MINOR)   );
  153.     const DWORD E_FILE_CREAT_FILE( MkErr(F_FILE, A_CREAT, O_DATAFILE,S_MINOR)   );
  154.     // can't create network connection
  155.     const DWORD E_NET_CREAT_CONN(  MkErr(F_NET,  A_CREAT, O_CONNECTION, S_MAJOR) );
  156.     // can't read from network connections
  157.     const DWORD E_NET_READ_CONN(   MkErr(F_NET,  A_READ,  O_CONNECTION, S_MAJOR) );
  158.     // can't allocate memory
  159.     const DWORD E_MEM_CREAT_MEM(   MkErr(F_MEM, A_CREAT,    O_MEMORY, S_MAJOR)     );
  160.     // can't validate parameter, bad parameter passed
  161.     const DWORD E_INT_VAL_PARAM(   MkErr(F_INT,  A_VAL,   O_PARAMETER, S_FUNC)  );
  162.     // can't validate data, internal data error
  163.     const DWORD E_INT_VAL_DATA(    MkErr(F_INT,  A_VAL,   O_DATA, S_MINOR)       );
  164.     // invalid method call
  165.     const DWORD E_INT_VAL_METHOD(  MkErr(F_INT, A_VAL,   O_METHOD, S_FUNC, R_INVALIDMTD)     );
  166.     // unsupported method
  167.     const DWORD E_INT_VAL_METHOD_NS(  MkErr(F_INT,  A_VAL,   O_METHOD, S_FUNC, R_NOTSUPPORTED)     );
  168.     // can't create object instance
  169.     const DWORD E_INT_CREAT_INST(  MkErr(F_INT,  A_CREAT, O_INSTANCE, S_MAJOR)   );
  170.     // can't get/find property in object
  171.     const DWORD E_INT_OPEN_PROP(   MkErr(F_INT,  A_OPEN,  O_PROPERTY, S_MINOR)   );
  172.     // instance passed in with bad properties
  173.     const DWORD E_INT_VAL_PARAM_BP( MkErr(F_INT, A_VAL, O_PARAMETER, S_FUNC, R_BADPROP) );
  174.     // can't write an instance of a read only class
  175.     const DWORD E_INT_WRITE_INST_RO(  MkErr(F_INT,  A_WRITE, O_INSTANCE, S_FUNC, R_READONLY) );
  176.     const DWORD E_INT_WRITE_INST(  MkErr(F_INT,  A_WRITE, O_INSTANCE, S_FUNC));
  177.     // can't create instance that already exists
  178.     const DWORD E_INT_CREAT_INST_AE(  MkErr(F_INT, A_CREAT, O_INSTANCE, S_FUNC, R_ALREADYEXISTS)  );
  179.     // can't update instance that doesn't exists
  180.     const DWORD E_INT_WRITE_INST_NF(  MkErr(F_INT, A_WRITE, O_INSTANCE, S_FUNC, R_NOTFOUND)  );
  181.     const DWORD E_INT_OPEN_INST( MkErr(F_INT, A_OPEN, O_INSTANCE, S_MINOR, R_NOTFOUND));
  182.     const DWORD E_INT_DEL_INST ( MkErr(F_INT, A_DEL,  O_INSTANCE, S_MINOR));
  183.     const DWORD E_INT_PERST_INST ( MkErr(F_INT, A_PERST, O_INSTANCE, S_MINOR));
  184.     
  185. // can't update collections
  186.     const DWORD E_INT_WRITE_COLL( MkErr(F_INT, A_WRITE, O_COLLECTION, S_MINOR) );
  187.     // can't verify collection (couldn't verify member class name)
  188.     const DWORD E_INT_VAL_COLL( MkErr(F_INT, A_VAL, O_COLLECTION, S_FUNC));
  189.     // could not lock the collection
  190.     const DWORD E_INT_LOCK_COLL(MkErr(F_INT, A_LOCK, O_COLLECTION, S_FUNC));
  191.     // bad WQL query/ can't parse query
  192.     const DWORD E_INT_VAL_QUERY( MkErr(F_INT, A_VAL, O_QUERY, S_FUNC) );
  193.     // unsupported query
  194.     const DWORD E_INT_VAL_QUERY_NS( MkErr(F_INT, A_VAL, O_QUERY, S_FUNC, R_NOTSUPPORTED) );
  195.     // can't get SQL connection
  196.     const DWORD E_SQL_CREAT_CONN(  MkErr(F_SQL, A_CREAT,    O_CONNECTION, S_MAJOR)  );
  197.     // general SQL problem
  198.     const DWORD E_SQL_VAL_CONN(    MkErr(F_SQL,  A_VAL,   O_CONNECTION, S_MAJOR)  );
  199.     // can't open transaction
  200.     const DWORD E_SQL_CREAT_TRANS( MkErr(F_SQL,  A_CREAT, O_TRANSACTION, S_MAJOR) );
  201.     // can't commit transaction
  202.     const DWORD E_SQL_WRITE_TRANS( MkErr(F_SQL,  A_WRITE, O_TRANSACTION, S_MAJOR) );
  203.     // can't exec stored procedure
  204.     const DWORD E_SQL_EXEC_METHOD( MkErr(F_SQL,  A_EXEC,  O_METHOD,     S_MAJOR) );
  205.     // can't exec query
  206.     const DWORD E_SQL_EXEC_QUERY(  MkErr(F_SQL,  A_EXEC,  O_QUERY,      S_MINOR) );
  207.     // can't find/retrieve row
  208.     const DWORD E_SQL_OPEN_ROW(    MkErr(F_SQL,  A_OPEN,  O_ROW,        S_MINOR) );
  209. // can't retrieve data
  210.     const DWORD E_SQL_READ_ROW(   MkErr(F_SQL,  A_WRITE, O_ROW,        S_MAJOR) );
  211.     // can't insert row
  212. const DWORD E_SQL_PERST_ROW(   MkErr(F_SQL,  A_PERST, O_ROW,        S_MINOR) );
  213.     // can't delete row
  214.     const DWORD E_SQL_DEL_ROW(     MkErr(F_SQL,  A_DEL,   O_ROW,        S_MINOR) );
  215.     // can't update row
  216.     const DWORD E_SQL_WRITE_ROW(   MkErr(F_SQL,  A_WRITE, O_ROW,        S_MINOR) );
  217.     // can't validate security rights
  218.     const DWORD E_SEC_VAL_RIGHT(   MkErr(F_SEC,  A_VAL,   O_RIGHTS, S_FUNC)     );
  219.     // can't initialize security descriptor
  220.     const DWORD E_SEC_CREAT_DESC(   MkErr(F_SEC,  A_INST,  O_DESCRIPTOR, S_MAJOR) );
  221.     // can't get rights for object
  222.     const DWORD E_SEC_OPEN_RIGHTS(  MkErr(F_SEC, A_OPEN,  O_RIGHTS, S_MINOR) );
  223.     // invalid user login
  224.     const DWORD E_SEC_VAL_USER(     MkErr(F_SEC, A_VAL,   O_USER, S_MINOR)   );
  225.     // Unable to get security source connection
  226.     const DWORD E_SEC_CREAT_CONN(   MkErr(F_SEC, A_CREAT, O_CONNECTION, S_MAJOR));
  227.     // Uncable to create instance of base class
  228.     const DWORD E_BC_CREAT_INST(    MkErr(F_BC, A_CREAT, O_INSTANCE, S_MAJOR));
  229. // Request to read Resource/Group data with missing or incorrect collection limiting
  230.     const DWORD E_SEC_READ_COLLLIMIT(   MkErr(F_SEC, A_READ, O_RESOURCE, S_MINOR));
  231.     // can't read/parse line of text file
  232.     const DWORD E_INT_READ_LINE( MkErr(F_INT,A_READ,O_FILELINE,S_FUNC) );
  233. };
  234. /********** PDF Error Code and Warnings  **********/
  235. // when the reason bits are set to R_PDFERROR, SMS_ExtendedStatus will be one of these error codes
  236. #define PDF_NO_ERROR                0
  237. #define PDF_ERROR                   1
  238. #define PDF_ERROR_FILENOTFOUND      2
  239. #define PDF_ERROR_NOTPDF            3   // The file is not a PDF file
  240. #define PDF_ERROR_VERSION           4   // The file is not of a recognized PDF version
  241. #define PDF_ERROR_FILEIO            7   // Couldn't read the file
  242. #define PDF_ERROR_ICON_FILEIO       8   // Couldn't read the file icon
  243. #define PDF_ERROR_MISSINGNAME       9   // The PDF file is missing the package Name key
  244. #define PDF_ERROR_MISSINGLANG       11  // The PDF file is missing the package Language key
  245. #define PDF_ERROR_MISSINGPUB        12  // The PDF file is missing the package Publisher key
  246. #define PDF_ERROR_NOPROGS           13  // The PDF file has no programs defined
  247. #define PDF_ERROR_MISSINGPROGINFO   14  // The PDF is missing required program keys (1.0 (SMS 1.2) only)
  248. #define PDF_ERROR_PROGRMISSINGNAME  16  // A program is missing the Name key
  249. #define PDF_ERROR_PROGMISSINGCMDLN  17  // A program is missing the CommandLine key
  250. #define PDF_ERROR_BADTYPE           18  // The PDF is of the wrong type (it's a client component PDF)
  251. #define PDF_ERROR_DATABASE          19  // Database error accessing the supported platforms table.
  252. #define PDF_ERROR_DUPPROGRAM        20  // There are two programs with the same name.
  253. #define PDF_ERROR_LAST              21
  254. // warning bits returned by SMS_PDF_Package.LoadPDF()
  255. #define BIT(N)                      (1UL<<(N))
  256. #define PDF_WARN_RUN                BIT(0)  // invalid Run info specified
  257. #define PDF_WARN_RESTART            BIT(1)  // invalid Restart info specified
  258. #define PDF_WARN_CANRUNWHEN         BIT(2)  // invalid AfterRunning info specified
  259. #define PDF_WARN_ASSIGNMENT         BIT(3)  // invalid Assignment info specified
  260. #define PDF_WARN_BADDEPNDPROG       BIT(4)  // invalid DependentProgram info specified
  261. #define PDF_WARN_BADDL              BIT(5)  // invalid SpecifyDrive info specified
  262. #define PDF_WARN_BADDISKSPREQ       BIT(6)  // invalid EstimatedDiskSpace info specified
  263. #define PDF_WARN_NOSUPCLINFO        BIT(7)  // no SupportedClients info specified
  264. #define PDF_WARN_BADSUPCLINFO       BIT(8)  // invalid SupportedClients info specified
  265. #define PDF_WARN_VER1PDF            BIT(9)  // version 1.0 file used
  266. #define PDF_WARN_REMPROGNOKEY       BIT(10) // RemoveProgram is set but no UninstallKey given
  267. #endif