#if defined _INC_y_profiling
#endinput
#endif
#define _INC_y_profiling
/**
*
*
* Runs any functions named as profilings when the Profiling_Run function is called.
*
* 1.0
*
*//** *//*
Legal:
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 the "License"; you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
The Original Code is the YSI framework.
The Initial Developer of the Original Code is Alex "Y_Less" Cole.
Portions created by the Initial Developer are Copyright C 2011
the Initial Developer. All Rights Reserved.
Contributors:
Y_Less
koolk
JoeBullet/Google63
g_aSlice/Slice
Misiur
samphunter
tianmeta
maddinat0r
spacemud
Crayder
Dayvison
Ahmad45123
Zeex
irinel1996
Yiin-
Chaprnks
Konstantinos
Masterchen09
Southclaws
PatchwerkQWER
m0k1
paulommu
udan111
Thanks:
JoeBullet/Google63 - Handy arbitrary ASM jump code using SCTRL.
ZeeX - Very productive conversations.
koolk - IsPlayerinAreaEx code.
TheAlpha - Danish translation.
breadfish - German translation.
Fireburn - Dutch translation.
yom - French translation.
50p - Polish translation.
Zamaroht - Spanish translation.
Los - Portuguese translation.
Dracoblue, sintax, mabako, Xtreme, other coders - Producing other modes for
me to strive to better.
Pixels^ - Running XScripters where the idea was born.
Matite - Pestering me to release it and using it.
Very special thanks to:
Thiadmer - PAWN, whose limits continue to amaze me!
Kye/Kalcor - SA:MP.
SA:MP Team past, present and future - SA:MP.
Optional plugins:
Gamer_Z - GPS.
Incognito - Streamer.
Me - sscanf2, fixes2, Whirlpool.
*/
#include "y_debug"
#if defined YSI_PROFILINGS
#if defined INCLUDE_PROFILINGS
#error Incompatible profiling options (YSI_PROFILINGS + INCLUDE_PROFILINGS)
#endif
#if !defined RUN_PROFILINGS
#define RUN_PROFILINGS
#endif
#endif
#if defined INCLUDE_PROFILINGS
#define RUN_PROFILINGS
#define Debug_PrintP printf
#elseif defined RUN_PROFILINGS
#define _AUTO_RUN_PROFILINGS
#define Debug_PrintP printf
#else
#if _DEBUG > 0 || defined _YSI_SPECIAL_DEBUG
#define RUN_PROFILINGS
#define _AUTO_RUN_PROFILINGS
#define Debug_PrintP printf
#else
#define Debug_PrintP(%0);
#endif
#endif
#if defined LIGHT_PROFILE_REPORT
#define PROFILE_REPORT(%0) H@(%0)
#else
#define PROFILE_REPORT(%0) printf(%0)
#endif
#if defined RUN_PROFILINGS
#define ProfileInit:%0(%1) @yP_();@yP_()
#define Profile:%0(%1) __TZ:@y_P%0(%1);__TZ:@y_P%0(%1)RUN_TIMING(#%0)y_P@%0();static y_P@%0()
#define ProfileClose:%0(%1) @P_y();@P_y()
#define __TZ:%0[%2](%1);%0[%2](%1)RUN_TIMING(%3)%4[%5](%6);%9[%5](%6) %0_%2(%1);%0_%2(%1)RUN_TIMING(%3,%2)%4_%2(%6);static %4_%2(%6)
#else
#define ProfileInit:%0(%1) static stock yP_@()
#define Profile:%1() static stock __TZ:y_P@%1()
#define ProfileClose:%0(%1) static stock P_y@()
#define __TZ:%0[%2](%1) __TZ:%0_%2(%1)
#endif
#define @yP_%0\32; @yP_
#define @y_P%0\32; @y_P
#define @P_y%0\32; @P_y
#define yP_@%0\32; yP_@
#define y_P@%0\32; y_P@
#define P_y@%0\32; P_y@
// These all need to come AFTER the types are defined in case the have profilings.
#include "..\YSI_Internal\y_version"
#include "..\YSI_Storage\y_amx"
#include "..\YSI_Internal\y_shortfunc"
#include "y_debug"
#include "y_utils"
#include "..\YSI_Internal\y_natives"
#include "..\YSI_Coding\y_va"
#define Y_PROFILING_PROFILE_SEARCH _A<@y_P>
#define Y_PROFILING_INIT _C<@yP_>
#define Y_PROFILING_PROFILE _C<@y_P>
#define Y_PROFILING_CLOSE _C<@P_y>
static stock
bool:YSI_g_sInProfile = false;
/*-------------------------------------------------------------------------*//**
* Number of profilings run.
*
* Wether all profilings were sucessful or not.
*
*
* -
*
* native Profiling_Run(&profilings, &fails, buffer[33] = "");
*
*
*//*------------------------------------------------------------------------**/
stock bool:Profiling_Run(&profilings)
{
P:3("bool:Profiling_Run called: %i", profilings);
#if defined RUN_PROFILINGS
P:2("Profiling_Run() called");
new
idx,
buffer[32];
while ((idx = AMX_GetPublicNamePrefix(idx, buffer, Y_PROFILING_PROFILE_SEARCH)))
{
buffer[0] = Y_PROFILING_INIT,
CallLocalFunction(buffer, ""),
// Call the test.
buffer[0] = Y_PROFILING_PROFILE;
P:5("Profiling_Run(): Calling %s", unpack(buffer[1]));
YSI_g_sInProfile = true,
CallLocalFunction(buffer, ""),
YSI_g_sInProfile = false,
buffer[0] = Y_PROFILING_CLOSE,
CallLocalFunction(buffer, ""),
++profilings;
PROFILE_REPORT(" ");
}
#else
#pragma unused profilings
#endif
}
forward OnProfilingsComplete(profilings, fails);
#if defined RUN_PROFILINGS
#if defined _AUTO_RUN_PROFILINGS
#if defined FILTERSCRIPT
// Hook main in gamemodes.
public OnFilterScriptInit()
{
#if defined Profiling_OnFilterScriptInit
Profiling_OnFilterScriptInit();
#endif
Profiling_RunAll();
}
#if defined _ALS_OnFilterScriptInit
#undef OnFilterScriptInit
#else
#define _ALS_OnFilterScriptInit
#endif
#define OnFilterScriptInit Profiling_OnFilterScriptInit
#if defined Profiling_OnFilterScriptInit
forward Profiling_OnFilterScriptInit();
#endif
#else
// Hook main in gamemodes.
main()
{
#if defined Profiling_main
Profiling_main();
#endif
Profiling_RunAll();
}
#if defined _ALS_main
#undef main
#else
#define _ALS_main
#endif
#define main forward Profiling_main(); public Profiling_main
#endif
#endif
forward OnRuntimeError(code, &bool:suppress);
public OnRuntimeError(code, &bool:suppress)
{
if (YSI_g_sInProfile)
{
// Fail the current profile if we see any runtime errors. Requires the
// crashdetect plugin to function, but not to compile and run.
P:P("Error: Runtime error detected");
}
#if defined Profiling_OnRuntimeError
return Profiling_OnRuntimeError(code, suppress);
#else
return 1;
#endif
}
#if defined _ALS_OnRuntimeError
#undef OnRuntimeError
#else
#define _ALS_OnRuntimeError
#endif
#define OnRuntimeError Profiling_OnRuntimeError
#if defined Profiling_OnRuntimeError
forward Profiling_OnRuntimeError(code, &bool:suppress);
#endif
#endif
stock Profiling_RunAll()
{
// Disable error messages (as we're likely to generate them).
new
startTime,
endTime,
profilings;
// The timing will be inaccurate since it will include many prints, but it
// isn't that important to be accurate.
startTime = GetTickCount();
PROFILE_REPORT(" ");
PROFILE_REPORT(" ||========================|| ");
PROFILE_REPORT(" || STARTING PROFILINGS... || ");
PROFILE_REPORT(" ||========================|| ");
PROFILE_REPORT(" ");
Profiling_Run(profilings);
printf("*** Profilings: %d", profilings);
PROFILE_REPORT(" ");
PROFILE_REPORT(" ||======================|| ");
PROFILE_REPORT(" || PROFILINGS COMPLETE! || ");
PROFILE_REPORT(" ||======================|| ");
PROFILE_REPORT(" ");
endTime = GetTickCount();
printf("*** Time: %dms", endTime - startTime);
PROFILE_REPORT(" ");
CallLocalFunction("OnProfilingsComplete", "i", profilings);
#if defined PROFILE_AUTO_EXIT
SendRconCommand("exit");
#endif
}
#include "..\YSI_Internal\y_shortfunc"