generated from solar2d/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
3,270 additions
and
8 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
238 changes: 238 additions & 0 deletions
238
source/ios/Bugsnag.framework/Headers/BSG_KSCrashReportWriter.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,238 @@ | ||
// | ||
// BSG_KSCrashReportWriter.h | ||
// | ||
// Created by Karl Stenerud on 2012-01-28. | ||
// | ||
// Copyright (c) 2012 Karl Stenerud. All rights reserved. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall remain in place | ||
// in this source code. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
// | ||
|
||
/* Pointers to functions for writing to a crash report. All JSON types are | ||
* supported. | ||
*/ | ||
|
||
#ifndef HDR_BSG_KSCrashReportWriter_h | ||
#define HDR_BSG_KSCrashReportWriter_h | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#include <stdbool.h> | ||
#include <sys/types.h> | ||
|
||
/** | ||
* Encapsulates report writing functionality. | ||
*/ | ||
typedef struct BSG_KSCrashReportWriter { | ||
/** | ||
* Add a boolean element to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param value The value to add. | ||
*/ | ||
void (*addBooleanElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name, bool value); | ||
|
||
/** | ||
* Add a floating point element to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param value The value to add. | ||
*/ | ||
void (*addFloatingPointElement)( | ||
const struct BSG_KSCrashReportWriter *writer, const char *name, | ||
double value); | ||
|
||
/** | ||
* Add an integer element to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param value The value to add. | ||
*/ | ||
void (*addIntegerElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name, long long value); | ||
|
||
/** | ||
* Add an unsigned integer element to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param value The value to add. | ||
*/ | ||
void (*addUIntegerElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name, unsigned long long value); | ||
|
||
/** | ||
* Add a string element to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param value The value to add. | ||
*/ | ||
void (*addStringElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name, const char *value); | ||
|
||
/** | ||
* Add a string element from a text file to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param filePath The path to the file containing the value to add. | ||
*/ | ||
void (*addTextFileElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name, const char *filePath); | ||
|
||
/** | ||
* Add a JSON element from a text file to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param filePath The path to the file containing the value to add. | ||
*/ | ||
void (*addJSONFileElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name, const char *filePath); | ||
|
||
/** | ||
* Add a hex encoded data element to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param value A pointer to the binary data. | ||
* | ||
* @param length The length of the data. | ||
*/ | ||
void (*addDataElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name, const char *value, | ||
const size_t length); | ||
|
||
/** | ||
* Begin writing a hex encoded data element to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
*/ | ||
void (*beginDataElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name); | ||
|
||
/** | ||
* Append hex encoded data to the current data element in the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param value A pointer to the binary data. | ||
* | ||
* @param length The length of the data. | ||
*/ | ||
void (*appendDataElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *value, const size_t length); | ||
|
||
/** | ||
* Complete writing a hex encoded data element to the report. | ||
* | ||
* @param writer This writer. | ||
*/ | ||
void (*endDataElement)(const struct BSG_KSCrashReportWriter *writer); | ||
|
||
/** | ||
* Add a UUID element to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param value A pointer to the binary UUID data. | ||
*/ | ||
void (*addUUIDElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name, const unsigned char *value); | ||
|
||
/** | ||
* Add a preformatted JSON element to the report. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
* | ||
* @param value A pointer to the JSON data. | ||
*/ | ||
void (*addJSONElement)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name, const char *jsonElement); | ||
|
||
/** | ||
* Begin a new object container. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
*/ | ||
void (*beginObject)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name); | ||
|
||
/** | ||
* Begin a new array container. | ||
* | ||
* @param writer This writer. | ||
* | ||
* @param name The name to give this element. | ||
*/ | ||
void (*beginArray)(const struct BSG_KSCrashReportWriter *writer, | ||
const char *name); | ||
|
||
/** | ||
* Leave the current container, returning to the next higher level | ||
* container. | ||
* | ||
* @param writer This writer. | ||
*/ | ||
void (*endContainer)(const struct BSG_KSCrashReportWriter *writer); | ||
|
||
/** Internal contextual data for the writer */ | ||
void *context; | ||
|
||
} BSG_KSCrashReportWriter; | ||
|
||
typedef void (*BSG_KSReportWriteCallback)( | ||
const BSG_KSCrashReportWriter *writer); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif // HDR_KSCrashReportWriter_h |
Oops, something went wrong.