]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/tools/toolutil/udbgutil.h
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / tools / toolutil / udbgutil.h
index 0f4da6cbd7fdb7615a4effa73888ab42a1954f92..3f6ecb0c85ed5b21c7ebb5f56c68df84173b4636 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ************************************************************************
-* Copyright (c) 2008-2011, International Business Machines
+* Copyright (c) 2008-2015, International Business Machines
 * Corporation and others.  All Rights Reserved.
 ************************************************************************
 */
@@ -20,12 +20,14 @@ enum UDebugEnumType {
     UDBG_UCalendarMonths, /* UCalendarMonths. Count= (UCAL_UNDECIMBER+1) */
     UDBG_UDateFormatStyle, /* Count = UDAT_SHORT=1 */
 #endif
+#if UCONFIG_ENABLE_PLUGINS
     UDBG_UPlugReason,   /* Count = UPLUG_REASON_COUNT */
     UDBG_UPlugLevel,    /* COUNT = UPLUG_LEVEL_COUNT */
+#endif
     UDBG_UAcceptResult, /* Count = ULOC_ACCEPT_FALLBACK+1=3 */
-    
-    /* All following enums may be discontiguous. */ 
-    
+
+    /* All following enums may be discontiguous. */
+
 #if !UCONFIG_NO_COLLATION
     UDBG_UColAttributeValue,  /* UCOL_ATTRIBUTE_VALUE_COUNT */
 #endif
@@ -38,7 +40,7 @@ typedef enum UDebugEnumType UDebugEnumType;
 
 /**
  * @param type the type of enum
- * Print how many enums are contained for this type. 
+ * Print how many enums are contained for this type.
  * Should be equal to the appropriate _COUNT constant or there is an error. Return -1 if unsupported.
  */
 U_CAPI int32_t U_EXPORT2 udbg_enumCount(UDebugEnumType type);
@@ -54,13 +56,13 @@ U_CAPI const char * U_EXPORT2 udbg_enumName(UDebugEnumType type, int32_t field);
 /**
  * for consistency checking
  * @param type the type of enum
- * Print how many enums should be contained for this type. 
+ * Print how many enums should be contained for this type.
  * This is equal to the appropriate _COUNT constant or there is an error. Returns -1 if unsupported.
  */
 U_CAPI int32_t U_EXPORT2 udbg_enumExpectedCount(UDebugEnumType type);
 
 /**
- * For consistency checking, returns the expected enum ordinal value for the given index value. 
+ * For consistency checking, returns the expected enum ordinal value for the given index value.
  * @param type which type
  * @param field field number
  * @return should be equal to 'field' or -1 if out of range.
@@ -68,7 +70,7 @@ U_CAPI int32_t U_EXPORT2 udbg_enumExpectedCount(UDebugEnumType type);
 U_CAPI int32_t U_EXPORT2 udbg_enumArrayValue(UDebugEnumType type, int32_t field);
 
 /**
- * Locate the specified field value by name. 
+ * Locate the specified field value by name.
  * @param type which type
  * @param name name of string (case sensitive)
  * @return should be a field value or -1 if not found.
@@ -103,4 +105,49 @@ U_CAPI int32_t udbg_getSystemParameterValueByIndex(int32_t i, char *buffer, int3
  */
 U_CAPI void udbg_writeIcuInfo(FILE *f);
 
+/**
+ * \def UDBG_KNOWNISSUE_LEN
+ * Length of output buffer for udbg_knownIssueURLFrom
+ */
+#define UDBG_KNOWNISSUE_LEN 255
+
+/**
+ * Convert a "known issue" string into a URL
+ * @param ticket ticket string such as "10245" or "cldrbug:5013"
+ * @param buf output buffer - must be UDBG_KNOWNISSUE_LEN in size
+ * @return pointer to output buffer, or NULL on err
+ */
+U_CAPI char *udbg_knownIssueURLFrom(const char *ticket, char *buf);
+
+/**
+ * Open (or reopen) a 'known issue' table.
+ * @param ptr pointer to 'table'. Opaque.
+ * @return new or existing ptr
+ */
+U_CAPI void *udbg_knownIssue_openU(void *ptr, const char *ticket, char *where, const UChar *msg, UBool *firstForTicket,
+                                   UBool *firstForWhere);
+
+
+/**
+ * Open (or reopen) a 'known issue' table.
+ * @param ptr pointer to 'table'. Opaque.
+ * @return new or existing ptr
+ */
+U_CAPI void *udbg_knownIssue_open(void *ptr, const char *ticket, char *where, const char *msg, UBool *firstForTicket,
+                                   UBool *firstForWhere);
+
+/**
+ * Print 'known issue' table, to std::cout.
+ * @param ptr pointer from udbg_knownIssue
+ * @return TRUE if there were any issues.
+ */
+U_CAPI UBool udbg_knownIssue_print(void *ptr);
+
+/**
+ * Close 'known issue' table.
+ * @param ptr
+ */
+U_CAPI void udbg_knownIssue_close(void *ptr);
+
+
 #endif