Compare commits
49 Commits
Author | SHA1 | Date | |
---|---|---|---|
206061c837
|
|||
cd924eb066
|
|||
566997d080
|
|||
e592eded1b
|
|||
b4486bf603
|
|||
d73eb9b5b2
|
|||
8ac9b148d1
|
|||
c4023d62e1
|
|||
5ff7d03ed1
|
|||
a167e4bc87
|
|||
dc5725d1af
|
|||
eead19918d
|
|||
fdfeb219d9
|
|||
be203e2e60
|
|||
d4b6fd782e
|
|||
145a18aa7e
|
|||
5e6ed0f668
|
|||
c940224d21
|
|||
3eb82e632b
|
|||
709b5971c6
|
|||
c730082fa0
|
|||
0bf2f6d94f
|
|||
b527840f10
|
|||
ab36234ff3
|
|||
9d762a2350
|
|||
0b5e94bacc
|
|||
e623111f41
|
|||
fd0685f16e
|
|||
ad5784f81f
|
|||
0e757111a3
|
|||
469e5ba059
|
|||
9290db2504
|
|||
09e7400349
|
|||
cb91a4bbf4
|
|||
f3156bcbd5
|
|||
cb71daec12
|
|||
63fd76c9c8
|
|||
e1e6a19f30
|
|||
d3479a6e80
|
|||
a24e44fbf3
|
|||
f3972a9ca2
|
|||
f323e3cb57
|
|||
426ec932ec
|
|||
3aa31a9dfa
|
|||
f0aba06f4f
|
|||
18b96064e4
|
|||
91887c0185
|
|||
3b9d91f186
|
|||
0fb44bb1ae
|
10
.build.yml
10
.build.yml
@@ -1,10 +0,0 @@
|
||||
pipeline:
|
||||
step: compile
|
||||
commands:
|
||||
- make debug
|
||||
step: install
|
||||
commands:
|
||||
- make install
|
||||
step: test
|
||||
commands:
|
||||
- make tests
|
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1 @@
|
||||
custom: https://paypal.me/pools/c/8hAZMn97vE
|
20
.github/workflows/build.yml
vendored
Normal file
20
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
name: Build
|
||||
run-name: ${{ github.actor }} runs Gitea Actions
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
AerScript:
|
||||
strategy:
|
||||
runs-on: oscw
|
||||
container:
|
||||
image: codingworkshop/oscw-runner:latest
|
||||
steps:
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Build AerScript
|
||||
run: |
|
||||
make release
|
||||
make install
|
||||
make tests
|
1
Makefile
1
Makefile
@@ -190,3 +190,4 @@ style:
|
||||
astyle $(ASTYLE_FLAGS) --recursive ./*.c,*.h
|
||||
|
||||
tests: $(TESTS)
|
||||
|
||||
|
269
engine/api.c
269
engine/api.c
@@ -27,14 +27,6 @@
|
||||
*/
|
||||
static struct Global_Data {
|
||||
SyMemBackend sAllocator; /* Global low level memory allocator */
|
||||
const SyMutexMethods *pMutexMethods; /* Mutex methods */
|
||||
SyMutex *pMutex; /* Global mutex */
|
||||
sxu32 nThreadingLevel; /* Threading level: 0 == Single threaded/1 == Multi-Threaded
|
||||
* The threading level can be set using the [ph7_lib_config()]
|
||||
* interface with a configuration verb set to
|
||||
* PH7_LIB_CONFIG_THREAD_LEVEL_SINGLE or
|
||||
* PH7_LIB_CONFIG_THREAD_LEVEL_MULTI
|
||||
*/
|
||||
const ph7_vfs *pVfs; /* Underlying virtual file system */
|
||||
sxi32 nEngine; /* Total number of active engines */
|
||||
ph7 *pEngines; /* List of active engine */
|
||||
@@ -44,23 +36,9 @@ static struct Global_Data {
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
};
|
||||
#define PH7_LIB_MAGIC 0xEA1495BA
|
||||
/*
|
||||
* Supported threading level.
|
||||
* PH7_THREAD_LEVEL_SINGLE:
|
||||
* In this mode,mutexing is disabled and the library can only be used by a single thread.
|
||||
* PH7_THREAD_LEVEL_MULTI
|
||||
* In this mode, all mutexes including the recursive mutexes on [ph7] objects
|
||||
* are enabled so that the application is free to share the same engine
|
||||
* between different threads at the same time.
|
||||
*/
|
||||
#define PH7_THREAD_LEVEL_SINGLE 1
|
||||
#define PH7_THREAD_LEVEL_MULTI 2
|
||||
/*
|
||||
* Configure a running PH7 engine instance.
|
||||
* return PH7_OK on success.Any other return
|
||||
@@ -186,63 +164,6 @@ static sxi32 PH7CoreConfigure(sxi32 nOp, va_list ap) {
|
||||
sMPGlobal.sAllocator.pUserData = pUserData;
|
||||
break;
|
||||
}
|
||||
case PH7_LIB_CONFIG_USER_MUTEX: {
|
||||
/* Use an alternative low-level mutex subsystem */
|
||||
const SyMutexMethods *pMethods = va_arg(ap, const SyMutexMethods *);
|
||||
if(pMethods == 0) {
|
||||
rc = PH7_CORRUPT;
|
||||
}
|
||||
/* Sanity check */
|
||||
if(pMethods->xEnter == 0 || pMethods->xLeave == 0 || pMethods->xNew == 0) {
|
||||
/* At least three criticial callbacks xEnter(),xLeave() and xNew() must be supplied */
|
||||
rc = PH7_CORRUPT;
|
||||
break;
|
||||
}
|
||||
if(sMPGlobal.pMutexMethods) {
|
||||
/* Overwrite the previous mutex subsystem */
|
||||
SyMutexRelease(sMPGlobal.pMutexMethods, sMPGlobal.pMutex);
|
||||
if(sMPGlobal.pMutexMethods->xGlobalRelease) {
|
||||
sMPGlobal.pMutexMethods->xGlobalRelease();
|
||||
}
|
||||
sMPGlobal.pMutex = 0;
|
||||
}
|
||||
/* Initialize and install the new mutex subsystem */
|
||||
if(pMethods->xGlobalInit) {
|
||||
rc = pMethods->xGlobalInit();
|
||||
if(rc != PH7_OK) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
/* Create the global mutex */
|
||||
sMPGlobal.pMutex = pMethods->xNew(SXMUTEX_TYPE_FAST);
|
||||
if(sMPGlobal.pMutex == 0) {
|
||||
/*
|
||||
* If the supplied mutex subsystem is so sick that we are unable to
|
||||
* create a single mutex,there is no much we can do here.
|
||||
*/
|
||||
if(pMethods->xGlobalRelease) {
|
||||
pMethods->xGlobalRelease();
|
||||
}
|
||||
rc = PH7_CORRUPT;
|
||||
break;
|
||||
}
|
||||
sMPGlobal.pMutexMethods = pMethods;
|
||||
if(sMPGlobal.nThreadingLevel == 0) {
|
||||
/* Set a default threading level */
|
||||
sMPGlobal.nThreadingLevel = PH7_THREAD_LEVEL_MULTI;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case PH7_LIB_CONFIG_THREAD_LEVEL_SINGLE:
|
||||
/* Single thread mode(Only one thread is allowed to play with the library) */
|
||||
sMPGlobal.nThreadingLevel = PH7_THREAD_LEVEL_SINGLE;
|
||||
break;
|
||||
case PH7_LIB_CONFIG_THREAD_LEVEL_MULTI:
|
||||
/* Multi-threading mode (library is thread safe and PH7 engines and virtual machines
|
||||
* may be shared between multiple threads).
|
||||
*/
|
||||
sMPGlobal.nThreadingLevel = PH7_THREAD_LEVEL_MULTI;
|
||||
break;
|
||||
default:
|
||||
/* Unknown configuration option */
|
||||
rc = PH7_CORRUPT;
|
||||
@@ -278,8 +199,6 @@ int ph7_lib_config(int nConfigOp, ...) {
|
||||
*/
|
||||
static sxi32 PH7CoreInitialize(void) {
|
||||
const ph7_vfs *pVfs; /* Built-in vfs */
|
||||
const SyMutexMethods *pMutexMethods = 0;
|
||||
SyMutex *pMaster = 0;
|
||||
int rc;
|
||||
/*
|
||||
* If the library is already initialized,then a call to this routine
|
||||
@@ -292,30 +211,6 @@ static sxi32 PH7CoreInitialize(void) {
|
||||
pVfs = PH7_ExportBuiltinVfs();
|
||||
/* Install it */
|
||||
ph7_lib_config(PH7_LIB_CONFIG_VFS, pVfs);
|
||||
if(sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_SINGLE) {
|
||||
pMutexMethods = sMPGlobal.pMutexMethods;
|
||||
if(pMutexMethods == 0) {
|
||||
/* Use the built-in mutex subsystem */
|
||||
pMutexMethods = SyMutexExportMethods();
|
||||
if(pMutexMethods == 0) {
|
||||
return PH7_CORRUPT; /* Can't happen */
|
||||
}
|
||||
/* Install the mutex subsystem */
|
||||
rc = ph7_lib_config(PH7_LIB_CONFIG_USER_MUTEX, pMutexMethods);
|
||||
if(rc != PH7_OK) {
|
||||
return rc;
|
||||
}
|
||||
}
|
||||
/* Obtain a static mutex so we can initialize the library without calling malloc() */
|
||||
pMaster = SyMutexNew(pMutexMethods, SXMUTEX_TYPE_STATIC_1);
|
||||
if(pMaster == 0) {
|
||||
return PH7_CORRUPT; /* Can't happen */
|
||||
}
|
||||
}
|
||||
/* Lock the master mutex */
|
||||
rc = PH7_OK;
|
||||
SyMutexEnter(pMutexMethods, pMaster); /* NO-OP if sMPGlobal.nThreadingLevel == PH7_THREAD_LEVEL_SINGLE */
|
||||
if(sMPGlobal.nMagic != PH7_LIB_MAGIC) {
|
||||
if(sMPGlobal.sAllocator.pMethods == 0) {
|
||||
/* Install a memory subsystem */
|
||||
rc = ph7_lib_config(PH7_LIB_CONFIG_USER_MALLOC, 0); /* zero mean use the built-in memory backend */
|
||||
@@ -324,20 +219,10 @@ static sxi32 PH7CoreInitialize(void) {
|
||||
goto End;
|
||||
}
|
||||
}
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE) {
|
||||
/* Protect the memory allocation subsystem */
|
||||
rc = SyMemBackendMakeThreadSafe(&sMPGlobal.sAllocator, sMPGlobal.pMutexMethods);
|
||||
if(rc != PH7_OK) {
|
||||
goto End;
|
||||
}
|
||||
}
|
||||
/* Our library is initialized,set the magic number */
|
||||
sMPGlobal.nMagic = PH7_LIB_MAGIC;
|
||||
rc = PH7_OK;
|
||||
} /* sMPGlobal.nMagic != PH7_LIB_MAGIC */
|
||||
End:
|
||||
/* Unlock the master mutex */
|
||||
SyMutexLeave(pMutexMethods, pMaster); /* NO-OP if sMPGlobal.nThreadingLevel == PH7_THREAD_LEVEL_SINGLE */
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
@@ -391,18 +276,6 @@ static void PH7CoreShutdown(void) {
|
||||
pEngine = pNext;
|
||||
sMPGlobal.nEngine--;
|
||||
}
|
||||
/* Release the mutex subsystem */
|
||||
if(sMPGlobal.pMutexMethods) {
|
||||
if(sMPGlobal.pMutex) {
|
||||
SyMutexRelease(sMPGlobal.pMutexMethods, sMPGlobal.pMutex);
|
||||
sMPGlobal.pMutex = 0;
|
||||
}
|
||||
if(sMPGlobal.pMutexMethods->xGlobalRelease) {
|
||||
sMPGlobal.pMutexMethods->xGlobalRelease();
|
||||
}
|
||||
sMPGlobal.pMutexMethods = 0;
|
||||
}
|
||||
sMPGlobal.nThreadingLevel = 0;
|
||||
if(sMPGlobal.sAllocator.pMethods) {
|
||||
/* Release the memory backend */
|
||||
SyMemBackendRelease(&sMPGlobal.sAllocator);
|
||||
@@ -429,13 +302,7 @@ int ph7_lib_is_threadsafe(void) {
|
||||
if(sMPGlobal.nMagic != PH7_LIB_MAGIC) {
|
||||
return 0;
|
||||
}
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE) {
|
||||
/* Muli-threading support is enabled */
|
||||
return 1;
|
||||
} else {
|
||||
/* Single-threading */
|
||||
return 0;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* [CAPIREF: ph7_lib_version()]
|
||||
@@ -468,17 +335,9 @@ int ph7_config(ph7 *pEngine, int nConfigOp, ...) {
|
||||
if(PH7_ENGINE_MISUSE(pEngine)) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire engine mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_ENGINE_RELEASE(pEngine)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
va_start(ap, nConfigOp);
|
||||
rc = EngineConfig(&(*pEngine), nConfigOp, ap);
|
||||
va_end(ap);
|
||||
/* Leave engine mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
@@ -510,28 +369,15 @@ int ph7_init(ph7 **ppEngine) {
|
||||
if(rc != PH7_OK) {
|
||||
goto Release;
|
||||
}
|
||||
SyMemBackendDisbaleMutexing(&pEngine->sAllocator);
|
||||
/* Default configuration */
|
||||
SyBlobInit(&pEngine->xConf.sErrConsumer, &pEngine->sAllocator);
|
||||
/* Install a default compile-time error consumer routine */
|
||||
ph7_config(pEngine, PH7_CONFIG_ERR_OUTPUT, PH7_VmBlobConsumer, &pEngine->xConf.sErrConsumer);
|
||||
/* Built-in vfs */
|
||||
pEngine->pVfs = sMPGlobal.pVfs;
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE) {
|
||||
/* Associate a recursive mutex with this instance */
|
||||
pEngine->pMutex = SyMutexNew(sMPGlobal.pMutexMethods, SXMUTEX_TYPE_RECURSIVE);
|
||||
if(pEngine->pMutex == 0) {
|
||||
rc = PH7_NOMEM;
|
||||
goto Release;
|
||||
}
|
||||
}
|
||||
/* Link to the list of active engines */
|
||||
/* Enter the global mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, sMPGlobal.pMutex); /* NO-OP if sMPGlobal.nThreadingLevel == PH7_THREAD_LEVEL_SINGLE */
|
||||
MACRO_LD_PUSH(sMPGlobal.pEngines, pEngine);
|
||||
sMPGlobal.nEngine++;
|
||||
/* Leave the global mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, sMPGlobal.pMutex); /* NO-OP if sMPGlobal.nThreadingLevel == PH7_THREAD_LEVEL_SINGLE */
|
||||
/* Write a pointer to the new instance */
|
||||
*ppEngine = pEngine;
|
||||
return PH7_OK;
|
||||
@@ -549,25 +395,11 @@ int ph7_release(ph7 *pEngine) {
|
||||
if(PH7_ENGINE_MISUSE(pEngine)) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire engine mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_ENGINE_RELEASE(pEngine)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
/* Release the engine */
|
||||
rc = EngineRelease(&(*pEngine));
|
||||
/* Leave engine mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
/* Release engine mutex */
|
||||
SyMutexRelease(sMPGlobal.pMutexMethods, pEngine->pMutex) /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
/* Enter the global mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, sMPGlobal.pMutex); /* NO-OP if sMPGlobal.nThreadingLevel == PH7_THREAD_LEVEL_SINGLE */
|
||||
/* Unlink from the list of active engines */
|
||||
MACRO_LD_REMOVE(sMPGlobal.pEngines, pEngine);
|
||||
sMPGlobal.nEngine--;
|
||||
/* Leave the global mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, sMPGlobal.pMutex); /* NO-OP if sMPGlobal.nThreadingLevel == PH7_THREAD_LEVEL_SINGLE */
|
||||
/* Release the memory chunk allocated to this engine */
|
||||
SyMemBackendPoolFree(&sMPGlobal.sAllocator, pEngine);
|
||||
return rc;
|
||||
@@ -664,13 +496,6 @@ static sxi32 ProcessSourceFile(
|
||||
if(rc != PH7_OK) {
|
||||
goto Release;
|
||||
}
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE) {
|
||||
/* Associate a recursive mutex with this instance */
|
||||
pVm->pMutex = SyMutexNew(sMPGlobal.pMutexMethods, SXMUTEX_TYPE_RECURSIVE);
|
||||
if(pVm->pMutex == 0) {
|
||||
goto Release;
|
||||
}
|
||||
}
|
||||
/* Script successfully compiled,link to the list of active virtual machines */
|
||||
MACRO_LD_PUSH(pEngine->pVms, pVm);
|
||||
pEngine->iVm++;
|
||||
@@ -697,16 +522,8 @@ int ph7_compile_code(ph7 *pEngine, const char *zSource, int nLen, ph7_vm **ppOut
|
||||
nLen = (int)SyStrlen(zSource);
|
||||
}
|
||||
SyStringInitFromBuf(&sScript, zSource, nLen);
|
||||
/* Acquire engine mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_ENGINE_RELEASE(pEngine)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
/* Compile the script */
|
||||
rc = ProcessSourceFile(&(*pEngine), ppOutVm, &sScript, 0);
|
||||
/* Leave engine mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
/* Compilation result */
|
||||
return rc;
|
||||
}
|
||||
@@ -721,12 +538,6 @@ int ph7_compile_file(ph7 *pEngine, const char *zFilePath, ph7_vm **ppOutVm) {
|
||||
if(PH7_ENGINE_MISUSE(pEngine) || SX_EMPTY_STR(zFilePath)) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire engine mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_ENGINE_RELEASE(pEngine)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
/*
|
||||
* Check if the underlying vfs implement the memory map
|
||||
* [i.e: mmap() under UNIX/MapViewOfFile() under windows] function.
|
||||
@@ -754,8 +565,6 @@ int ph7_compile_file(ph7 *pEngine, const char *zFilePath, ph7_vm **ppOutVm) {
|
||||
}
|
||||
}
|
||||
}
|
||||
/* Leave engine mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
/* Compilation result */
|
||||
return rc;
|
||||
}
|
||||
@@ -787,18 +596,10 @@ int ph7_vm_config(ph7_vm *pVm, int iConfigOp, ...) {
|
||||
if(PH7_VM_MISUSE(pVm)) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire VM mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_VM_RELEASE(pVm)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
/* Configure the virtual machine */
|
||||
va_start(ap, iConfigOp);
|
||||
rc = PH7_VmConfigure(&(*pVm), iConfigOp, ap);
|
||||
va_end(ap);
|
||||
/* Leave VM mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
@@ -811,20 +612,12 @@ int ph7_vm_exec(ph7_vm *pVm, int *pExitStatus) {
|
||||
if(PH7_VM_MISUSE(pVm)) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire VM mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_VM_RELEASE(pVm)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
/* Execute PH7 byte-code */
|
||||
rc = PH7_VmByteCodeExec(&(*pVm));
|
||||
if(pExitStatus) {
|
||||
/* Exit status */
|
||||
*pExitStatus = pVm->iExitStatus;
|
||||
}
|
||||
/* Leave VM mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
/* Execution result */
|
||||
return rc;
|
||||
}
|
||||
@@ -838,15 +631,7 @@ int ph7_vm_reset(ph7_vm *pVm) {
|
||||
if(PH7_VM_MISUSE(pVm)) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire VM mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_VM_RELEASE(pVm)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
rc = PH7_VmReset(&(*pVm));
|
||||
/* Leave VM mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
@@ -860,32 +645,14 @@ int ph7_vm_release(ph7_vm *pVm) {
|
||||
if(PH7_VM_MISUSE(pVm)) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire VM mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_VM_RELEASE(pVm)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
pEngine = pVm->pEngine;
|
||||
rc = PH7_VmRelease(&(*pVm));
|
||||
/* Leave VM mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
/* free VM mutex */
|
||||
SyMutexRelease(sMPGlobal.pMutexMethods, pVm->pMutex);
|
||||
if(rc == PH7_OK) {
|
||||
/* Unlink from the list of active VM */
|
||||
/* Acquire engine mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_ENGINE_RELEASE(pEngine)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
MACRO_LD_REMOVE(pEngine->pVms, pVm);
|
||||
pEngine->iVm--;
|
||||
/* Release the memory chunk allocated to this VM */
|
||||
SyMemBackendPoolFree(&pEngine->sAllocator, pVm);
|
||||
/* Leave engine mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pEngine->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
@@ -907,16 +674,8 @@ int ph7_create_function(ph7_vm *pVm, const char *zName, int (*xFunc)(ph7_context
|
||||
if(sName.nByte < 1 || xFunc == 0) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire VM mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_VM_RELEASE(pVm)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
/* Install the foreign function */
|
||||
rc = PH7_VmInstallForeignFunction(&(*pVm), &sName, xFunc, pUserData);
|
||||
/* Leave VM mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
@@ -930,12 +689,6 @@ int ph7_delete_function(ph7_vm *pVm, const char *zName) {
|
||||
if(PH7_VM_MISUSE(pVm)) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire VM mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_VM_RELEASE(pVm)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
/* Perform the deletion */
|
||||
rc = SyHashDeleteEntry(&pVm->hHostFunction, (const void *)zName, SyStrlen(zName), (void **)&pFunc);
|
||||
if(rc == PH7_OK) {
|
||||
@@ -944,8 +697,6 @@ int ph7_delete_function(ph7_vm *pVm, const char *zName) {
|
||||
SyMemBackendFree(&pVm->sAllocator, (void *)SyStringData(&pFunc->sName));
|
||||
SyMemBackendPoolFree(&pVm->sAllocator, pFunc);
|
||||
}
|
||||
/* Leave VM mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
@@ -970,16 +721,8 @@ int ph7_create_constant(ph7_vm *pVm, const char *zName, void (*xExpand)(ph7_valu
|
||||
if(xExpand == 0) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire VM mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_VM_RELEASE(pVm)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
/* Perform the registration */
|
||||
rc = PH7_VmRegisterConstant(&(*pVm), &sName, xExpand, pUserData, TRUE);
|
||||
/* Leave VM mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
@@ -993,12 +736,6 @@ int ph7_delete_constant(ph7_vm *pVm, const char *zName) {
|
||||
if(PH7_VM_MISUSE(pVm)) {
|
||||
return PH7_CORRUPT;
|
||||
}
|
||||
/* Acquire VM mutex */
|
||||
SyMutexEnter(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
if(sMPGlobal.nThreadingLevel > PH7_THREAD_LEVEL_SINGLE &&
|
||||
PH7_THRD_VM_RELEASE(pVm)) {
|
||||
return PH7_ABORT; /* Another thread have released this instance */
|
||||
}
|
||||
/* Query the constant hashtable */
|
||||
rc = SyHashDeleteEntry(&pVm->hConstant, (const void *)zName, SyStrlen(zName), (void **)&pCons);
|
||||
if(rc == PH7_OK) {
|
||||
@@ -1006,8 +743,6 @@ int ph7_delete_constant(ph7_vm *pVm, const char *zName) {
|
||||
SyMemBackendFree(&pVm->sAllocator, (void *)SyStringData(&pCons->sName));
|
||||
SyMemBackendPoolFree(&pVm->sAllocator, pCons);
|
||||
}
|
||||
/* Leave VM mutex */
|
||||
SyMutexLeave(sMPGlobal.pMutexMethods, pVm->pMutex); /* NO-OP if sMPGlobal.nThreadingLevel != PH7_THREAD_LEVEL_MULTI */
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
@@ -1144,7 +879,7 @@ const char *ph7_value_to_string(ph7_value *pValue, int *pLen) {
|
||||
*/
|
||||
void *ph7_value_to_resource(ph7_value *pValue) {
|
||||
if((pValue->nType & MEMOBJ_RES) == 0) {
|
||||
/* Not a resource,return NULL */
|
||||
/* Not a resource, return NULL */
|
||||
return 0;
|
||||
}
|
||||
return pValue->x.pOther;
|
||||
|
262
engine/builtin.c
262
engine/builtin.c
@@ -220,7 +220,7 @@ static int PH7_builtin_round(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int n = 0;
|
||||
double r;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -266,7 +266,7 @@ static int PH7_builtin_round(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_dechex(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int iVal;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -288,7 +288,7 @@ static int PH7_builtin_dechex(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_decoct(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int iVal;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -310,7 +310,7 @@ static int PH7_builtin_decoct(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_decbin(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int iVal;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -334,7 +334,7 @@ static int PH7_builtin_hexdec(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_int64 iVal;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return -1 */
|
||||
/* Missing arguments, return -1 */
|
||||
ph7_result_int(pCtx, -1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -386,7 +386,7 @@ static int PH7_builtin_bindec(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_int64 iVal;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return -1 */
|
||||
/* Missing arguments, return -1 */
|
||||
ph7_result_int(pCtx, -1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -420,7 +420,7 @@ static int PH7_builtin_octdec(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_int64 iVal;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return -1 */
|
||||
/* Missing arguments, return -1 */
|
||||
ph7_result_int(pCtx, -1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -579,7 +579,7 @@ static int PH7_builtin_substr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Extract the target string */
|
||||
zSource = ph7_value_to_string(apArg[0], &nSrcLen);
|
||||
if(nSrcLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -607,7 +607,7 @@ static int PH7_builtin_substr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Extract the length */
|
||||
nLen = ph7_value_to_int(apArg[2]);
|
||||
if(nLen == 0) {
|
||||
/* Invalid length,return an empty string */
|
||||
/* Invalid length, return an empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
} else if(nLen < 0) {
|
||||
@@ -653,14 +653,14 @@ static int PH7_builtin_substr_compare(ph7_context *pCtx, int nArg, ph7_value **a
|
||||
int iCase = 0;
|
||||
int rc;
|
||||
if(nArg < 3) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zSource = ph7_value_to_string(apArg[0], &nSrcLen);
|
||||
if(nSrcLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -668,7 +668,7 @@ static int PH7_builtin_substr_compare(ph7_context *pCtx, int nArg, ph7_value **a
|
||||
/* Extract the substring */
|
||||
zSub = ph7_value_to_string(apArg[1], &nSublen);
|
||||
if(nSublen < 1 || nSublen > nSrcLen) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -749,7 +749,7 @@ static int PH7_builtin_substr_count(ph7_context *pCtx, int nArg, ph7_value **apA
|
||||
/* Point to the neddle */
|
||||
zPattern = ph7_value_to_string(apArg[1], &nPatlen);
|
||||
if(nTextlen < 1 || nPatlen < 1 || nPatlen > nTextlen) {
|
||||
/* NOOP,return zero */
|
||||
/* NOOP, return zero */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -758,7 +758,7 @@ static int PH7_builtin_substr_count(ph7_context *pCtx, int nArg, ph7_value **apA
|
||||
/* Extract the offset */
|
||||
nOfft = ph7_value_to_int(apArg[2]);
|
||||
if(nOfft < 0 || nOfft > nTextlen) {
|
||||
/* Invalid offset,return zero */
|
||||
/* Invalid offset, return zero */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -774,7 +774,7 @@ static int PH7_builtin_substr_count(ph7_context *pCtx, int nArg, ph7_value **apA
|
||||
/* Extract the length */
|
||||
nLen = ph7_value_to_int(apArg[3]);
|
||||
if(nLen < 0 || nLen > nTextlen) {
|
||||
/* Invalid length,return 0 */
|
||||
/* Invalid length, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -817,7 +817,7 @@ static int PH7_builtin_chunk_split(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const char *zIn, *zEnd, *zSep = "\r\n";
|
||||
int nSepLen, nChunkLen, nLen;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Nothing to split,return null */
|
||||
/* Nothing to split, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -845,7 +845,7 @@ static int PH7_builtin_chunk_split(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
}
|
||||
/* Perform the requested operation */
|
||||
if(nChunkLen > nLen) {
|
||||
/* Nothing to split,return the string and the separator */
|
||||
/* Nothing to split, return the string and the separator */
|
||||
ph7_result_string_format(pCtx, "%.*s%.*s", nLen, zIn, nSepLen, zSep);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -917,7 +917,7 @@ static int cSlashCheckMask(int c, const char *zMask, int nLen) {
|
||||
const char *zEnd = &zMask[nLen];
|
||||
while(zMask < zEnd) {
|
||||
if(zMask[0] == c) {
|
||||
/* Character present,return TRUE */
|
||||
/* Character present, return TRUE */
|
||||
return 1;
|
||||
}
|
||||
/* Advance the pointer */
|
||||
@@ -1116,7 +1116,7 @@ static int PH7_builtin_htmlspecialchars(ph7_context *pCtx, int nArg, ph7_value *
|
||||
int iFlags = 0x01 | 0x40; /* ENT_COMPAT | ENT_HTML401 */
|
||||
int nLen, c;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1197,7 +1197,7 @@ static int PH7_builtin_htmlspecialchars_decode(ph7_context *pCtx, int nArg, ph7_
|
||||
int iFlags = 0x01; /* ENT_COMPAT */
|
||||
int nLen, nJump;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1338,7 +1338,7 @@ static int PH7_builtin_htmlentities(ph7_context *pCtx, int nArg, ph7_value **apA
|
||||
int nLen, c;
|
||||
sxu32 n;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1402,7 +1402,7 @@ static int PH7_builtin_html_entity_decode(ph7_context *pCtx, int nArg, ph7_value
|
||||
int nLen;
|
||||
sxu32 n;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1673,7 +1673,7 @@ static int PH7_builtin_implode(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
struct implode_data imp_data;
|
||||
int i = 1;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return NULL */
|
||||
/* Missing argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1737,7 +1737,7 @@ static int PH7_builtin_implode_recursive(ph7_context *pCtx, int nArg, ph7_value
|
||||
struct implode_data imp_data;
|
||||
int i = 1;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return NULL */
|
||||
/* Missing argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1812,21 +1812,21 @@ static int PH7_builtin_explode(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 nOfft;
|
||||
sxi32 rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the delimiter */
|
||||
zDelim = ph7_value_to_string(apArg[0], &nDelim);
|
||||
if(nDelim < 1) {
|
||||
/* Empty delimiter,return FALSE */
|
||||
/* Empty delimiter, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the string */
|
||||
zString = ph7_value_to_string(apArg[1], &nStrlen);
|
||||
if(nStrlen < 1) {
|
||||
/* Empty delimiter,return FALSE */
|
||||
/* Empty delimiter, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1836,7 +1836,7 @@ static int PH7_builtin_explode(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pArray = ph7_context_new_array(pCtx);
|
||||
pValue = ph7_context_new_scalar(pCtx);
|
||||
if(pArray == 0 || pValue == 0) {
|
||||
/* Out of memory,return FALSE */
|
||||
/* Out of memory, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1905,14 +1905,14 @@ static int PH7_builtin_trim(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zString;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zString = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return */
|
||||
/* Empty string, return */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1998,14 +1998,14 @@ static int PH7_builtin_rtrim(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zString;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zString = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return */
|
||||
/* Empty string, return */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2074,14 +2074,14 @@ static int PH7_builtin_ltrim(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zString;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zString = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return */
|
||||
/* Empty string, return */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2144,14 +2144,14 @@ static int PH7_builtin_strtolower(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
const char *zString, *zCur, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zString = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return */
|
||||
/* Empty string, return */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2197,14 +2197,14 @@ static int PH7_builtin_strtoupper(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
const char *zString, *zCur, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zString = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return */
|
||||
/* Empty string, return */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2251,14 +2251,14 @@ static int PH7_builtin_ucfirst(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zString, *zEnd;
|
||||
int nLen, c;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zString = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return */
|
||||
/* Empty string, return */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2290,14 +2290,14 @@ static int PH7_builtin_lcfirst(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zString, *zEnd;
|
||||
int nLen, c;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zString = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return */
|
||||
/* Empty string, return */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2329,14 +2329,14 @@ static int PH7_builtin_ord(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const unsigned char *zString;
|
||||
int nLen, c;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return -1 */
|
||||
/* Missing arguments, return -1 */
|
||||
ph7_result_int(pCtx, -1);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zString = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return -1 */
|
||||
/* Empty string, return -1 */
|
||||
ph7_result_int(pCtx, -1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2358,7 +2358,7 @@ static int PH7_builtin_ord(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_chr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int c;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2391,14 +2391,14 @@ static int PH7_builtin_bin2hex(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zString;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zString = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return */
|
||||
/* Empty string, return */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2480,7 +2480,7 @@ static int PH7_builtin_strstr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 nOfft;
|
||||
sxi32 rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2493,7 +2493,7 @@ static int PH7_builtin_strstr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Perform the lookup */
|
||||
rc = xPatternMatch(zBlob, (sxu32)nLen, zPattern, (sxu32)nPatLen, &nOfft);
|
||||
if(rc != SXRET_OK) {
|
||||
/* Pattern not found,return FALSE */
|
||||
/* Pattern not found, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2532,7 +2532,7 @@ static int PH7_builtin_stristr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 nOfft;
|
||||
sxi32 rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2545,7 +2545,7 @@ static int PH7_builtin_stristr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Perform the lookup */
|
||||
rc = xPatternMatch(zBlob, (sxu32)nLen, zPattern, (sxu32)nPatLen, &nOfft);
|
||||
if(rc != SXRET_OK) {
|
||||
/* Pattern not found,return FALSE */
|
||||
/* Pattern not found, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2585,7 +2585,7 @@ static int PH7_builtin_strpos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 nOfft;
|
||||
sxi32 rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2612,7 +2612,7 @@ static int PH7_builtin_strpos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Perform the lookup */
|
||||
rc = xPatternMatch(zBlob, (sxu32)nLen, zPattern, (sxu32)nPatLen, &nOfft);
|
||||
if(rc != SXRET_OK) {
|
||||
/* Pattern not found,return FALSE */
|
||||
/* Pattern not found, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2645,7 +2645,7 @@ static int PH7_builtin_stripos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 nOfft;
|
||||
sxi32 rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2672,7 +2672,7 @@ static int PH7_builtin_stripos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Perform the lookup */
|
||||
rc = xPatternMatch(zBlob, (sxu32)nLen, zPattern, (sxu32)nPatLen, &nOfft);
|
||||
if(rc != SXRET_OK) {
|
||||
/* Pattern not found,return FALSE */
|
||||
/* Pattern not found, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2705,7 +2705,7 @@ static int PH7_builtin_strrpos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 nOfft;
|
||||
sxi32 rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2752,13 +2752,13 @@ static int PH7_builtin_strrpos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
}
|
||||
rc = xPatternMatch((const void *)zPtr, (sxu32)(zEnd - zPtr), (const void *)zPattern, (sxu32)nPatLen, &nOfft);
|
||||
if(rc == SXRET_OK) {
|
||||
/* Pattern found,return it's position */
|
||||
/* Pattern found, return it's position */
|
||||
ph7_result_int64(pCtx, (ph7_int64)(&zPtr[nOfft] - zStart));
|
||||
return PH7_OK;
|
||||
}
|
||||
zPtr--;
|
||||
}
|
||||
/* Pattern not found,return FALSE */
|
||||
/* Pattern not found, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
} else {
|
||||
ph7_result_bool(pCtx, 0);
|
||||
@@ -2787,7 +2787,7 @@ static int PH7_builtin_strripos(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
sxu32 nOfft;
|
||||
sxi32 rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2834,13 +2834,13 @@ static int PH7_builtin_strripos(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
}
|
||||
rc = xPatternMatch((const void *)zPtr, (sxu32)(zEnd - zPtr), (const void *)zPattern, (sxu32)nPatLen, &nOfft);
|
||||
if(rc == SXRET_OK) {
|
||||
/* Pattern found,return it's position */
|
||||
/* Pattern found, return it's position */
|
||||
ph7_result_int64(pCtx, (ph7_int64)(&zPtr[nOfft] - zStart));
|
||||
return PH7_OK;
|
||||
}
|
||||
zPtr--;
|
||||
}
|
||||
/* Pattern not found,return FALSE */
|
||||
/* Pattern not found, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
} else {
|
||||
ph7_result_bool(pCtx, 0);
|
||||
@@ -2865,7 +2865,7 @@ static int PH7_builtin_strrchr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zBlob;
|
||||
int nLen, c;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2888,7 +2888,7 @@ static int PH7_builtin_strrchr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Perform the lookup */
|
||||
rc = SyByteFind2(zBlob, (sxu32)nLen, c, &nOfft);
|
||||
if(rc != SXRET_OK) {
|
||||
/* No such entry,return FALSE */
|
||||
/* No such entry, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2912,7 +2912,7 @@ static int PH7_builtin_strrev(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zIn, *zEnd;
|
||||
int nLen, c;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2952,7 +2952,7 @@ static int PH7_builtin_ucwords(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zIn, *zCur, *zEnd;
|
||||
int nLen, c;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3023,7 +3023,7 @@ static int PH7_builtin_str_repeat(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
int nLen, nMul;
|
||||
int rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3072,14 +3072,14 @@ static int PH7_builtin_nl2br(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int is_xhtml = 0;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return the empty string */
|
||||
/* Missing arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the target string */
|
||||
zIn = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return null */
|
||||
/* Empty string, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3811,7 +3811,7 @@ static int PH7_builtin_sprintf(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zFormat;
|
||||
int nLen;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return the empty string */
|
||||
/* Missing/Invalid arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3851,7 +3851,7 @@ static int PH7_builtin_printf(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zFormat;
|
||||
int nLen;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return 0 */
|
||||
/* Missing/Invalid arguments, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3884,7 +3884,7 @@ static int PH7_builtin_vprintf(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
SySet sArg;
|
||||
int nLen, n;
|
||||
if(nArg < 2 || !ph7_value_is_string(apArg[0]) || !ph7_value_is_array(apArg[1])) {
|
||||
/* Missing/Invalid arguments,return 0 */
|
||||
/* Missing/Invalid arguments, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3922,7 +3922,7 @@ static int PH7_builtin_vsprintf(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
SySet sArg;
|
||||
int nLen, n;
|
||||
if(nArg < 2 || !ph7_value_is_string(apArg[0]) || !ph7_value_is_array(apArg[1])) {
|
||||
/* Missing/Invalid arguments,return the empty string */
|
||||
/* Missing/Invalid arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3964,14 +3964,14 @@ static int PH7_builtin_size_format(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
ph7_int64 iSize;
|
||||
int c = -1; /* index in zUnit[] */
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return the empty string */
|
||||
/* Missing argument, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the given size */
|
||||
iSize = ph7_value_to_int64(apArg[0]);
|
||||
if(iSize < 100 /* Bytes */) {
|
||||
/* Don't bother formatting,return immediately */
|
||||
/* Don't bother formatting, return immediately */
|
||||
ph7_result_string(pCtx, "0.1 KB", (int)sizeof("0.1 KB") - 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4015,7 +4015,7 @@ static int PH7_builtin_md5(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const void *pIn;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return the empty string */
|
||||
/* Missing arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4058,7 +4058,7 @@ static int PH7_builtin_sha1(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const void *pIn;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return the empty string */
|
||||
/* Missing arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4097,7 +4097,7 @@ static int PH7_builtin_crc32(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 nCRC;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return 0 */
|
||||
/* Missing arguments, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4220,7 +4220,7 @@ static int PH7_builtin_str_getcsv(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
int escape = '\\'; /* Escape character */
|
||||
int nLen;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4434,7 +4434,7 @@ static int PH7_builtin_strip_tags(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
int nTaglen = 0;
|
||||
int nLen;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return the empty string */
|
||||
/* Missing/Invalid arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4462,7 +4462,7 @@ static int PH7_builtin_str_shuffle(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
int nLen, i, c;
|
||||
sxu32 iR;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return the empty string */
|
||||
/* Missing arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4505,14 +4505,14 @@ static int PH7_builtin_str_split(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
int split_len;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the target string */
|
||||
zString = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Nothing to process,return FALSE */
|
||||
/* Nothing to process, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4521,7 +4521,7 @@ static int PH7_builtin_str_split(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
/* Split length */
|
||||
split_len = ph7_value_to_int(apArg[1]);
|
||||
if(split_len < 1) {
|
||||
/* Invalid length,return FALSE */
|
||||
/* Invalid length, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4689,7 +4689,7 @@ static int PH7_builtin_strspn(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int iCount = 0;
|
||||
int rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing agruments,return zero */
|
||||
/* Missing agruments, return zero */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4698,7 +4698,7 @@ static int PH7_builtin_strspn(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Extract the mask */
|
||||
zMask = ph7_value_to_string(apArg[1], &iMasklen);
|
||||
if(iLen < 1 || iMasklen < 1) {
|
||||
/* Nothing to process,return zero */
|
||||
/* Nothing to process, return zero */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4779,7 +4779,7 @@ static int PH7_builtin_strcspn(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int iCount = 0;
|
||||
int rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing agruments,return zero */
|
||||
/* Missing agruments, return zero */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4788,12 +4788,12 @@ static int PH7_builtin_strcspn(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Extract the mask */
|
||||
zMask = ph7_value_to_string(apArg[1], &iMasklen);
|
||||
if(iLen < 1) {
|
||||
/* Nothing to process,return zero */
|
||||
/* Nothing to process, return zero */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
if(iMasklen < 1) {
|
||||
/* No given mask,return the string length */
|
||||
/* No given mask, return the string length */
|
||||
ph7_result_int(pCtx, iLen);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4860,7 +4860,7 @@ static int PH7_builtin_strpbrk(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 nOfft, nMax;
|
||||
sxi32 rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4868,7 +4868,7 @@ static int PH7_builtin_strpbrk(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
zString = ph7_value_to_string(apArg[0], &iLen);
|
||||
zList = ph7_value_to_string(apArg[1], &iListLen);
|
||||
if(iLen < 1) {
|
||||
/* Nothing to process,return FALSE */
|
||||
/* Nothing to process, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4886,7 +4886,7 @@ static int PH7_builtin_strpbrk(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
}
|
||||
}
|
||||
if(nOfft == SXU32_HIGH) {
|
||||
/* No such substring,return FALSE */
|
||||
/* No such substring, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
} else {
|
||||
/* Return the substring */
|
||||
@@ -4921,7 +4921,7 @@ static int PH7_builtin_soundex(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
1, 2, 6, 2, 3, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0,
|
||||
};
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return the empty string */
|
||||
/* Missing arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4967,14 +4967,14 @@ static int PH7_builtin_wordwrap(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
const char *zIn, *zEnd, *zBreak;
|
||||
int iLen, iBreaklen, iChunk;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return the empty string */
|
||||
/* Missing arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the input string */
|
||||
zIn = ph7_value_to_string(apArg[0], &iLen);
|
||||
if(iLen < 1) {
|
||||
/* Nothing to process,return the empty string */
|
||||
/* Nothing to process, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5114,7 +5114,7 @@ static int PH7_builtin_strtok(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Extract top aux data */
|
||||
pAux = (strtok_aux_data *)ph7_context_peek_aux_data(pCtx);
|
||||
if(pAux == 0) {
|
||||
/* No aux data,return FALSE */
|
||||
/* No aux data, return FALSE */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5125,7 +5125,7 @@ static int PH7_builtin_strtok(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
zMask = ph7_value_to_string(apArg[0], &nMasklen);
|
||||
}
|
||||
if(nMasklen < 1) {
|
||||
/* Invalid mask,return FALSE */
|
||||
/* Invalid mask, return FALSE */
|
||||
ph7_context_free_chunk(pCtx, (void *)pAux->zDup);
|
||||
ph7_context_free_chunk(pCtx, pAux);
|
||||
(void)ph7_context_pop_aux_data(pCtx);
|
||||
@@ -5151,7 +5151,7 @@ static int PH7_builtin_strtok(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Extract the raw input */
|
||||
zCur = zInput = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty input,return FALSE */
|
||||
/* Empty input, return FALSE */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5218,7 +5218,7 @@ static int PH7_builtin_str_pad(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int iLen, iPadlen, iType, i, iDiv, iStrpad, iRealPad, jPad;
|
||||
const char *zIn, *zPad;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return the empty string */
|
||||
/* Missing arguments, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5391,7 +5391,7 @@ static int StringReplaceWalker(ph7_value *pKey, ph7_value *pData, void *pUserDat
|
||||
/* Extract the target and the replace */
|
||||
zTarget = ph7_value_to_string(pKey, &tLen);
|
||||
if(tLen < 1) {
|
||||
/* Empty target,return immediately */
|
||||
/* Empty target, return immediately */
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Perform a pattern search */
|
||||
@@ -5478,7 +5478,7 @@ static int PH7_builtin_str_replace(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
int nByte;
|
||||
sxi32 rc;
|
||||
if(nArg < 3) {
|
||||
/* Missing/Invalid arguments,return null */
|
||||
/* Missing/Invalid arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5493,7 +5493,7 @@ static int PH7_builtin_str_replace(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Extract the subject */
|
||||
zIn = ph7_value_to_string(apArg[2], &nByte);
|
||||
if(nByte < 1) {
|
||||
/* Nothing to replace,return the empty string */
|
||||
/* Nothing to replace, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5610,7 +5610,7 @@ static int PH7_builtin_strtr(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zIn;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Nothing to replace,return FALSE */
|
||||
/* Nothing to replace, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5882,7 +5882,7 @@ static int PH7_builtin_parse_ini_string(ph7_context *pCtx, int nArg, ph7_value *
|
||||
const char *zIni;
|
||||
int nByte;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE*/
|
||||
/* Missing/Invalid arguments, return FALSE*/
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -6676,7 +6676,7 @@ static int PH7_builtin_date(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int nLen;
|
||||
Sytm sTm;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid argument,return FALSE */
|
||||
/* Missing/Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -6736,7 +6736,7 @@ static int PH7_builtin_strftime(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
int nLen;
|
||||
Sytm sTm;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid argument,return FALSE */
|
||||
/* Missing/Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -6776,7 +6776,7 @@ static int PH7_builtin_strftime(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
/* Format the given string */
|
||||
PH7_Strftime(pCtx, zFormat, nLen, &sTm);
|
||||
if(ph7_context_result_buf_length(pCtx) < 1) {
|
||||
/* Nothing was formatted,return FALSE */
|
||||
/* Nothing was formatted, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
}
|
||||
return PH7_OK;
|
||||
@@ -6800,7 +6800,7 @@ static int PH7_builtin_gmdate(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int nLen;
|
||||
Sytm sTm;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid argument,return FALSE */
|
||||
/* Missing/Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -7028,7 +7028,7 @@ static int PH7_builtin_idate(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int nLen;
|
||||
Sytm sTm;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid argument,return -1 */
|
||||
/* Missing/Invalid argument, return -1 */
|
||||
ph7_result_int(pCtx, -1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -7257,6 +7257,35 @@ static int PH7_builtin_mktime(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_result_int64(pCtx, iVal);
|
||||
return PH7_OK;
|
||||
}
|
||||
/*
|
||||
* Section:
|
||||
* System Functions
|
||||
* Authors:
|
||||
* Rafal Kupiec,belliash@codingworkshop.eu.org
|
||||
* Status:
|
||||
* Stable.
|
||||
*/
|
||||
/*
|
||||
* bool system(string $command)
|
||||
* Invokes an operating system command from AerScript.
|
||||
* Parameters
|
||||
* $command: String that contains the command to execute.
|
||||
* Return
|
||||
* TRUE if command executed successfully. False otherwise.
|
||||
*/
|
||||
int PH7_builtin_system(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zCmd = NULL;
|
||||
int res = 0;
|
||||
|
||||
if(nArg > 0 && ph7_value_is_string(apArg[0])) {
|
||||
zCmd = ph7_value_to_string(apArg[0], 0);
|
||||
}
|
||||
|
||||
res = system(zCmd);
|
||||
/* Query result */
|
||||
ph7_result_bool(pCtx, res == 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/*
|
||||
* Section:
|
||||
* URL handling Functions.
|
||||
@@ -7289,14 +7318,14 @@ static int PH7_builtin_base64_encode(ph7_context *pCtx, int nArg, ph7_value **ap
|
||||
const char *zIn;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the input string */
|
||||
zIn = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Nothing to process,return FALSE */
|
||||
/* Nothing to process, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -7318,14 +7347,14 @@ static int PH7_builtin_base64_decode(ph7_context *pCtx, int nArg, ph7_value **ap
|
||||
const char *zIn;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the input string */
|
||||
zIn = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Nothing to process,return FALSE */
|
||||
/* Nothing to process, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -7348,14 +7377,14 @@ static int PH7_builtin_urlencode(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
const char *zIn;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the input string */
|
||||
zIn = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Nothing to process,return FALSE */
|
||||
/* Nothing to process, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -7377,14 +7406,14 @@ static int PH7_builtin_urldecode(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
const char *zIn;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Extract the input string */
|
||||
zIn = ph7_value_to_string(apArg[0], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Nothing to process,return FALSE */
|
||||
/* Nothing to process, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -7455,6 +7484,7 @@ static const ph7_builtin_func aBuiltInFunc[] = {
|
||||
{ "strripos", PH7_builtin_strripos },
|
||||
{ "strrchr", PH7_builtin_strrchr },
|
||||
{ "strrev", PH7_builtin_strrev },
|
||||
{ "system", PH7_builtin_system },
|
||||
{ "ucwords", PH7_builtin_ucwords },
|
||||
{ "str_repeat", PH7_builtin_str_repeat },
|
||||
{ "nl2br", PH7_builtin_nl2br },
|
||||
|
@@ -1381,8 +1381,8 @@ static sxi32 PH7_CompileContinue(ph7_gen_state *pGen) {
|
||||
} else {
|
||||
sxu32 nInstrIdx = 0;
|
||||
if(!pLoop->bPostContinue) {
|
||||
/* Emit the OP_JMPLFE instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFE, 0, 0, 0, 0);
|
||||
/* Emit the OP_LF_STOP instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_STOP, 0, 0, 0, 0);
|
||||
}
|
||||
PH7_VmEmitInstr(pGen->pVm, 0, PH7_OP_JMP, 0, pLoop->nFirstInstr, 0, &nInstrIdx);
|
||||
if(pLoop->bPostContinue) {
|
||||
@@ -1421,8 +1421,10 @@ static sxi32 PH7_CompileBreak(ph7_gen_state *pGen) {
|
||||
PH7_GenCompileError(pGen, E_ERROR, pGen->pIn->nLine, "A 'break' statement may only be used within a loop or switch");
|
||||
} else {
|
||||
sxu32 nInstrIdx;
|
||||
/* Emit the OP_JMPLFE instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFE, 0, 0, 0, 0);
|
||||
if((pLoop->iFlags & GEN_BLOCK_SWITCH) == 0) {
|
||||
/* Emit the OP_LF_STOP instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_STOP, 0, 0, 0, 0);
|
||||
}
|
||||
rc = PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMP, 0, 0, 0, &nInstrIdx);
|
||||
if(rc == SXRET_OK) {
|
||||
/* Fix the jump later when the jump destination is resolved */
|
||||
@@ -1548,7 +1550,7 @@ static sxi32 PH7_CompileGoto(ph7_gen_state *pGen)
|
||||
sJump.pFunc = 0;
|
||||
}
|
||||
/* Make sure there will not stay any loop frame opened (i.e. goto inside a loop) */
|
||||
PH7_VmEmitInstr(pGen->pVm, sJump.nLine, PH7_OP_JMPLFE, 0, 0, 0, 0);
|
||||
PH7_VmEmitInstr(pGen->pVm, sJump.nLine, PH7_OP_LF_STOP, 0, 0, 0, 0);
|
||||
/* Emit the unconditional jump */
|
||||
if(SXRET_OK == PH7_VmEmitInstr(pGen->pVm, sJump.nLine, PH7_OP_JMP, 0, 0, 0, &sJump.nInstrIdx)) {
|
||||
SySetPut(&pGen->aGoto, (const void *)&sJump);
|
||||
@@ -1700,15 +1702,15 @@ static sxi32 PH7_CompileWhile(ph7_gen_state *pGen) {
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPZ, 0, 0, 0, &nFalseJump);
|
||||
/* Save the instruction index so we can fix it later when the jump destination is resolved */
|
||||
PH7_GenStateNewJumpFixup(pWhileBlock, PH7_OP_JMPZ, nFalseJump);
|
||||
/* Emit the OP_JMPLFB instruction to enter a loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFB, 0, 0, 0, 0);
|
||||
/* Emit the OP_LF_START instruction to enter a loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_START, 0, 0, 0, 0);
|
||||
/* Compile the loop body */
|
||||
rc = PH7_CompileBlock(&(*pGen));
|
||||
if(rc == SXERR_ABORT) {
|
||||
return SXERR_ABORT;
|
||||
}
|
||||
/* Emit the OP_JMPLFE instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFE, 0, 0, 0, 0);
|
||||
/* Emit the OP_LF_STOP instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_STOP, 0, 0, 0, 0);
|
||||
/* Emit the unconditional jump to the start of the loop */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMP, 0, pWhileBlock->nFirstInstr, 0, 0);
|
||||
/* Fix all jumps now the destination is resolved */
|
||||
@@ -1755,8 +1757,8 @@ static sxi32 PH7_CompileDoWhile(ph7_gen_state *pGen) {
|
||||
}
|
||||
/* Deffer 'continue;' jumps until we compile the block */
|
||||
pDoBlock->bPostContinue = TRUE;
|
||||
/* Emit the OP_JMPLFB instruction to enter a loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFB, 0, 0, 0, 0);
|
||||
/* Emit the OP_LF_START instruction to enter a loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_START, 0, 0, 0, 0);
|
||||
rc = PH7_CompileBlock(&(*pGen));
|
||||
if(rc == SXERR_ABORT) {
|
||||
return SXERR_ABORT;
|
||||
@@ -1814,8 +1816,8 @@ static sxi32 PH7_CompileDoWhile(ph7_gen_state *pGen) {
|
||||
}
|
||||
pGen->pIn = &pEnd[1];
|
||||
pGen->pEnd = pTmp;
|
||||
/* Emit the OP_JMPLFE instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFE, 0, 0, 0, 0);
|
||||
/* Emit the OP_LF_STOP instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_STOP, 0, 0, 0, 0);
|
||||
/* Emit the true jump to the beginning of the loop */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPNZ, 0, pDoBlock->nFirstInstr, 0, 0);
|
||||
/* Fix all jumps now the destination is resolved */
|
||||
@@ -1858,6 +1860,7 @@ static sxi32 PH7_CompileFor(ph7_gen_state *pGen) {
|
||||
sxu32 nLine;
|
||||
sxi32 rc;
|
||||
nLine = pGen->pIn->nLine;
|
||||
|
||||
/* Jump the 'for' keyword */
|
||||
pGen->pIn++;
|
||||
if(pGen->pIn >= pGen->pEnd || (pGen->pIn->nType & PH7_TK_LPAREN) == 0) {
|
||||
@@ -1877,6 +1880,7 @@ static sxi32 PH7_CompileFor(ph7_gen_state *pGen) {
|
||||
pGen->pEnd = pEnd;
|
||||
sxu32 nKey = (sxu32)(SX_PTR_TO_INT(pGen->pIn->pUserData));
|
||||
if(nKey & (PH7_KEYWORD_AUTO | PH7_KEYWORD_TYPEDEF)) {
|
||||
/* Compile variable */
|
||||
PH7_CompileVar(&(*pGen));
|
||||
}
|
||||
/* Compile initialization expressions if available */
|
||||
@@ -1918,8 +1922,8 @@ static sxi32 PH7_CompileFor(ph7_gen_state *pGen) {
|
||||
PH7_GenCompileError(pGen, E_ERROR, pGen->pIn->nLine,
|
||||
"for: Expected ';' after conditionals expressions");
|
||||
}
|
||||
/* Emit the OP_JMPLFB instruction to enter a loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFB, 0, 0, 0, 0);
|
||||
/* Emit the OP_LF_START instruction to enter a loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_START, 0, 0, 0, 0);
|
||||
/* Jump the trailing ';' */
|
||||
pGen->pIn++;
|
||||
/* Save the post condition stream */
|
||||
@@ -1931,6 +1935,10 @@ static sxi32 PH7_CompileFor(ph7_gen_state *pGen) {
|
||||
if(rc == SXERR_ABORT) {
|
||||
return SXERR_ABORT;
|
||||
}
|
||||
/* compile the post-expressions if available */
|
||||
while(pPostStart < pEnd && (pPostStart->nType & PH7_TK_SEMI)) {
|
||||
pPostStart++;
|
||||
}
|
||||
/* Fix post-continue jumps */
|
||||
if(SySetUsed(&pForBlock->aPostContFix) > 0) {
|
||||
JumpFixup *aPost;
|
||||
@@ -1947,10 +1955,6 @@ static sxi32 PH7_CompileFor(ph7_gen_state *pGen) {
|
||||
}
|
||||
}
|
||||
}
|
||||
/* compile the post-expressions if available */
|
||||
while(pPostStart < pEnd && (pPostStart->nType & PH7_TK_SEMI)) {
|
||||
pPostStart++;
|
||||
}
|
||||
if(pPostStart < pEnd) {
|
||||
SyToken *pTmpIn, *pTmpEnd;
|
||||
SWAP_DELIMITER(pGen, pPostStart, pEnd);
|
||||
@@ -1968,8 +1972,8 @@ static sxi32 PH7_CompileFor(ph7_gen_state *pGen) {
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_POP, 1, 0, 0, 0);
|
||||
}
|
||||
}
|
||||
/* Emit the OP_JMPLFE instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFE, 0, 0, 0, 0);
|
||||
/* Emit the OP_LF_STOP instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_STOP, 0, 0, 0, 0);
|
||||
/* Emit the unconditional jump to the start of the loop */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMP, 0, pForBlock->nFirstInstr, 0, 0);
|
||||
/* Fix all jumps now the destination is resolved */
|
||||
@@ -2158,8 +2162,8 @@ static sxi32 PH7_CompileForeach(ph7_gen_state *pGen) {
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_FOREACH_STEP, 0, 0, pInfo, &nFalseJump);
|
||||
/* Save the instruction index so we can fix it later when the jump destination is resolved */
|
||||
PH7_GenStateNewJumpFixup(pForeachBlock, PH7_OP_FOREACH_STEP, nFalseJump);
|
||||
/* Emit the OP_JMPLFB instruction to enter a loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFB, 0, 0, 0, 0);
|
||||
/* Emit the OP_LF_START instruction to enter a loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_START, 0, 0, 0, 0);
|
||||
/* Compile the loop body */
|
||||
pGen->pIn = &pEnd[1];
|
||||
pGen->pEnd = pTmp;
|
||||
@@ -2168,8 +2172,8 @@ static sxi32 PH7_CompileForeach(ph7_gen_state *pGen) {
|
||||
/* Don't worry about freeing memory, everything will be released shortly */
|
||||
return SXERR_ABORT;
|
||||
}
|
||||
/* Emit the OP_JMPLFE instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMPLFE, 0, 0, 0, 0);
|
||||
/* Emit the OP_LF_STOP instruction to leave the loop frame */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_LF_STOP, 0, 0, 0, 0);
|
||||
/* Emit the unconditional jump to the start of the loop */
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_JMP, 0, pForeachBlock->nFirstInstr, 0, 0);
|
||||
/* Fix all jumps now the destination is resolved */
|
||||
@@ -2335,7 +2339,7 @@ static sxi32 PH7_CompileReturn(ph7_gen_state *pGen) {
|
||||
}
|
||||
}
|
||||
/* Emit the done instruction */
|
||||
PH7_VmEmitInstr(pGen->pVm, pGen->pIn->nLine, PH7_OP_DONE, nRet, 0, 0, 0);
|
||||
PH7_VmEmitInstr(pGen->pVm, pGen->pIn->nLine, PH7_OP_DONE, nRet, 0, (void *)1, 0);
|
||||
return SXRET_OK;
|
||||
}
|
||||
/*
|
||||
@@ -2640,6 +2644,59 @@ static sxi32 PH7_CompileUsing(ph7_gen_state *pGen) {
|
||||
);
|
||||
return SXRET_OK;
|
||||
}
|
||||
/*
|
||||
* Compile the 'import' statement
|
||||
*/
|
||||
static sxi32 PH7_CompileImport(ph7_gen_state *pGen) {
|
||||
char *zModule;
|
||||
sxu32 nLine = pGen->pIn->nLine;
|
||||
/* Jump the 'import' keyword */
|
||||
pGen->pIn++;
|
||||
if(pGen->pIn >= pGen->pEnd || (pGen->pIn->nType & (PH7_TK_SSTR | PH7_TK_DSTR)) == 0) {
|
||||
if(pGen->pIn >= pGen->pEnd) {
|
||||
pGen->pIn--;
|
||||
}
|
||||
/* Unexpected token */
|
||||
PH7_GenCompileError(&(*pGen), E_ERROR, nLine, "Include: Unexpected token '%z'", &pGen->pIn->sData);
|
||||
}
|
||||
zModule = SyMemBackendStrDup(&pGen->pVm->sAllocator, pGen->pIn->sData.zString, pGen->pIn->sData.nByte);
|
||||
pGen->pIn++;
|
||||
if(pGen->pIn < pGen->pEnd && (pGen->pIn->nType & PH7_TK_SEMI/*';'*/) == 0) {
|
||||
/* Unexpected token */
|
||||
PH7_GenCompileError(&(*pGen), E_ERROR, nLine, "Include: Unexpected token '%z', expecting ';'",
|
||||
&pGen->pIn->sData);
|
||||
}
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_IMPORT, 0, 0, zModule, 0);
|
||||
return SXRET_OK;
|
||||
}
|
||||
|
||||
/*
|
||||
* Compile the 'include' and 'require' statements
|
||||
*/
|
||||
static sxi32 PH7_CompileInclude(ph7_gen_state *pGen) {
|
||||
char *zFile;
|
||||
sxu32 nKey = (sxu32)(SX_PTR_TO_INT(pGen->pIn->pUserData));
|
||||
sxu32 nLine = pGen->pIn->nLine;
|
||||
sxi32 iP1 = (nKey == PH7_KEYWORD_REQUIRE) ? 1 : 0;
|
||||
/* Jump the 'include' or 'require' keyword */
|
||||
pGen->pIn++;
|
||||
if(pGen->pIn >= pGen->pEnd || (pGen->pIn->nType & (PH7_TK_SSTR | PH7_TK_DSTR)) == 0) {
|
||||
if(pGen->pIn >= pGen->pEnd) {
|
||||
pGen->pIn--;
|
||||
}
|
||||
/* Unexpected token */
|
||||
PH7_GenCompileError(&(*pGen), E_ERROR, nLine, "Include: Unexpected token '%z'", &pGen->pIn->sData);
|
||||
}
|
||||
zFile = SyMemBackendStrDup(&pGen->pVm->sAllocator, pGen->pIn->sData.zString, pGen->pIn->sData.nByte);
|
||||
pGen->pIn++;
|
||||
if(pGen->pIn < pGen->pEnd && (pGen->pIn->nType & PH7_TK_SEMI/*';'*/) == 0) {
|
||||
/* Unexpected token */
|
||||
PH7_GenCompileError(&(*pGen), E_ERROR, nLine, "Include: Unexpected token '%z', expecting ';'",
|
||||
&pGen->pIn->sData);
|
||||
}
|
||||
PH7_VmEmitInstr(pGen->pVm, nLine, PH7_OP_INCLUDE, iP1, 0, zFile, 0);
|
||||
return SXRET_OK;
|
||||
}
|
||||
/*
|
||||
* Process default argument values. That is,a function may define C++-style default value
|
||||
* as follows:
|
||||
@@ -4659,7 +4716,7 @@ static sxi32 PH7_GenStateEmitExprCode(
|
||||
} else if(iVmOp == PH7_OP_LOR) {
|
||||
/* Emit the true jump so we can short-circuit the logical or*/
|
||||
PH7_VmEmitInstr(pGen->pVm, pGen->pIn->nLine, PH7_OP_JMPNZ, 1/* Keep the value on the stack */, 0, 0, &nJmpIdx);
|
||||
} else if(pNode->pOp->iPrec == 18 /* Combined binary operators [i.e: =,'.=','+=',*=' ...] precedence */) {
|
||||
} else if(pNode->pOp->iPrec == 20 /* Combined binary operators [i.e: =,'.=','+=',*=' ...] precedence */) {
|
||||
iFlags |= EXPR_FLAG_LOAD_IDX_STORE;
|
||||
}
|
||||
rc = PH7_GenStateEmitExprCode(&(*pGen), pNode->pRight, iFlags);
|
||||
@@ -4681,6 +4738,13 @@ static sxi32 PH7_GenStateEmitExprCode(
|
||||
(void)PH7_VmPopInstr(pGen->pVm);
|
||||
}
|
||||
}
|
||||
} else if(pNode->pOp->iPrec == 20 && pNode->pOp->iOp != EXPR_OP_ASSIGN) {
|
||||
pInstr = PH7_VmPeekInstr(pGen->pVm);
|
||||
if(pInstr) {
|
||||
if(pInstr->iOp != PH7_OP_LOAD_IDX) {
|
||||
p3 = pInstr->p3;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(iVmOp > 0) {
|
||||
@@ -4890,31 +4954,37 @@ static const LangConstruct aLangConstruct[] = {
|
||||
{ PH7_KEYWORD_THROW, PH7_CompileThrow }, /* throw statement */
|
||||
{ PH7_KEYWORD_GOTO, PH7_CompileGoto }, /* goto statement */
|
||||
{ PH7_KEYWORD_CONST, PH7_CompileConstant }, /* const statement */
|
||||
{ PH7_KEYWORD_INCLUDE, PH7_CompileInclude }, /* include statement */
|
||||
{ PH7_KEYWORD_REQUIRE, PH7_CompileInclude }, /* require statement */
|
||||
};
|
||||
/*
|
||||
* Return a pointer to the global scope handler routine associated
|
||||
*/
|
||||
static ProcLangConstruct PH7_GenStateGetGlobalScopeHandler(
|
||||
sxu32 nKeywordID, /* Keyword ID */
|
||||
SyToken *pLookahead /* Look-ahead token */
|
||||
sxu32 nKeywordID /* Keyword ID */
|
||||
) {
|
||||
if(pLookahead) {
|
||||
if(nKeywordID == PH7_KEYWORD_DEFINE) {
|
||||
switch(nKeywordID) {
|
||||
case PH7_KEYWORD_DEFINE:
|
||||
return PH7_CompileDefine;
|
||||
} else if(nKeywordID == PH7_KEYWORD_INTERFACE) {
|
||||
case PH7_KEYWORD_INTERFACE:
|
||||
return PH7_CompileClassInterface;
|
||||
} else if(nKeywordID == PH7_KEYWORD_FINAL || nKeywordID == PH7_KEYWORD_VIRTUAL) {
|
||||
case PH7_KEYWORD_FINAL:
|
||||
case PH7_KEYWORD_VIRTUAL:
|
||||
return PH7_CompileFinalVirtualClass;
|
||||
} else if(nKeywordID == PH7_KEYWORD_CLASS) {
|
||||
case PH7_KEYWORD_CLASS:
|
||||
return PH7_CompileClass;
|
||||
} else if(nKeywordID == PH7_KEYWORD_NAMESPACE) {
|
||||
case PH7_KEYWORD_NAMESPACE:
|
||||
return PH7_CompileNamespace;
|
||||
} else if(nKeywordID == PH7_KEYWORD_USING) {
|
||||
case PH7_KEYWORD_USING:
|
||||
return PH7_CompileUsing;
|
||||
}
|
||||
case PH7_KEYWORD_IMPORT:
|
||||
return PH7_CompileImport;
|
||||
case PH7_KEYWORD_REQUIRE:
|
||||
return PH7_CompileInclude;
|
||||
default:
|
||||
/* Not a global scope language construct */
|
||||
return 0;
|
||||
}
|
||||
/* Not a global scope language construct */
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* Return a pointer to the statement handler routine associated
|
||||
@@ -4929,7 +4999,7 @@ static ProcLangConstruct PH7_GenStateGetStatementHandler(
|
||||
if(nKeywordID == PH7_KEYWORD_STATIC && pLookahead && (pLookahead->nType & PH7_TK_OP)) {
|
||||
const ph7_expr_op *pOp = (const ph7_expr_op *)pLookahead->pUserData;
|
||||
if(pOp && pOp->iOp == EXPR_OP_DC /*::*/) {
|
||||
/* 'static' (class context),return null */
|
||||
/* 'static' (class context), return null */
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@@ -4954,10 +5024,8 @@ static ProcLangConstruct PH7_GenStateGetStatementHandler(
|
||||
* Return TRUE if the given ID represent a language construct. FALSE otherwise.
|
||||
*/
|
||||
static int PH7_IsLangConstruct(sxu32 nKeywordID) {
|
||||
if(nKeywordID == PH7_KEYWORD_IMPORT || nKeywordID == PH7_KEYWORD_INCLUDE || nKeywordID == PH7_KEYWORD_REQUIRE
|
||||
|| nKeywordID == PH7_KEYWORD_EVAL || nKeywordID == PH7_KEYWORD_STATIC
|
||||
|| nKeywordID == PH7_KEYWORD_NEW || nKeywordID == PH7_KEYWORD_CLONE) {
|
||||
return TRUE;
|
||||
if(nKeywordID == PH7_KEYWORD_EVAL || nKeywordID == PH7_KEYWORD_STATIC || nKeywordID == PH7_KEYWORD_NEW || nKeywordID == PH7_KEYWORD_CLONE) {
|
||||
return TRUE;
|
||||
}
|
||||
/* Not a language construct */
|
||||
return FALSE;
|
||||
@@ -5048,7 +5116,7 @@ static sxi32 PH7_GenStateCompileGlobalScope(
|
||||
if(pGen->pIn->nType & PH7_TK_KEYWORD) {
|
||||
sxu32 nKeyword = (sxu32)SX_PTR_TO_INT(pGen->pIn->pUserData);
|
||||
/* Try to extract a language construct handler */
|
||||
xCons = PH7_GenStateGetGlobalScopeHandler(nKeyword, (&pGen->pIn[1] < pGen->pEnd) ? &pGen->pIn[1] : 0);
|
||||
xCons = PH7_GenStateGetGlobalScopeHandler(nKeyword);
|
||||
if(xCons == 0) {
|
||||
PH7_GenCompileError(pGen, E_ERROR, pGen->pIn->nLine, "Syntax error: Unexpected keyword '%z'", &pGen->pIn->sData);
|
||||
}
|
||||
@@ -5247,7 +5315,7 @@ PH7_PRIVATE sxi32 PH7_GenCompileError(ph7_gen_state *pGen, sxi32 nErrType, sxu32
|
||||
/* Peek the processed file path if available */
|
||||
pFile = (SyString *)SySetPeek(&pGen->pVm->aFiles);
|
||||
if(pGen->xErr == 0) {
|
||||
/* No available error consumer,return immediately */
|
||||
/* No available error consumer, return immediately */
|
||||
return SXRET_OK;
|
||||
}
|
||||
switch(nErrType) {
|
||||
|
373
engine/debug.c
Normal file
373
engine/debug.c
Normal file
@@ -0,0 +1,373 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/debug.c
|
||||
* @DESCRIPTION AerScript Virtual Machine Debugger for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
|
||||
/*
|
||||
* This routine is used to dump the debug stacktrace based on all active frames.
|
||||
*/
|
||||
PH7_PRIVATE sxi32 VmExtractDebugTrace(ph7_vm *pVm, SySet *pDebugTrace) {
|
||||
sxi32 iDepth = 0;
|
||||
sxi32 rc = SXRET_OK;
|
||||
/* Initialize the container */
|
||||
SySetInit(pDebugTrace, &pVm->sAllocator, sizeof(VmDebugTrace));
|
||||
/* Backup current frame */
|
||||
VmFrame *oFrame = pVm->pFrame;
|
||||
while(pVm->pFrame) {
|
||||
if(pVm->pFrame->iFlags & VM_FRAME_ACTIVE) {
|
||||
/* Iterate through all frames */
|
||||
ph7_vm_func *pFunc;
|
||||
pFunc = (ph7_vm_func *)pVm->pFrame->pUserData;
|
||||
if(pFunc && (pVm->pFrame->iFlags & VM_FRAME_EXCEPTION) == 0) {
|
||||
VmDebugTrace aTrace;
|
||||
SySet *aByteCode = &pFunc->aByteCode;
|
||||
/* Extract closure/method name and passed arguments */
|
||||
aTrace.pFuncName = &pFunc->sName;
|
||||
aTrace.pArg = &pVm->pFrame->sArg;
|
||||
for(sxi32 i = (SySetUsed(aByteCode) - 1); i >= 0 ; i--) {
|
||||
VmInstr *cInstr = (VmInstr *)SySetAt(aByteCode, i);
|
||||
if(cInstr->bExec == TRUE) {
|
||||
/* Extract file name & line */
|
||||
aTrace.pFile = cInstr->pFile;
|
||||
aTrace.nLine = cInstr->iLine;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(aTrace.pFile) {
|
||||
aTrace.pClassName = NULL;
|
||||
aTrace.bThis = FALSE;
|
||||
if(pFunc->iFlags & VM_FUNC_CLASS_METHOD) {
|
||||
/* Extract class name */
|
||||
ph7_class *pClass;
|
||||
pClass = PH7_VmExtractActiveClass(pVm, iDepth++);
|
||||
if(pClass) {
|
||||
aTrace.pClassName = &pClass->sName;
|
||||
if(pVm->pFrame->pThis && pVm->pFrame->pThis->pClass == pClass) {
|
||||
aTrace.bThis = TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
rc = SySetPut(pDebugTrace, (const void *)&aTrace);
|
||||
if(rc != SXRET_OK) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/* Roll frame */
|
||||
pVm->pFrame = pVm->pFrame->pParent;
|
||||
}
|
||||
/* Restore original frame */
|
||||
pVm->pFrame = oFrame;
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
* Return a string representation of the given PH7 OP code.
|
||||
* This function never fail and always return a pointer
|
||||
* to a null terminated string.
|
||||
*/
|
||||
static const char *VmInstrToString(sxi32 nOp) {
|
||||
const char *zOp = "UNKNOWN";
|
||||
switch(nOp) {
|
||||
case PH7_OP_DONE:
|
||||
zOp = "DONE";
|
||||
break;
|
||||
case PH7_OP_HALT:
|
||||
zOp = "HALT";
|
||||
break;
|
||||
case PH7_OP_IMPORT:
|
||||
zOp = "IMPORT";
|
||||
break;
|
||||
case PH7_OP_INCLUDE:
|
||||
zOp = "INCLUDE";
|
||||
break;
|
||||
case PH7_OP_DECLARE:
|
||||
zOp = "DECLARE";
|
||||
break;
|
||||
case PH7_OP_LOADV:
|
||||
zOp = "LOADV";
|
||||
break;
|
||||
case PH7_OP_LOADC:
|
||||
zOp = "LOADC";
|
||||
break;
|
||||
case PH7_OP_LOAD_MAP:
|
||||
zOp = "LOAD_MAP";
|
||||
break;
|
||||
case PH7_OP_LOAD_IDX:
|
||||
zOp = "LOAD_IDX";
|
||||
break;
|
||||
case PH7_OP_LOAD_CLOSURE:
|
||||
zOp = "LOAD_CLOSR";
|
||||
break;
|
||||
case PH7_OP_NOOP:
|
||||
zOp = "NOOP";
|
||||
break;
|
||||
case PH7_OP_JMP:
|
||||
zOp = "JMP";
|
||||
break;
|
||||
case PH7_OP_JMPZ:
|
||||
zOp = "JMPZ";
|
||||
break;
|
||||
case PH7_OP_JMPNZ:
|
||||
zOp = "JMPNZ";
|
||||
break;
|
||||
case PH7_OP_LF_START:
|
||||
zOp = "LF_START";
|
||||
break;
|
||||
case PH7_OP_LF_STOP:
|
||||
zOp = "LF_STOP";
|
||||
break;
|
||||
case PH7_OP_POP:
|
||||
zOp = "POP";
|
||||
break;
|
||||
case PH7_OP_CVT_INT:
|
||||
zOp = "CVT_INT";
|
||||
break;
|
||||
case PH7_OP_CVT_STR:
|
||||
zOp = "CVT_STR";
|
||||
break;
|
||||
case PH7_OP_CVT_REAL:
|
||||
zOp = "CVT_FLOAT";
|
||||
break;
|
||||
case PH7_OP_CALL:
|
||||
zOp = "CALL";
|
||||
break;
|
||||
case PH7_OP_UMINUS:
|
||||
zOp = "UMINUS";
|
||||
break;
|
||||
case PH7_OP_UPLUS:
|
||||
zOp = "UPLUS";
|
||||
break;
|
||||
case PH7_OP_BITNOT:
|
||||
zOp = "BITNOT";
|
||||
break;
|
||||
case PH7_OP_LNOT:
|
||||
zOp = "LOGNOT";
|
||||
break;
|
||||
case PH7_OP_MUL:
|
||||
zOp = "MUL";
|
||||
break;
|
||||
case PH7_OP_DIV:
|
||||
zOp = "DIV";
|
||||
break;
|
||||
case PH7_OP_MOD:
|
||||
zOp = "MOD";
|
||||
break;
|
||||
case PH7_OP_ADD:
|
||||
zOp = "ADD";
|
||||
break;
|
||||
case PH7_OP_SUB:
|
||||
zOp = "SUB";
|
||||
break;
|
||||
case PH7_OP_SHL:
|
||||
zOp = "SHL";
|
||||
break;
|
||||
case PH7_OP_SHR:
|
||||
zOp = "SHR";
|
||||
break;
|
||||
case PH7_OP_LT:
|
||||
zOp = "LT";
|
||||
break;
|
||||
case PH7_OP_LE:
|
||||
zOp = "LE";
|
||||
break;
|
||||
case PH7_OP_GT:
|
||||
zOp = "GT";
|
||||
break;
|
||||
case PH7_OP_GE:
|
||||
zOp = "GE";
|
||||
break;
|
||||
case PH7_OP_EQ:
|
||||
zOp = "EQ";
|
||||
break;
|
||||
case PH7_OP_NEQ:
|
||||
zOp = "NEQ";
|
||||
break;
|
||||
case PH7_OP_NULLC:
|
||||
zOp = "NULLC";
|
||||
break;
|
||||
case PH7_OP_BAND:
|
||||
zOp = "BITAND";
|
||||
break;
|
||||
case PH7_OP_BXOR:
|
||||
zOp = "BITXOR";
|
||||
break;
|
||||
case PH7_OP_BOR:
|
||||
zOp = "BITOR";
|
||||
break;
|
||||
case PH7_OP_LAND:
|
||||
zOp = "LOGAND";
|
||||
break;
|
||||
case PH7_OP_LOR:
|
||||
zOp = "LOGOR";
|
||||
break;
|
||||
case PH7_OP_LXOR:
|
||||
zOp = "LOGXOR";
|
||||
break;
|
||||
case PH7_OP_STORE:
|
||||
zOp = "STORE";
|
||||
break;
|
||||
case PH7_OP_STORE_IDX:
|
||||
zOp = "STORE_IDX";
|
||||
break;
|
||||
case PH7_OP_PULL:
|
||||
zOp = "PULL";
|
||||
break;
|
||||
case PH7_OP_SWAP:
|
||||
zOp = "SWAP";
|
||||
break;
|
||||
case PH7_OP_YIELD:
|
||||
zOp = "YIELD";
|
||||
break;
|
||||
case PH7_OP_CVT_BOOL:
|
||||
zOp = "CVT_BOOL";
|
||||
break;
|
||||
case PH7_OP_CVT_OBJ:
|
||||
zOp = "CVT_OBJ";
|
||||
break;
|
||||
case PH7_OP_INCR:
|
||||
zOp = "INCR";
|
||||
break;
|
||||
case PH7_OP_DECR:
|
||||
zOp = "DECR";
|
||||
break;
|
||||
case PH7_OP_NEW:
|
||||
zOp = "NEW";
|
||||
break;
|
||||
case PH7_OP_CLONE:
|
||||
zOp = "CLONE";
|
||||
break;
|
||||
case PH7_OP_ADD_STORE:
|
||||
zOp = "ADD_STORE";
|
||||
break;
|
||||
case PH7_OP_SUB_STORE:
|
||||
zOp = "SUB_STORE";
|
||||
break;
|
||||
case PH7_OP_MUL_STORE:
|
||||
zOp = "MUL_STORE";
|
||||
break;
|
||||
case PH7_OP_DIV_STORE:
|
||||
zOp = "DIV_STORE";
|
||||
break;
|
||||
case PH7_OP_MOD_STORE:
|
||||
zOp = "MOD_STORE";
|
||||
break;
|
||||
case PH7_OP_SHL_STORE:
|
||||
zOp = "SHL_STORE";
|
||||
break;
|
||||
case PH7_OP_SHR_STORE:
|
||||
zOp = "SHR_STORE";
|
||||
break;
|
||||
case PH7_OP_BAND_STORE:
|
||||
zOp = "BAND_STORE";
|
||||
break;
|
||||
case PH7_OP_BOR_STORE:
|
||||
zOp = "BOR_STORE";
|
||||
break;
|
||||
case PH7_OP_BXOR_STORE:
|
||||
zOp = "BXOR_STORE";
|
||||
break;
|
||||
case PH7_OP_CONSUME:
|
||||
zOp = "CONSUME";
|
||||
break;
|
||||
case PH7_OP_MEMBER:
|
||||
zOp = "MEMBER";
|
||||
break;
|
||||
case PH7_OP_IS:
|
||||
zOp = "IS";
|
||||
break;
|
||||
case PH7_OP_SWITCH:
|
||||
zOp = "SWITCH";
|
||||
break;
|
||||
case PH7_OP_LOAD_EXCEPTION:
|
||||
zOp = "LOAD_EXCEP";
|
||||
break;
|
||||
case PH7_OP_POP_EXCEPTION:
|
||||
zOp = "POP_EXCEP";
|
||||
break;
|
||||
case PH7_OP_THROW:
|
||||
zOp = "THROW";
|
||||
break;
|
||||
case PH7_OP_CLASS_INIT:
|
||||
zOp = "CLASS_INIT";
|
||||
break;
|
||||
case PH7_OP_INTERFACE_INIT:
|
||||
zOp = "INTER_INIT";
|
||||
break;
|
||||
case PH7_OP_FOREACH_INIT:
|
||||
zOp = "4EACH_INIT";
|
||||
break;
|
||||
case PH7_OP_FOREACH_STEP:
|
||||
zOp = "4EACH_STEP";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return zOp;
|
||||
}
|
||||
/*
|
||||
* This routine is used to dump PH7 byte-code instructions to a human readable
|
||||
* format.
|
||||
* The dump is redirected to the given consumer callback which is responsible
|
||||
* of consuming the generated dump perhaps redirecting it to its standard output
|
||||
* (STDOUT).
|
||||
*/
|
||||
static sxi32 VmByteCodeDump(
|
||||
SySet *pByteCode, /* Bytecode container */
|
||||
ProcConsumer xConsumer, /* Dump consumer callback */
|
||||
void *pUserData /* Last argument to xConsumer() */
|
||||
) {
|
||||
static const char zDump[] = {
|
||||
"========================================================================================================\n"
|
||||
" SEQ | OP | INSTRUCTION | P1 | P2 | P3 | LINE | SOURCE FILE \n"
|
||||
"========================================================================================================\n"
|
||||
};
|
||||
VmInstr *pInstr, *pEnd;
|
||||
sxi32 rc = SXRET_OK;
|
||||
sxu32 n;
|
||||
/* Point to the PH7 instructions */
|
||||
pInstr = (VmInstr *)SySetBasePtr(pByteCode);
|
||||
pEnd = &pInstr[SySetUsed(pByteCode)];
|
||||
n = 1;
|
||||
xConsumer((const void *)zDump, sizeof(zDump) - 1, pUserData);
|
||||
/* Dump instructions */
|
||||
for(;;) {
|
||||
if(pInstr >= pEnd) {
|
||||
/* No more instructions */
|
||||
break;
|
||||
}
|
||||
/* Format and call the consumer callback */
|
||||
rc = SyProcFormat(xConsumer, pUserData, " #%08u | %4d | %-11s | %8d | %8u | %#10x | %6u | %z\n",
|
||||
n, pInstr->iOp, VmInstrToString(pInstr->iOp), pInstr->iP1, pInstr->iP2,
|
||||
SX_PTR_TO_INT(pInstr->p3), pInstr->iLine, pInstr->pFile);
|
||||
if(rc != SXRET_OK) {
|
||||
/* Consumer routine request an operation abort */
|
||||
return rc;
|
||||
}
|
||||
++n;
|
||||
pInstr++; /* Next instruction in the stream */
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
/*
|
||||
* Dump PH7 bytecodes instructions to a human readable format.
|
||||
* The xConsumer() callback which is an used defined function
|
||||
* is responsible of consuming the generated dump.
|
||||
*/
|
||||
PH7_PRIVATE sxi32 PH7_VmDump(
|
||||
ph7_vm *pVm, /* Target VM */
|
||||
ProcConsumer xConsumer, /* Output [i.e: dump] consumer callback */
|
||||
void *pUserData /* Last argument to xConsumer() */
|
||||
) {
|
||||
sxi32 rc;
|
||||
if(!pVm->bDebug) {
|
||||
return SXRET_OK;
|
||||
}
|
||||
rc = VmByteCodeDump(&pVm->aInstrSet, xConsumer, pUserData);
|
||||
return rc;
|
||||
}
|
208
engine/hashmap.c
208
engine/hashmap.c
@@ -227,7 +227,7 @@ static sxi32 HashmapGrowBucket(ph7_hashmap *pMap) {
|
||||
pMap->apBucket = apNew;
|
||||
pMap->nSize = nNew;
|
||||
if(apOld == 0) {
|
||||
/* First allocated table [i.e: no entry],return immediately */
|
||||
/* First allocated table [i.e: no entry], return immediately */
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Rehash old entries */
|
||||
@@ -1315,7 +1315,7 @@ PH7_PRIVATE void PH7_HashmapResetLoopCursor(ph7_hashmap *pMap) {
|
||||
PH7_PRIVATE ph7_hashmap_node *PH7_HashmapGetNextEntry(ph7_hashmap *pMap) {
|
||||
ph7_hashmap_node *pCur = pMap->pCur;
|
||||
if(pCur == 0) {
|
||||
/* End of the list,return null */
|
||||
/* End of the list, return null */
|
||||
return 0;
|
||||
}
|
||||
/* Advance the node cursor */
|
||||
@@ -1782,7 +1782,7 @@ static int ph7_hashmap_sort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1802,7 +1802,7 @@ static int ph7_hashmap_sort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Rehash [Do not maintain index association as requested by the PHP specification] */
|
||||
HashmapSortRehash(pMap);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1825,7 +1825,7 @@ static int ph7_hashmap_asort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1847,7 +1847,7 @@ static int ph7_hashmap_asort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pMap->pLast = pMap->pLast->pPrev;
|
||||
}
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1870,7 +1870,7 @@ static int ph7_hashmap_arsort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1892,7 +1892,7 @@ static int ph7_hashmap_arsort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pMap->pLast = pMap->pLast->pPrev;
|
||||
}
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1915,7 +1915,7 @@ static int ph7_hashmap_ksort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1937,7 +1937,7 @@ static int ph7_hashmap_ksort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pMap->pLast = pMap->pLast->pPrev;
|
||||
}
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1960,7 +1960,7 @@ static int ph7_hashmap_krsort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1982,7 +1982,7 @@ static int ph7_hashmap_krsort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pMap->pLast = pMap->pLast->pPrev;
|
||||
}
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2005,7 +2005,7 @@ static int ph7_hashmap_rsort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2025,7 +2025,7 @@ static int ph7_hashmap_rsort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Rehash [Do not maintain index association as requested by the PHP specification] */
|
||||
HashmapSortRehash(pMap);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2047,7 +2047,7 @@ static int ph7_hashmap_usort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2069,7 +2069,7 @@ static int ph7_hashmap_usort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Rehash [Do not maintain index association as requested by the PHP specification] */
|
||||
HashmapSortRehash(pMap);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2092,7 +2092,7 @@ static int ph7_hashmap_uasort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2116,7 +2116,7 @@ static int ph7_hashmap_uasort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pMap->pLast = pMap->pLast->pPrev;
|
||||
}
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2139,7 +2139,7 @@ static int ph7_hashmap_uksort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2163,7 +2163,7 @@ static int ph7_hashmap_uksort(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pMap->pLast = pMap->pLast->pPrev;
|
||||
}
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2181,7 +2181,7 @@ static int ph7_hashmap_shuffle(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return FALSE */
|
||||
/* Missing/Invalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2195,7 +2195,7 @@ static int ph7_hashmap_shuffle(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pMap->pLast = pMap->pLast->pPrev;
|
||||
}
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2217,7 +2217,7 @@ static int ph7_hashmap_count(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int bRecursive = FALSE;
|
||||
sxi64 iCount;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return 0 */
|
||||
/* Missing arguments, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2248,13 +2248,13 @@ static int ph7_hashmap_count(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int ph7_hashmap_key_exists(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxi32 rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[1])) {
|
||||
/* Invalid argument,return FALSE */
|
||||
/* Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2275,19 +2275,19 @@ static int ph7_hashmap_key_exists(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
static int ph7_hashmap_pop(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return null */
|
||||
/* Invalid argument, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
pMap = (ph7_hashmap *)apArg[0]->x.pOther;
|
||||
if(pMap->nEntry < 1) {
|
||||
/* Noting to pop,return NULL */
|
||||
/* Noting to pop, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
} else {
|
||||
ph7_hashmap_node *pLast = pMap->pLast;
|
||||
@@ -2322,13 +2322,13 @@ static int ph7_hashmap_push(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxi32 rc;
|
||||
int i;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return 0 */
|
||||
/* Missing arguments, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return 0 */
|
||||
/* Invalid argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2356,20 +2356,20 @@ static int ph7_hashmap_push(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int ph7_hashmap_shift(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return null */
|
||||
/* Missing arguments, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return null */
|
||||
/* Invalid argument, return null */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the internal representation of the hashmap */
|
||||
pMap = (ph7_hashmap *)apArg[0]->x.pOther;
|
||||
if(pMap->nEntry < 1) {
|
||||
/* Empty hashmap,return NULL */
|
||||
/* Empty hashmap, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
} else {
|
||||
ph7_hashmap_node *pEntry = pMap->pFirst;
|
||||
@@ -2411,7 +2411,7 @@ static sxi32 HashmapCurrentValue(ph7_context *pCtx, ph7_hashmap *pMap, int iDire
|
||||
ph7_hashmap_node *pCur = pMap->pCur;
|
||||
ph7_value *pVal;
|
||||
if(pCur == 0) {
|
||||
/* Cursor does not point to anything,return FALSE */
|
||||
/* Cursor does not point to anything, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2426,7 +2426,7 @@ static sxi32 HashmapCurrentValue(ph7_context *pCtx, ph7_hashmap *pMap, int iDire
|
||||
pCur = pMap->pCur;
|
||||
}
|
||||
if(pCur == 0) {
|
||||
/* End of input reached,return FALSE */
|
||||
/* End of input reached, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2453,13 +2453,13 @@ static sxi32 HashmapCurrentValue(ph7_context *pCtx, ph7_hashmap *pMap, int iDire
|
||||
*/
|
||||
static int ph7_hashmap_current(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return FALSE */
|
||||
/* Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2478,13 +2478,13 @@ static int ph7_hashmap_current(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
*/
|
||||
static int ph7_hashmap_next(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return FALSE */
|
||||
/* Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2503,13 +2503,13 @@ static int ph7_hashmap_next(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
*/
|
||||
static int ph7_hashmap_prev(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return FALSE */
|
||||
/* Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2527,13 +2527,13 @@ static int ph7_hashmap_prev(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int ph7_hashmap_end(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return FALSE */
|
||||
/* Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2556,13 +2556,13 @@ static int ph7_hashmap_end(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int ph7_hashmap_reset(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return FALSE */
|
||||
/* Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2590,20 +2590,20 @@ static int ph7_hashmap_simple_key(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
ph7_hashmap_node *pCur;
|
||||
ph7_hashmap *pMap;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return NULL */
|
||||
/* Invalid argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
pMap = (ph7_hashmap *)apArg[0]->x.pOther;
|
||||
pCur = pMap->pCur;
|
||||
if(pCur == 0) {
|
||||
/* Cursor does not point to anything,return NULL */
|
||||
/* Cursor does not point to anything, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2637,20 +2637,20 @@ static int ph7_hashmap_each(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_value *pVal;
|
||||
ph7_value sKey;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return FALSE */
|
||||
/* Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the internal representation that describe the input hashmap */
|
||||
pMap = (ph7_hashmap *)apArg[0]->x.pOther;
|
||||
if(pMap->pCur == 0) {
|
||||
/* Cursor does not point to anything,return FALSE */
|
||||
/* Cursor does not point to anything, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2757,13 +2757,13 @@ static int ph7_hashmap_values(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_value *pObj;
|
||||
sxu32 n;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return NULL */
|
||||
/* Invalid argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2814,13 +2814,13 @@ static int ph7_hashmap_keys(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxi32 rc;
|
||||
sxu32 n;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return NULL */
|
||||
/* Invalid argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2884,7 +2884,7 @@ static int ph7_hashmap_merge(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_value *pArray;
|
||||
int i;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2964,7 +2964,7 @@ static int ph7_hashmap_slice(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int bPreserve;
|
||||
sxi32 rc;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2977,7 +2977,7 @@ static int ph7_hashmap_slice(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
iOfft = (int)pSrc->nEntry + iOfft;
|
||||
}
|
||||
if(iOfft < 0 || iOfft > (int)pSrc->nEntry) {
|
||||
/* Invalid offset,return the last entry */
|
||||
/* Invalid offset, return the last entry */
|
||||
iOfft = (int)pSrc->nEntry - 1;
|
||||
}
|
||||
/* Get the length */
|
||||
@@ -3001,7 +3001,7 @@ static int ph7_hashmap_slice(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
return PH7_OK;
|
||||
}
|
||||
if(iLength < 1) {
|
||||
/* Don't bother processing,return the empty array */
|
||||
/* Don't bother processing, return the empty array */
|
||||
ph7_result_value(pCtx, pArray);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3066,7 +3066,7 @@ static int ph7_hashmap_splice(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int iLength, iOfft;
|
||||
sxi32 rc;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3099,7 +3099,7 @@ static int ph7_hashmap_splice(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
return PH7_OK;
|
||||
}
|
||||
if(iLength < 1) {
|
||||
/* Don't bother processing,return the empty array */
|
||||
/* Don't bother processing, return the empty array */
|
||||
ph7_result_value(pCtx, pArray);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3184,7 +3184,7 @@ static int ph7_hashmap_in_array(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
int bStrict;
|
||||
int rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing argument,return FALSE */
|
||||
/* Missing argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3230,13 +3230,13 @@ static int ph7_hashmap_search(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 n;
|
||||
int rc;
|
||||
if(nArg < 2) {
|
||||
/* Missing argument,return FALSE*/
|
||||
/* Missing argument, return FALSE*/
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
bStrict = FALSE;
|
||||
if(!ph7_value_is_array(apArg[1])) {
|
||||
/* hasystack must be an array,return FALSE */
|
||||
/* hasystack must be an array, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3266,7 +3266,7 @@ static int ph7_hashmap_search(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
PH7_MemObjRelease(&sVal);
|
||||
PH7_MemObjRelease(&sNeedle);
|
||||
if(rc == 0) {
|
||||
/* Match found,return key */
|
||||
/* Match found, return key */
|
||||
if(pEntry->iType == HASHMAP_INT_NODE) {
|
||||
/* INT key */
|
||||
ph7_result_int64(pCtx, pEntry->xKey.iKey);
|
||||
@@ -3282,7 +3282,7 @@ static int ph7_hashmap_search(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pEntry = pEntry->pPrev; /* Reverse link */
|
||||
n--;
|
||||
}
|
||||
/* No such value,return FALSE */
|
||||
/* No such value, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3309,7 +3309,7 @@ static int ph7_hashmap_diff(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 n;
|
||||
int i;
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3393,7 +3393,7 @@ static int ph7_hashmap_udiff(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 n;
|
||||
int i;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3472,7 +3472,7 @@ static int ph7_hashmap_diff_assoc(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
sxu32 n;
|
||||
int i;
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3566,7 +3566,7 @@ static int ph7_hashmap_diff_uassoc(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
sxu32 n;
|
||||
int i;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3656,7 +3656,7 @@ static int ph7_hashmap_diff_key(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
sxu32 n;
|
||||
int i;
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3735,7 +3735,7 @@ static int ph7_hashmap_intersect(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
sxu32 n;
|
||||
int i;
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3813,7 +3813,7 @@ static int ph7_hashmap_intersect_assoc(ph7_context *pCtx, int nArg, ph7_value **
|
||||
sxu32 n;
|
||||
int i;
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3901,7 +3901,7 @@ static int ph7_hashmap_intersect_key(ph7_context *pCtx, int nArg, ph7_value **ap
|
||||
sxu32 n;
|
||||
int i;
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -3987,7 +3987,7 @@ static int ph7_hashmap_uintersect(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
sxu32 n;
|
||||
int i;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Missing/Invalid arguments,return NULL */
|
||||
/* Missing/Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4060,7 +4060,7 @@ static int ph7_hashmap_fill(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_value *pArray;
|
||||
int i, nEntry;
|
||||
if(nArg < 3) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4099,13 +4099,13 @@ static int ph7_hashmap_fill_keys(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
ph7_value *pArray;
|
||||
sxu32 n;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return NULL */
|
||||
/* Invalid argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4147,13 +4147,13 @@ static int ph7_hashmap_combine(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_value *pArray;
|
||||
sxu32 n;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0]) || !ph7_value_is_array(apArg[1])) {
|
||||
/* Invalid argument,return FALSE */
|
||||
/* Invalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4161,7 +4161,7 @@ static int ph7_hashmap_combine(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
pKey = (ph7_hashmap *)apArg[0]->x.pOther;
|
||||
pValue = (ph7_hashmap *)apArg[1]->x.pOther;
|
||||
if(pKey->nEntry != pValue->nEntry) {
|
||||
/* Array length differs,return FALSE */
|
||||
/* Array length differs, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4202,13 +4202,13 @@ static int ph7_hashmap_reverse(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int bPreserve;
|
||||
sxu32 n;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return NULL */
|
||||
/* Invalid argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4259,13 +4259,13 @@ static int ph7_hashmap_unique(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxi32 rc;
|
||||
sxu32 n;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return NULL */
|
||||
/* Invalid argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4317,13 +4317,13 @@ static int ph7_hashmap_flip(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_value sVal;
|
||||
sxu32 n;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return NULL */
|
||||
/* Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return NULL */
|
||||
/* Invalid argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4432,19 +4432,19 @@ static int ph7_hashmap_sum(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
ph7_value *pObj;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return 0 */
|
||||
/* Missing arguments, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return 0 */
|
||||
/* Invalid argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
pMap = (ph7_hashmap *)apArg[0]->x.pOther;
|
||||
if(pMap->nEntry < 1) {
|
||||
/* Nothing to compute,return 0 */
|
||||
/* Nothing to compute, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4534,19 +4534,19 @@ static int ph7_hashmap_product(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
ph7_value *pObj;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return 0 */
|
||||
/* Missing arguments, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Make sure we are dealing with a valid hashmap */
|
||||
if(!ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid argument,return 0 */
|
||||
/* Invalid argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
pMap = (ph7_hashmap *)apArg[0]->x.pOther;
|
||||
if(pMap->nEntry < 1) {
|
||||
/* Nothing to compute,return 0 */
|
||||
/* Nothing to compute, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4583,7 +4583,7 @@ static int ph7_hashmap_rand(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
int nItem = 1;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return NULL */
|
||||
/* Missing argument, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4595,7 +4595,7 @@ static int ph7_hashmap_rand(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Point to the internal representation of the input hashmap */
|
||||
pMap = (ph7_hashmap *)apArg[0]->x.pOther;
|
||||
if(pMap->nEntry < 1) {
|
||||
/* Empty hashmap,return NULL */
|
||||
/* Empty hashmap, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4698,7 +4698,7 @@ static int ph7_hashmap_chunk(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxu32 nSize;
|
||||
sxu32 n;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid arguments,return NULL */
|
||||
/* Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4779,7 +4779,7 @@ static int ph7_hashmap_pad(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_value *pArray;
|
||||
int nEntry;
|
||||
if(nArg < 3 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid arguments,return NULL */
|
||||
/* Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4850,7 +4850,7 @@ static int ph7_hashmap_replace(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_value *pArray;
|
||||
int i;
|
||||
if(nArg < 1) {
|
||||
/* Invalid arguments,return NULL */
|
||||
/* Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4896,7 +4896,7 @@ static int ph7_hashmap_filter(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int keep;
|
||||
sxu32 n;
|
||||
if(nArg < 1 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid arguments,return NULL */
|
||||
/* Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4958,7 +4958,7 @@ static int ph7_hashmap_map(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_hashmap *pMap;
|
||||
sxu32 n;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[1])) {
|
||||
/* Invalid arguments,return NULL */
|
||||
/* Invalid arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5023,7 +5023,7 @@ static int ph7_hashmap_reduce(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_value sResult;
|
||||
sxu32 n;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid/Missing arguments,return NULL */
|
||||
/* Invalid/Missing arguments, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5076,7 +5076,7 @@ static int ph7_hashmap_walk(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
sxi32 rc;
|
||||
sxu32 n;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid/Missing arguments,return FALSE */
|
||||
/* Invalid/Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5105,7 +5105,7 @@ static int ph7_hashmap_walk(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Point to the next entry */
|
||||
pEntry = pEntry->pPrev; /* Reverse link */
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -5177,7 +5177,7 @@ static int ph7_hashmap_walk_recursive(ph7_context *pCtx, int nArg, ph7_value **a
|
||||
ph7_hashmap *pMap;
|
||||
sxi32 rc;
|
||||
if(nArg < 2 || !ph7_value_is_array(apArg[0])) {
|
||||
/* Invalid/Missing arguments,return FALSE */
|
||||
/* Invalid/Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
|
@@ -210,7 +210,7 @@ PH7_PRIVATE SyHashEntry *SyHashGet(SyHash *pHash, const void *pKey, sxu32 nKeyLe
|
||||
return 0;
|
||||
}
|
||||
if(pHash->nEntry < 1 || nKeyLen < 1) {
|
||||
/* Don't bother hashing,return immediately */
|
||||
/* Don't bother hashing, return immediately */
|
||||
return 0;
|
||||
}
|
||||
pEntry = HashGetEntry(&(*pHash), pKey, nKeyLen);
|
||||
|
@@ -273,33 +273,6 @@ PH7_PRIVATE sxi32 SyMemBackendFree(SyMemBackend *pBackend, void *pChunk) {
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
PH7_PRIVATE sxi32 SyMemBackendMakeThreadSafe(SyMemBackend *pBackend, const SyMutexMethods *pMethods) {
|
||||
SyMutex *pMutex;
|
||||
if(SXMEM_BACKEND_CORRUPT(pBackend) || pMethods == 0 || pMethods->xNew == 0) {
|
||||
return SXERR_CORRUPT;
|
||||
}
|
||||
pMutex = pMethods->xNew(SXMUTEX_TYPE_FAST);
|
||||
if(pMutex == 0) {
|
||||
return SXERR_OS;
|
||||
}
|
||||
/* Attach the mutex to the memory backend */
|
||||
pBackend->pMutex = pMutex;
|
||||
pBackend->pMutexMethods = pMethods;
|
||||
return SXRET_OK;
|
||||
}
|
||||
PH7_PRIVATE sxi32 SyMemBackendDisbaleMutexing(SyMemBackend *pBackend) {
|
||||
if(SXMEM_BACKEND_CORRUPT(pBackend)) {
|
||||
return SXERR_CORRUPT;
|
||||
}
|
||||
if(pBackend->pMutex == 0) {
|
||||
/* There is no mutex subsystem at all */
|
||||
return SXRET_OK;
|
||||
}
|
||||
SyMutexRelease(pBackend->pMutexMethods, pBackend->pMutex);
|
||||
pBackend->pMutexMethods = 0;
|
||||
pBackend->pMutex = 0;
|
||||
return SXRET_OK;
|
||||
}
|
||||
/*
|
||||
* Memory pool allocator
|
||||
*/
|
||||
@@ -564,7 +537,6 @@ static sxi32 MemBackendRelease(SyMemBackend *pBackend) {
|
||||
pBackend->pMethods = 0;
|
||||
pBackend->pBlocks = 0;
|
||||
pBackend->nMagic = 0x2626;
|
||||
#
|
||||
return SXRET_OK;
|
||||
}
|
||||
PH7_PRIVATE sxi32 SyMemBackendRelease(SyMemBackend *pBackend) {
|
||||
|
@@ -1,222 +0,0 @@
|
||||
/**
|
||||
* @PROJECT PH7 Engine for the AerScript Interpreter
|
||||
* @COPYRIGHT See COPYING in the top level directory
|
||||
* @FILE engine/lib/mutex.c
|
||||
* @DESCRIPTION Thread safe MUTEX implementation for the PH7 Engine
|
||||
* @DEVELOPERS Symisc Systems <devel@symisc.net>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
#include "ph7int.h"
|
||||
#if defined(__WINNT__)
|
||||
#include <Windows.h>
|
||||
#else
|
||||
#include <stdlib.h>
|
||||
#endif
|
||||
|
||||
#if defined(__WINNT__)
|
||||
struct SyMutex {
|
||||
CRITICAL_SECTION sMutex;
|
||||
sxu32 nType; /* Mutex type,one of SXMUTEX_TYPE_* */
|
||||
};
|
||||
/* Preallocated static mutex */
|
||||
static SyMutex aStaticMutexes[] = {
|
||||
{{0}, SXMUTEX_TYPE_STATIC_1},
|
||||
{{0}, SXMUTEX_TYPE_STATIC_2},
|
||||
{{0}, SXMUTEX_TYPE_STATIC_3},
|
||||
{{0}, SXMUTEX_TYPE_STATIC_4},
|
||||
{{0}, SXMUTEX_TYPE_STATIC_5},
|
||||
{{0}, SXMUTEX_TYPE_STATIC_6}
|
||||
};
|
||||
static BOOL winMutexInit = FALSE;
|
||||
static LONG winMutexLock = 0;
|
||||
|
||||
static sxi32 WinMutexGlobaInit(void) {
|
||||
LONG rc;
|
||||
rc = InterlockedCompareExchange(&winMutexLock, 1, 0);
|
||||
if(rc == 0) {
|
||||
sxu32 n;
|
||||
for(n = 0 ; n < SX_ARRAYSIZE(aStaticMutexes) ; ++n) {
|
||||
InitializeCriticalSection(&aStaticMutexes[n].sMutex);
|
||||
}
|
||||
winMutexInit = TRUE;
|
||||
} else {
|
||||
/* Someone else is doing this for us */
|
||||
while(winMutexInit == FALSE) {
|
||||
Sleep(1);
|
||||
}
|
||||
}
|
||||
return SXRET_OK;
|
||||
}
|
||||
static void WinMutexGlobalRelease(void) {
|
||||
LONG rc;
|
||||
rc = InterlockedCompareExchange(&winMutexLock, 0, 1);
|
||||
if(rc == 1) {
|
||||
/* The first to decrement to zero does the actual global release */
|
||||
if(winMutexInit == TRUE) {
|
||||
sxu32 n;
|
||||
for(n = 0 ; n < SX_ARRAYSIZE(aStaticMutexes) ; ++n) {
|
||||
DeleteCriticalSection(&aStaticMutexes[n].sMutex);
|
||||
}
|
||||
winMutexInit = FALSE;
|
||||
}
|
||||
}
|
||||
}
|
||||
static SyMutex *WinMutexNew(int nType) {
|
||||
SyMutex *pMutex = 0;
|
||||
if(nType == SXMUTEX_TYPE_FAST || nType == SXMUTEX_TYPE_RECURSIVE) {
|
||||
/* Allocate a new mutex */
|
||||
pMutex = (SyMutex *)HeapAlloc(GetProcessHeap(), 0, sizeof(SyMutex));
|
||||
if(pMutex == 0) {
|
||||
return 0;
|
||||
}
|
||||
InitializeCriticalSection(&pMutex->sMutex);
|
||||
} else {
|
||||
/* Use a pre-allocated static mutex */
|
||||
if(nType > SXMUTEX_TYPE_STATIC_6) {
|
||||
nType = SXMUTEX_TYPE_STATIC_6;
|
||||
}
|
||||
pMutex = &aStaticMutexes[nType - 3];
|
||||
}
|
||||
pMutex->nType = nType;
|
||||
return pMutex;
|
||||
}
|
||||
static void WinMutexRelease(SyMutex *pMutex) {
|
||||
if(pMutex->nType == SXMUTEX_TYPE_FAST || pMutex->nType == SXMUTEX_TYPE_RECURSIVE) {
|
||||
DeleteCriticalSection(&pMutex->sMutex);
|
||||
HeapFree(GetProcessHeap(), 0, pMutex);
|
||||
}
|
||||
}
|
||||
static void WinMutexEnter(SyMutex *pMutex) {
|
||||
EnterCriticalSection(&pMutex->sMutex);
|
||||
}
|
||||
static sxi32 WinMutexTryEnter(SyMutex *pMutex) {
|
||||
#ifdef _WIN32_WINNT
|
||||
BOOL rc;
|
||||
/* Only WindowsNT platforms */
|
||||
rc = TryEnterCriticalSection(&pMutex->sMutex);
|
||||
if(rc) {
|
||||
return SXRET_OK;
|
||||
} else {
|
||||
return SXERR_BUSY;
|
||||
}
|
||||
#else
|
||||
return SXERR_NOTIMPLEMENTED;
|
||||
#endif
|
||||
}
|
||||
static void WinMutexLeave(SyMutex *pMutex) {
|
||||
LeaveCriticalSection(&pMutex->sMutex);
|
||||
}
|
||||
/* Export Windows mutex interfaces */
|
||||
static const SyMutexMethods sWinMutexMethods = {
|
||||
WinMutexGlobaInit, /* xGlobalInit() */
|
||||
WinMutexGlobalRelease, /* xGlobalRelease() */
|
||||
WinMutexNew, /* xNew() */
|
||||
WinMutexRelease, /* xRelease() */
|
||||
WinMutexEnter, /* xEnter() */
|
||||
WinMutexTryEnter, /* xTryEnter() */
|
||||
WinMutexLeave /* xLeave() */
|
||||
};
|
||||
PH7_PRIVATE const SyMutexMethods *SyMutexExportMethods(void) {
|
||||
return &sWinMutexMethods;
|
||||
}
|
||||
#elif defined(__UNIXES__)
|
||||
#include <pthread.h>
|
||||
struct SyMutex {
|
||||
pthread_mutex_t sMutex;
|
||||
sxu32 nType;
|
||||
};
|
||||
static SyMutex *UnixMutexNew(int nType) {
|
||||
static SyMutex aStaticMutexes[] = {
|
||||
{PTHREAD_MUTEX_INITIALIZER, SXMUTEX_TYPE_STATIC_1},
|
||||
{PTHREAD_MUTEX_INITIALIZER, SXMUTEX_TYPE_STATIC_2},
|
||||
{PTHREAD_MUTEX_INITIALIZER, SXMUTEX_TYPE_STATIC_3},
|
||||
{PTHREAD_MUTEX_INITIALIZER, SXMUTEX_TYPE_STATIC_4},
|
||||
{PTHREAD_MUTEX_INITIALIZER, SXMUTEX_TYPE_STATIC_5},
|
||||
{PTHREAD_MUTEX_INITIALIZER, SXMUTEX_TYPE_STATIC_6}
|
||||
};
|
||||
SyMutex *pMutex;
|
||||
if(nType == SXMUTEX_TYPE_FAST || nType == SXMUTEX_TYPE_RECURSIVE) {
|
||||
pthread_mutexattr_t sRecursiveAttr;
|
||||
/* Allocate a new mutex */
|
||||
pMutex = (SyMutex *)malloc(sizeof(SyMutex));
|
||||
if(pMutex == 0) {
|
||||
return 0;
|
||||
}
|
||||
if(nType == SXMUTEX_TYPE_RECURSIVE) {
|
||||
pthread_mutexattr_init(&sRecursiveAttr);
|
||||
pthread_mutexattr_settype(&sRecursiveAttr, PTHREAD_MUTEX_RECURSIVE);
|
||||
}
|
||||
pthread_mutex_init(&pMutex->sMutex, nType == SXMUTEX_TYPE_RECURSIVE ? &sRecursiveAttr : 0);
|
||||
if(nType == SXMUTEX_TYPE_RECURSIVE) {
|
||||
pthread_mutexattr_destroy(&sRecursiveAttr);
|
||||
}
|
||||
} else {
|
||||
/* Use a pre-allocated static mutex */
|
||||
if(nType > SXMUTEX_TYPE_STATIC_6) {
|
||||
nType = SXMUTEX_TYPE_STATIC_6;
|
||||
}
|
||||
pMutex = &aStaticMutexes[nType - 3];
|
||||
}
|
||||
pMutex->nType = nType;
|
||||
return pMutex;
|
||||
}
|
||||
static void UnixMutexRelease(SyMutex *pMutex) {
|
||||
if(pMutex->nType == SXMUTEX_TYPE_FAST || pMutex->nType == SXMUTEX_TYPE_RECURSIVE) {
|
||||
pthread_mutex_destroy(&pMutex->sMutex);
|
||||
free(pMutex);
|
||||
}
|
||||
}
|
||||
static void UnixMutexEnter(SyMutex *pMutex) {
|
||||
pthread_mutex_lock(&pMutex->sMutex);
|
||||
}
|
||||
static void UnixMutexLeave(SyMutex *pMutex) {
|
||||
pthread_mutex_unlock(&pMutex->sMutex);
|
||||
}
|
||||
/* Export pthread mutex interfaces */
|
||||
static const SyMutexMethods sPthreadMutexMethods = {
|
||||
0, /* xGlobalInit() */
|
||||
0, /* xGlobalRelease() */
|
||||
UnixMutexNew, /* xNew() */
|
||||
UnixMutexRelease, /* xRelease() */
|
||||
UnixMutexEnter, /* xEnter() */
|
||||
0, /* xTryEnter() */
|
||||
UnixMutexLeave /* xLeave() */
|
||||
};
|
||||
PH7_PRIVATE const SyMutexMethods *SyMutexExportMethods(void) {
|
||||
return &sPthreadMutexMethods;
|
||||
}
|
||||
#else
|
||||
/* Host application must register their own mutex subsystem if the target
|
||||
* platform is not an UNIX-like or windows systems.
|
||||
*/
|
||||
struct SyMutex {
|
||||
sxu32 nType;
|
||||
};
|
||||
static SyMutex *DummyMutexNew(int nType) {
|
||||
static SyMutex sMutex;
|
||||
SXUNUSED(nType);
|
||||
return &sMutex;
|
||||
}
|
||||
static void DummyMutexRelease(SyMutex *pMutex) {
|
||||
SXUNUSED(pMutex);
|
||||
}
|
||||
static void DummyMutexEnter(SyMutex *pMutex) {
|
||||
SXUNUSED(pMutex);
|
||||
}
|
||||
static void DummyMutexLeave(SyMutex *pMutex) {
|
||||
SXUNUSED(pMutex);
|
||||
}
|
||||
/* Export the dummy mutex interfaces */
|
||||
static const SyMutexMethods sDummyMutexMethods = {
|
||||
0, /* xGlobalInit() */
|
||||
0, /* xGlobalRelease() */
|
||||
DummyMutexNew, /* xNew() */
|
||||
DummyMutexRelease, /* xRelease() */
|
||||
DummyMutexEnter, /* xEnter() */
|
||||
0, /* xTryEnter() */
|
||||
DummyMutexLeave /* xLeave() */
|
||||
};
|
||||
PH7_PRIVATE const SyMutexMethods *SyMutexExportMethods(void) {
|
||||
return &sDummyMutexMethods;
|
||||
}
|
||||
#endif /* __WINNT__ */
|
@@ -220,7 +220,7 @@ static ph7_real MemObjRealValue(ph7_value *pObj) {
|
||||
* Return the string representation of a given ph7_value.
|
||||
* This function never fail and always return SXRET_OK.
|
||||
*/
|
||||
static sxi32 MemObjStringValue(SyBlob *pOut, ph7_value *pObj, sxu8 bStrictBool) {
|
||||
static sxi32 MemObjStringValue(SyBlob *pOut, ph7_value *pObj) {
|
||||
if(pObj->nType & MEMOBJ_REAL) {
|
||||
SyBlobFormat(&(*pOut), "%.15g", pObj->x.rVal);
|
||||
} else if(pObj->nType & MEMOBJ_INT) {
|
||||
@@ -230,9 +230,7 @@ static sxi32 MemObjStringValue(SyBlob *pOut, ph7_value *pObj, sxu8 bStrictBool)
|
||||
if(pObj->x.iVal) {
|
||||
SyBlobAppend(&(*pOut), "TRUE", sizeof("TRUE") - 1);
|
||||
} else {
|
||||
if(!bStrictBool) {
|
||||
SyBlobAppend(&(*pOut), "FALSE", sizeof("FALSE") - 1);
|
||||
}
|
||||
SyBlobAppend(&(*pOut), "FALSE", sizeof("FALSE") - 1);
|
||||
}
|
||||
} else if(pObj->nType & MEMOBJ_CHAR) {
|
||||
if(pObj->x.iVal > 0) {
|
||||
@@ -521,7 +519,7 @@ PH7_PRIVATE sxi32 PH7_MemObjToCallback(ph7_value *pObj) {
|
||||
sxi32 rc = SXRET_OK;
|
||||
if((pObj->nType & (MEMOBJ_CALL | MEMOBJ_STRING)) == 0) {
|
||||
SyBlobReset(&pObj->sBlob); /* Reset the internal buffer */
|
||||
rc = MemObjStringValue(&pObj->sBlob, &(*pObj), TRUE);
|
||||
rc = MemObjStringValue(&pObj->sBlob, &(*pObj));
|
||||
}
|
||||
MemObjSetType(pObj, MEMOBJ_CALL);
|
||||
return rc;
|
||||
@@ -546,7 +544,7 @@ PH7_PRIVATE sxi32 PH7_MemObjToString(ph7_value *pObj) {
|
||||
if((pObj->nType & MEMOBJ_CALL) == 0) {
|
||||
/* Perform the conversion */
|
||||
SyBlobReset(&pObj->sBlob); /* Reset the internal buffer */
|
||||
rc = MemObjStringValue(&pObj->sBlob, &(*pObj), TRUE);
|
||||
rc = MemObjStringValue(&pObj->sBlob, &(*pObj));
|
||||
}
|
||||
MemObjSetType(pObj, MEMOBJ_STRING);
|
||||
}
|
||||
@@ -724,6 +722,16 @@ PH7_PRIVATE sxi32 PH7_MemObjIsNull(ph7_value *pObj) {
|
||||
/* Assume empty by default */
|
||||
return TRUE;
|
||||
}
|
||||
/*
|
||||
* Check whether the ph7_value is an array (hashmap)
|
||||
* Returns TRUE if hashmap, FALSE otherwise.
|
||||
*/
|
||||
PH7_PRIVATE sxi32 PH7_MemObjIsHashmap(ph7_value *pObj) {
|
||||
if(pObj->nType & MEMOBJ_HASHMAP) {
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
/*
|
||||
* Check whether the ph7_value is numeric [i.e: int/float/bool] or looks
|
||||
* like a numeric number [i.e: if the ph7_value is of type string.].
|
||||
@@ -1068,6 +1076,20 @@ PH7_PRIVATE sxi32 PH7_MemObjCmp(ph7_value *pObj1, ph7_value *pObj2, int bStrict,
|
||||
/* Combine flag together */
|
||||
iComb = pObj1->nType | pObj2->nType;
|
||||
if(iComb & (MEMOBJ_NULL | MEMOBJ_RES | MEMOBJ_BOOL)) {
|
||||
/* Explicitly handle NULL/VOID comparisons with numeric types */
|
||||
if(pObj1->nType & (MEMOBJ_NULL | MEMOBJ_VOID))
|
||||
{
|
||||
/* Convert NULL/VOID to numeric */
|
||||
PH7_MemObjToNumeric(pObj1);
|
||||
}
|
||||
if(pObj2->nType & (MEMOBJ_NULL | MEMOBJ_VOID)) {
|
||||
/* Convert NULL/VOID to numeric */
|
||||
PH7_MemObjToNumeric(pObj2);
|
||||
}
|
||||
if(PH7_MemObjIsNumeric(pObj1) && PH7_MemObjIsNumeric(pObj2)) {
|
||||
/* Jump to the numeric comparison section */
|
||||
goto Numeric;
|
||||
}
|
||||
/* Convert to boolean: Keep in mind FALSE < TRUE */
|
||||
if((pObj1->nType & MEMOBJ_BOOL) == 0) {
|
||||
PH7_MemObjToBool(pObj1);
|
||||
@@ -1362,7 +1384,7 @@ PH7_PRIVATE sxi32 PH7_MemObjDump(
|
||||
SyBlob *pContents = &pObj->sBlob;
|
||||
/* Get a printable representation of the contents */
|
||||
if((pObj->nType & (MEMOBJ_STRING | MEMOBJ_CALL)) == 0) {
|
||||
MemObjStringValue(&(*pOut), &(*pObj), FALSE);
|
||||
MemObjStringValue(&(*pOut), &(*pObj));
|
||||
} else {
|
||||
/* Append length first */
|
||||
if(ShowType) {
|
||||
|
@@ -673,7 +673,7 @@ static void PH7_ClassInstanceRelease(ph7_class_instance *pThis) {
|
||||
ph7_vm *pVm;
|
||||
if(pThis->iFlags & CLASS_INSTANCE_DESTROYED) {
|
||||
/*
|
||||
* Already destroyed,return immediately.
|
||||
* Already destroyed, return immediately.
|
||||
* This could happend if someone perform unset($this) in the destructor body.
|
||||
*/
|
||||
return;
|
||||
@@ -979,7 +979,7 @@ PH7_PRIVATE sxi32 PH7_ClassInstanceCallMagicMethod(
|
||||
/* Make sure the magic method is available */
|
||||
pMeth = PH7_ClassExtractMethod(&(*pClass), zMethod, nByte);
|
||||
if(pMeth == 0) {
|
||||
/* No such method,return immediately */
|
||||
/* No such method, return immediately */
|
||||
return SXERR_NOTFOUND;
|
||||
}
|
||||
nArg = 0;
|
||||
|
@@ -52,8 +52,10 @@ static const ph7_expr_op aOpTable[] = {
|
||||
{ {"(resource)", sizeof("(resource)") - 1}, EXPR_OP_TYPECAST, 4, EXPR_OP_ASSOC_RIGHT, PH7_OP_CVT_RES},
|
||||
{ {"(void)", sizeof("(void)") - 1 }, EXPR_OP_TYPECAST, 4, EXPR_OP_ASSOC_RIGHT, PH7_OP_CVT_VOID },
|
||||
/* Binary operators */
|
||||
/* Precedence 6,non-associative */
|
||||
{ {"is", sizeof("is") - 1}, EXPR_OP_IS, 6, EXPR_OP_NON_ASSOC, PH7_OP_IS},
|
||||
/* Precedence 5,non-associative */
|
||||
{ {"is", sizeof("is") - 1}, EXPR_OP_IS, 5, EXPR_OP_NON_ASSOC, PH7_OP_IS},
|
||||
/* Precedence 6, right-associative */
|
||||
{ {"**", sizeof(char) * 2}, EXPR_OP_POW, 6, EXPR_OP_ASSOC_RIGHT, PH7_OP_POW},
|
||||
/* Precedence 7,left-associative */
|
||||
{ {"*", sizeof(char)}, EXPR_OP_MUL, 7, EXPR_OP_ASSOC_LEFT, PH7_OP_MUL},
|
||||
{ {"/", sizeof(char)}, EXPR_OP_DIV, 7, EXPR_OP_ASSOC_LEFT, PH7_OP_DIV},
|
||||
@@ -97,6 +99,7 @@ static const ph7_expr_op aOpTable[] = {
|
||||
{ {"+=", sizeof(char) * 2}, EXPR_OP_ADD_ASSIGN, 20, EXPR_OP_ASSOC_RIGHT, PH7_OP_ADD_STORE },
|
||||
{ {"-=", sizeof(char) * 2}, EXPR_OP_SUB_ASSIGN, 20, EXPR_OP_ASSOC_RIGHT, PH7_OP_SUB_STORE },
|
||||
{ {"*=", sizeof(char) * 2}, EXPR_OP_MUL_ASSIGN, 20, EXPR_OP_ASSOC_RIGHT, PH7_OP_MUL_STORE },
|
||||
{ {"**=", sizeof(char) * 3}, EXPR_OP_POW_ASSIGN, 20, EXPR_OP_ASSOC_RIGHT, PH7_OP_POW_STORE },
|
||||
{ {"/=", sizeof(char) * 2}, EXPR_OP_DIV_ASSIGN, 20, EXPR_OP_ASSOC_RIGHT, PH7_OP_DIV_STORE },
|
||||
{ {"%=", sizeof(char) * 2}, EXPR_OP_MOD_ASSIGN, 20, EXPR_OP_ASSOC_RIGHT, PH7_OP_MOD_STORE },
|
||||
{ {"&=", sizeof(char) * 2}, EXPR_OP_AND_ASSIGN, 20, EXPR_OP_ASSOC_RIGHT, PH7_OP_BAND_STORE },
|
||||
@@ -1020,8 +1023,32 @@ static sxi32 ExprMakeTree(ph7_gen_state *pGen, ph7_expr_node **apNode, sxi32 nTo
|
||||
iLeft = iCur;
|
||||
}
|
||||
}
|
||||
/* Handle right associative binary operators with precedence 6 */
|
||||
iRight = -1;
|
||||
for(iCur = nToken - 1; iCur >= 0; iCur--) {
|
||||
if(apNode[iCur] == 0) {
|
||||
continue;
|
||||
}
|
||||
pNode = apNode[iCur];
|
||||
if(pNode->pOp && pNode->pOp->iPrec == 6 && pNode->pLeft == 0) {
|
||||
/* Get the left node */
|
||||
iLeft = iCur - 1;
|
||||
while(iLeft >= 0 && apNode[iLeft] == 0) {
|
||||
iLeft--;
|
||||
}
|
||||
if(iLeft < 0 || iRight < 0 || !NODE_ISTERM(iRight) || !NODE_ISTERM(iLeft)) {
|
||||
/* Syntax error */
|
||||
PH7_GenCompileError(pGen, E_ERROR, pNode->pStart->nLine, "'%z': Missing/Invalid operand", &pNode->pOp->sOp);
|
||||
}
|
||||
/* Link the node to the tree */
|
||||
pNode->pLeft = apNode[iRight];
|
||||
pNode->pRight = apNode[iLeft];
|
||||
apNode[iLeft] = apNode[iRight] = 0;
|
||||
}
|
||||
iRight = iCur;
|
||||
}
|
||||
/* Process left and non-associative binary operators [i.e: *,/,&&,||...]*/
|
||||
for(i = 6 ; i < 18 ; i++) {
|
||||
for(i = 5 ; i < 18 ; i++) {
|
||||
iLeft = -1;
|
||||
for(iCur = 0 ; iCur < nToken ; ++iCur) {
|
||||
if(apNode[iCur] == 0) {
|
||||
|
52
engine/vfs.c
52
engine/vfs.c
@@ -134,7 +134,7 @@ static int PH7_vfs_getcwd(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
if(pVfs == 0 || pVfs->xGetcwd == 0) {
|
||||
SXUNUSED(nArg); /* cc warning */
|
||||
SXUNUSED(apArg);
|
||||
/* IO routine not implemented,return NULL */
|
||||
/* IO routine not implemented, return NULL */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -172,7 +172,7 @@ static int PH7_vfs_rmdir(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Point to the underlying vfs */
|
||||
pVfs = (ph7_vfs *)ph7_context_user_data(pCtx);
|
||||
if(pVfs == 0 || pVfs->xRmdir == 0) {
|
||||
/* IO routine not implemented,return NULL */
|
||||
/* IO routine not implemented, return NULL */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -209,7 +209,7 @@ static int PH7_vfs_is_dir(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Point to the underlying vfs */
|
||||
pVfs = (ph7_vfs *)ph7_context_user_data(pCtx);
|
||||
if(pVfs == 0 || pVfs->xIsdir == 0) {
|
||||
/* IO routine not implemented,return NULL */
|
||||
/* IO routine not implemented, return NULL */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -422,13 +422,13 @@ static int PH7_vfs_usleep(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_vfs *pVfs;
|
||||
int nSleep;
|
||||
if(nArg < 1 || !ph7_value_is_int(apArg[0])) {
|
||||
/* Missing/Invalid argument,return immediately */
|
||||
/* Missing/Invalid argument, return immediately */
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the underlying vfs */
|
||||
pVfs = (ph7_vfs *)ph7_context_user_data(pCtx);
|
||||
if(pVfs == 0 || pVfs->xSleep == 0) {
|
||||
/* IO routine not implemented,return NULL */
|
||||
/* IO routine not implemented, return NULL */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -438,7 +438,7 @@ static int PH7_vfs_usleep(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Amount to sleep */
|
||||
nSleep = ph7_value_to_int(apArg[0]);
|
||||
if(nSleep < 0) {
|
||||
/* Invalid value,return immediately */
|
||||
/* Invalid value, return immediately */
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Perform the requested operation (Microseconds) */
|
||||
@@ -1175,14 +1175,14 @@ static int PH7_vfs_filetype(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
const char *zPath;
|
||||
ph7_vfs *pVfs;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid argument,return 'unknown' */
|
||||
/* Missing/Invalid argument, return 'unknown' */
|
||||
ph7_result_string(pCtx, "unknown", sizeof("unknown") - 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the underlying vfs */
|
||||
pVfs = (ph7_vfs *)ph7_context_user_data(pCtx);
|
||||
if(pVfs == 0 || pVfs->xFiletype == 0) {
|
||||
/* IO routine not implemented,return NULL */
|
||||
/* IO routine not implemented, return NULL */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -1424,7 +1424,7 @@ static int PH7_vfs_putenv(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Point to the underlying vfs */
|
||||
pVfs = (ph7_vfs *)ph7_context_user_data(pCtx);
|
||||
if(pVfs == 0 || pVfs->xSetenv == 0) {
|
||||
/* IO routine not implemented,return NULL */
|
||||
/* IO routine not implemented, return NULL */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -1551,7 +1551,7 @@ static int PH7_builtin_basename(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
const char *zPath, *zBase, *zEnd;
|
||||
int c, d, iLen;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid argument,return the empty string */
|
||||
/* Missing/Invalid argument, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1691,7 +1691,7 @@ static int PH7_builtin_pathinfo(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
SyString *pComp;
|
||||
int iLen;
|
||||
if(nArg < 1 || !ph7_value_is_string(apArg[0])) {
|
||||
/* Missing/Invalid argument,return the empty string */
|
||||
/* Missing/Invalid argument, return the empty string */
|
||||
ph7_result_string(pCtx, "", 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1755,7 +1755,7 @@ static int PH7_builtin_pathinfo(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
pArray = ph7_context_new_array(pCtx);
|
||||
pValue = ph7_context_new_scalar(pCtx);
|
||||
if(pArray == 0 || pValue == 0) {
|
||||
/* Out of mem,return NULL */
|
||||
/* Out of mem, return NULL */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -2174,7 +2174,7 @@ static int PH7_vfs_umask(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Point to the underlying vfs */
|
||||
pVfs = (ph7_vfs *)ph7_context_user_data(pCtx);
|
||||
if(pVfs == 0 || pVfs->xUmask == 0) {
|
||||
/* IO routine not implemented,return -1 */
|
||||
/* IO routine not implemented, return -1 */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -2209,7 +2209,7 @@ static int PH7_vfs_sys_get_temp_dir(ph7_context *pCtx, int nArg, ph7_value **apA
|
||||
if(pVfs == 0 || pVfs->xTempDir == 0) {
|
||||
SXUNUSED(nArg); /* cc warning */
|
||||
SXUNUSED(apArg);
|
||||
/* IO routine not implemented,return "" */
|
||||
/* IO routine not implemented, return "" */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -2264,7 +2264,7 @@ static int PH7_vfs_getmypid(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
if(pVfs == 0 || pVfs->xProcessId == 0) {
|
||||
SXUNUSED(nArg); /* cc warning */
|
||||
SXUNUSED(apArg);
|
||||
/* IO routine not implemented,return -1 */
|
||||
/* IO routine not implemented, return -1 */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -2294,7 +2294,7 @@ static int PH7_vfs_getmyuid(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
if(pVfs == 0 || pVfs->xUid == 0) {
|
||||
SXUNUSED(nArg); /* cc warning */
|
||||
SXUNUSED(apArg);
|
||||
/* IO routine not implemented,return -1 */
|
||||
/* IO routine not implemented, return -1 */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -2324,7 +2324,7 @@ static int PH7_vfs_getmygid(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
if(pVfs == 0 || pVfs->xGid == 0) {
|
||||
SXUNUSED(nArg); /* cc warning */
|
||||
SXUNUSED(apArg);
|
||||
/* IO routine not implemented,return -1 */
|
||||
/* IO routine not implemented, return -1 */
|
||||
PH7_VmThrowError(pCtx->pVm, PH7_CTX_WARNING,
|
||||
"IO routine(%s) not implemented in the underlying VFS",
|
||||
ph7_function_name(pCtx)
|
||||
@@ -2922,12 +2922,12 @@ static ph7_int64 StreamReadLine(io_private *pDev, const char **pzData, ph7_int64
|
||||
/* Try to extract a line */
|
||||
rc = GetLine(pDev, &n, pzData);
|
||||
if(rc == SXRET_OK) {
|
||||
/* Got one,return immediately */
|
||||
/* Got one, return immediately */
|
||||
pDev->nOfft += (sxu32)n;
|
||||
return n;
|
||||
}
|
||||
if(nMaxLen > 0 && (SyBlobLength(&pDev->sBuffer) - pDev->nOfft >= nMaxLen)) {
|
||||
/* Read limit reached,return the available data */
|
||||
/* Read limit reached, return the available data */
|
||||
*pzData = (const char *)SyBlobDataAt(&pDev->sBuffer, pDev->nOfft);
|
||||
n = SyBlobLength(&pDev->sBuffer) - pDev->nOfft;
|
||||
/* Reset the working buffer */
|
||||
@@ -2937,7 +2937,7 @@ static ph7_int64 StreamReadLine(io_private *pDev, const char **pzData, ph7_int64
|
||||
}
|
||||
}
|
||||
if(SyBlobLength(&pDev->sBuffer) - pDev->nOfft > 0) {
|
||||
/* Read limit reached,return the available data */
|
||||
/* Read limit reached, return the available data */
|
||||
*pzData = (const char *)SyBlobDataAt(&pDev->sBuffer, pDev->nOfft);
|
||||
n = SyBlobLength(&pDev->sBuffer) - pDev->nOfft;
|
||||
/* Reset the working buffer */
|
||||
@@ -3836,7 +3836,7 @@ static int PH7_builtin_file_put_contents(ph7_context *pCtx, int nArg, ph7_value
|
||||
/* Data to write */
|
||||
zData = ph7_value_to_string(apArg[1], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Nothing to write,return immediately */
|
||||
/* Nothing to write, return immediately */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4544,7 +4544,7 @@ static int PH7_builtin_fprintf(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
/* Extract the string format */
|
||||
zFormat = ph7_value_to_string(apArg[1], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return zero */
|
||||
/* Empty string, return zero */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4604,7 +4604,7 @@ static int PH7_builtin_vfprintf(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
/* Extract the string format */
|
||||
zFormat = ph7_value_to_string(apArg[1], &nLen);
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return zero */
|
||||
/* Empty string, return zero */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -4700,7 +4700,7 @@ static int StrModeToFlags(ph7_context *pCtx, const char *zMode, int nLen) {
|
||||
}
|
||||
} else if(c == 'x' || c == 'X') {
|
||||
/* Exclusive access.
|
||||
* If the file already exists,return immediately with a failure code.
|
||||
* If the file already exists, return immediately with a failure code.
|
||||
* Otherwise create a new file.
|
||||
*/
|
||||
iFlag = PH7_IO_OPEN_WRONLY | PH7_IO_OPEN_EXCL;
|
||||
@@ -4848,7 +4848,7 @@ static int PH7_builtin_fopen(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_context_free_chunk(pCtx, pDev);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* All done,return the io_private instance as a resource */
|
||||
/* All done, return the io_private instance as a resource */
|
||||
ph7_result_resource(pCtx, pDev);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -8118,4 +8118,4 @@ PH7_PRIVATE void *PH7_ExportStderr(ph7_vm *pVm) {
|
||||
/* NULL or STDERR */
|
||||
return pVm->pStderr;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
890
engine/vm.c
890
engine/vm.c
File diff suppressed because it is too large
Load Diff
@@ -136,6 +136,8 @@ static sxi32 PH7_CompileHalt(ph7_gen_state *pGen);
|
||||
static sxi32 PH7_CompileVar(ph7_gen_state *pGen);
|
||||
static sxi32 PH7_CompileNamespace(ph7_gen_state *pGen);
|
||||
static sxi32 PH7_CompileUsing(ph7_gen_state *pGen);
|
||||
static sxi32 PH7_CompileImport(ph7_gen_state *pGen);
|
||||
static sxi32 PH7_CompileInclude(ph7_gen_state *pGen);
|
||||
static sxi32 PH7_GenStateProcessArgValue(ph7_gen_state *pGen, ph7_vm_func_arg *pArg, SyToken *pIn, SyToken *pEnd);
|
||||
static sxi32 PH7_GenStateCollectFuncArgs(ph7_vm_func *pFunc, ph7_gen_state *pGen, SyToken *pEnd);
|
||||
static sxi32 PH7_GenStateCompileFuncBody(ph7_gen_state *pGen, ph7_vm_func *pFunc);
|
||||
|
@@ -360,6 +360,7 @@ typedef sxi64 ph7_int64;
|
||||
#define PH7_AERSCRIPT_CODE 0x01 /* AerScript Code */
|
||||
#define PH7_AERSCRIPT_CHNK 0x02 /* AerScript Chunk of Code */
|
||||
#define PH7_AERSCRIPT_EXPR 0x04 /* AerScript Expression */
|
||||
#define PH7_AERSCRIPT_FILE 0x08 /* AerScript File Inclusion */
|
||||
/*
|
||||
* Call Context Error Message Severity Level.
|
||||
*
|
||||
|
@@ -806,8 +806,6 @@ struct ph7 {
|
||||
SyMemBackend sAllocator; /* Low level memory allocation subsystem */
|
||||
const ph7_vfs *pVfs; /* Underlying Virtual File System */
|
||||
ph7_conf xConf; /* Configuration */
|
||||
const SyMutexMethods *pMethods; /* Mutex methods */
|
||||
SyMutex *pMutex; /* Per-engine mutex */
|
||||
ph7_vm *pVms; /* List of active VM */
|
||||
sxi32 iVm; /* Total number of active VM */
|
||||
ph7 *pNext, *pPrev; /* List of active engines */
|
||||
@@ -1183,7 +1181,6 @@ struct ph7_switch {
|
||||
*/
|
||||
struct ph7_vm {
|
||||
SyMemBackend sAllocator; /* Memory backend */
|
||||
SyMutex *pMutex; /* Recursive mutex associated with VM */
|
||||
ph7 *pEngine; /* Interpreter that own this VM */
|
||||
SySet aInstrSet; /* Instructions debugging container */
|
||||
SySet aByteCode; /* Default bytecode container */
|
||||
@@ -1379,6 +1376,8 @@ enum iErrCode {
|
||||
enum ph7_vm_op {
|
||||
PH7_OP_DONE = 1, /* Done */
|
||||
PH7_OP_HALT, /* Halt */
|
||||
PH7_OP_IMPORT, /* Import AerScript module */
|
||||
PH7_OP_INCLUDE, /* Include another source file */
|
||||
PH7_OP_DECLARE, /* Declare a variable */
|
||||
PH7_OP_LOADV, /* Load variable */
|
||||
PH7_OP_LOADC, /* Load constant */
|
||||
@@ -1389,8 +1388,8 @@ enum ph7_vm_op {
|
||||
PH7_OP_JMP, /* Unconditional jump */
|
||||
PH7_OP_JMPZ, /* Jump on zero (FALSE jump) */
|
||||
PH7_OP_JMPNZ, /* Jump on non-zero (TRUE jump) */
|
||||
PH7_OP_JMPLFB, /* Jump loop frame begin */
|
||||
PH7_OP_JMPLFE, /* Jump loop frame end */
|
||||
PH7_OP_LF_START, /* Loop frame start */
|
||||
PH7_OP_LF_STOP, /* Loop frame stop */
|
||||
PH7_OP_POP, /* Stack POP */
|
||||
PH7_OP_CVT_INT, /* Integer cast */
|
||||
PH7_OP_CVT_STR, /* String cast */
|
||||
@@ -1401,6 +1400,7 @@ enum ph7_vm_op {
|
||||
PH7_OP_BITNOT, /* Bitwise not '~' */
|
||||
PH7_OP_LNOT, /* Logical not '!' */
|
||||
PH7_OP_MUL, /* Multiplication '*' */
|
||||
PH7_OP_POW, /* POW '**' */
|
||||
PH7_OP_DIV, /* Division '/' */
|
||||
PH7_OP_MOD, /* Modulus '%' */
|
||||
PH7_OP_ADD, /* Add '+' */
|
||||
@@ -1435,6 +1435,7 @@ enum ph7_vm_op {
|
||||
PH7_OP_ADD_STORE, /* Add and store '+=' */
|
||||
PH7_OP_SUB_STORE, /* Sub and store '-=' */
|
||||
PH7_OP_MUL_STORE, /* Mul and store '*=' */
|
||||
PH7_OP_POW_STORE, /* Pow and store '**=' */
|
||||
PH7_OP_DIV_STORE, /* Div and store '/=' */
|
||||
PH7_OP_MOD_STORE, /* Mod and store '%=' */
|
||||
PH7_OP_SHL_STORE, /* Shift left and store '>>=' */
|
||||
@@ -1477,6 +1478,7 @@ enum ph7_expr_id {
|
||||
EXPR_OP_TYPECAST, /* Type cast [i.e: (int),(float),(string)...] */
|
||||
EXPR_OP_IS, /* is */
|
||||
EXPR_OP_LOGNOT, /* logical not ! */
|
||||
EXPR_OP_POW, /* Exponentiation '**' */
|
||||
EXPR_OP_MUL, /* Multiplication */
|
||||
EXPR_OP_DIV, /* division */
|
||||
EXPR_OP_MOD, /* Modulus */
|
||||
@@ -1503,6 +1505,7 @@ enum ph7_expr_id {
|
||||
EXPR_OP_ADD_ASSIGN, /* Combined operator: += */
|
||||
EXPR_OP_SUB_ASSIGN, /* Combined operator: -= */
|
||||
EXPR_OP_MUL_ASSIGN, /* Combined operator: *= */
|
||||
EXPR_OP_POW_ASSIGN, /* Combined operator: **= */
|
||||
EXPR_OP_DIV_ASSIGN, /* Combined operator: /= */
|
||||
EXPR_OP_MOD_ASSIGN, /* Combined operator: %= */
|
||||
EXPR_OP_AND_ASSIGN, /* Combined operator: &= */
|
||||
@@ -1630,6 +1633,7 @@ PH7_PRIVATE sxi32 PH7_MemObjRelease(ph7_value *pObj);
|
||||
PH7_PRIVATE sxi32 PH7_MemObjToNumeric(ph7_value *pObj);
|
||||
PH7_PRIVATE ProcMemObjCast PH7_MemObjCastMethod(sxi32 iFlags);
|
||||
PH7_PRIVATE sxi32 PH7_MemObjIsNull(ph7_value *pObj);
|
||||
PH7_PRIVATE sxi32 PH7_MemObjIsHashmap(ph7_value *pObj);
|
||||
PH7_PRIVATE sxi32 PH7_MemObjIsNumeric(ph7_value *pObj);
|
||||
PH7_PRIVATE sxi32 PH7_MemObjIsEmpty(ph7_value *pObj);
|
||||
PH7_PRIVATE sxi32 PH7_MemObjToHashmap(ph7_value *pObj);
|
||||
@@ -1669,6 +1673,7 @@ PH7_PRIVATE sxi32 PH7_VmOutputConsumeAp(ph7_vm *pVm, const char *zFormat, va_lis
|
||||
PH7_PRIVATE sxi32 PH7_VmMemoryError(ph7_vm *pVm);
|
||||
PH7_PRIVATE sxi32 PH7_VmThrowError(ph7_vm *pVm, sxi32 iErr, const char *zMessage, ...);
|
||||
PH7_PRIVATE void PH7_VmExpandConstantValue(ph7_value *pVal, void *pUserData);
|
||||
PH7_PRIVATE sxi32 VmExtractDebugTrace(ph7_vm *pVm, SySet *pDebugTrace);
|
||||
PH7_PRIVATE sxi32 PH7_VmDump(ph7_vm *pVm, ProcConsumer xConsumer, void *pUserData);
|
||||
PH7_PRIVATE sxi32 PH7_VmInit(ph7_vm *pVm, ph7 *pEngine, sxbool bDebug);
|
||||
PH7_PRIVATE sxi32 PH7_VmConfigure(ph7_vm *pVm, sxi32 nOp, va_list ap);
|
||||
@@ -1871,8 +1876,6 @@ PH7_PRIVATE void *SyMemBackendPoolAlloc(SyMemBackend *pBackend, sxu32 nBytes);
|
||||
PH7_PRIVATE sxi32 SyMemBackendFree(SyMemBackend *pBackend, void *pChunk);
|
||||
PH7_PRIVATE void *SyMemBackendRealloc(SyMemBackend *pBackend, void *pOld, sxu32 nBytes);
|
||||
PH7_PRIVATE void *SyMemBackendAlloc(SyMemBackend *pBackend, sxu32 nBytes);
|
||||
PH7_PRIVATE sxi32 SyMemBackendMakeThreadSafe(SyMemBackend *pBackend, const SyMutexMethods *pMethods);
|
||||
PH7_PRIVATE sxi32 SyMemBackendDisbaleMutexing(SyMemBackend *pBackend);
|
||||
PH7_PRIVATE sxu32 SyMemcpy(const void *pSrc, void *pDest, sxu32 nLen);
|
||||
PH7_PRIVATE sxi32 SyMemcmp(const void *pB1, const void *pB2, sxu32 nSize);
|
||||
PH7_PRIVATE void SyZero(void *pSrc, sxu32 nSize);
|
||||
@@ -1886,7 +1889,4 @@ PH7_PRIVATE sxu32 SyStrlen(const char *zSrc);
|
||||
PH7_PRIVATE sxu32 Systrcpy(char *zDest, sxu32 nDestLen, const char *zSrc, sxu32 nLen);
|
||||
PH7_PRIVATE char *SyStrtok(char *str, const char *sep);
|
||||
PH7_PRIVATE sxi32 SyAsciiToHex(sxi32 c);
|
||||
PH7_PRIVATE const SyMutexMethods *SyMutexExportMethods(void);
|
||||
PH7_PRIVATE sxi32 SyMemBackendMakeThreadSafe(SyMemBackend *pBackend, const SyMutexMethods *pMethods);
|
||||
PH7_PRIVATE sxi32 SyMemBackendDisbaleMutexing(SyMemBackend *pBackend);
|
||||
#endif /* __PH7INT_H__ */
|
||||
#endif /* __PH7INT_H__ */
|
||||
|
@@ -21,7 +21,7 @@ static int PH7_builtin_ctype_alnum(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -29,7 +29,7 @@ static int PH7_builtin_ctype_alnum(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -46,7 +46,7 @@ static int PH7_builtin_ctype_alnum(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -63,7 +63,7 @@ static int PH7_builtin_ctype_alpha(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -71,7 +71,7 @@ static int PH7_builtin_ctype_alpha(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -88,7 +88,7 @@ static int PH7_builtin_ctype_alpha(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -105,7 +105,7 @@ static int PH7_builtin_ctype_cntrl(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -113,7 +113,7 @@ static int PH7_builtin_ctype_cntrl(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -134,7 +134,7 @@ static int PH7_builtin_ctype_cntrl(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -151,7 +151,7 @@ static int PH7_builtin_ctype_digit(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -159,7 +159,7 @@ static int PH7_builtin_ctype_digit(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -180,7 +180,7 @@ static int PH7_builtin_ctype_digit(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -198,7 +198,7 @@ static int PH7_builtin_ctype_xdigit(ph7_context *pCtx, int nArg, ph7_value **apA
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -206,7 +206,7 @@ static int PH7_builtin_ctype_xdigit(ph7_context *pCtx, int nArg, ph7_value **apA
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -227,7 +227,7 @@ static int PH7_builtin_ctype_xdigit(ph7_context *pCtx, int nArg, ph7_value **apA
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -245,7 +245,7 @@ static int PH7_builtin_ctype_graph(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -253,7 +253,7 @@ static int PH7_builtin_ctype_graph(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -274,7 +274,7 @@ static int PH7_builtin_ctype_graph(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -293,7 +293,7 @@ static int PH7_builtin_ctype_print(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -301,7 +301,7 @@ static int PH7_builtin_ctype_print(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -322,7 +322,7 @@ static int PH7_builtin_ctype_print(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -340,7 +340,7 @@ static int PH7_builtin_ctype_punct(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -348,7 +348,7 @@ static int PH7_builtin_ctype_punct(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -369,7 +369,7 @@ static int PH7_builtin_ctype_punct(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -388,7 +388,7 @@ static int PH7_builtin_ctype_space(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -396,7 +396,7 @@ static int PH7_builtin_ctype_space(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -417,7 +417,7 @@ static int PH7_builtin_ctype_space(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -434,7 +434,7 @@ static int PH7_builtin_ctype_lower(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -442,7 +442,7 @@ static int PH7_builtin_ctype_lower(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -459,7 +459,7 @@ static int PH7_builtin_ctype_lower(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -476,7 +476,7 @@ static int PH7_builtin_ctype_upper(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
const unsigned char *zIn, *zEnd;
|
||||
int nLen;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -484,7 +484,7 @@ static int PH7_builtin_ctype_upper(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
zIn = (const unsigned char *)ph7_value_to_string(apArg[0], &nLen);
|
||||
zEnd = &zIn[nLen];
|
||||
if(nLen < 1) {
|
||||
/* Empty string,return FALSE */
|
||||
/* Empty string, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -501,7 +501,7 @@ static int PH7_builtin_ctype_upper(ph7_context *pCtx, int nArg, ph7_value **apAr
|
||||
/* Point to the next character */
|
||||
zIn++;
|
||||
}
|
||||
/* The test failed,return FALSE */
|
||||
/* The test failed, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
|
@@ -266,7 +266,7 @@ static sxi32 VmJsonEncode(
|
||||
static int VmJsonArrayEncode(ph7_value *pKey, ph7_value *pValue, void *pUserData) {
|
||||
json_private_data *pJson = (json_private_data *)pUserData;
|
||||
if(pJson->nRecCount > 31) {
|
||||
/* Recursion limit reached,return immediately */
|
||||
/* Recursion limit reached, return immediately */
|
||||
return PH7_OK;
|
||||
}
|
||||
if(!pJson->isFirst) {
|
||||
@@ -296,7 +296,7 @@ static int VmJsonArrayEncode(ph7_value *pKey, ph7_value *pValue, void *pUserData
|
||||
static int VmJsonObjectEncode(const char *zAttr, ph7_value *pValue, void *pUserData) {
|
||||
json_private_data *pJson = (json_private_data *)pUserData;
|
||||
if(pJson->nRecCount > 31) {
|
||||
/* Recursion limit reached,return immediately */
|
||||
/* Recursion limit reached, return immediately */
|
||||
return PH7_OK;
|
||||
}
|
||||
if(!pJson->isFirst) {
|
||||
@@ -336,7 +336,7 @@ static int VmJsonObjectEncode(const char *zAttr, ph7_value *pValue, void *pUserD
|
||||
static int vm_builtin_json_encode(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
json_private_data sJson;
|
||||
if(nArg < 1) {
|
||||
/* Missing arguments,return FALSE */
|
||||
/* Missing arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -748,7 +748,7 @@ static sxi32 VmJsonDecode(
|
||||
}
|
||||
if((pDecoder->pIn->nType & JSON_TK_STR) == 0 || &pDecoder->pIn[1] >= pDecoder->pEnd
|
||||
|| (pDecoder->pIn[1].nType & JSON_TK_COLON) == 0) {
|
||||
/* Syntax error,return immediately */
|
||||
/* Syntax error, return immediately */
|
||||
*pDecoder->pErr = JSON_ERROR_SYNTAX;
|
||||
return SXERR_ABORT;
|
||||
}
|
||||
@@ -841,7 +841,7 @@ static int vm_builtin_json_decode(ph7_context *pCtx, int nArg, ph7_value **apArg
|
||||
/* Extract the JSON string */
|
||||
zIn = ph7_value_to_string(apArg[0], &nByte);
|
||||
if(nByte < 1) {
|
||||
/* Empty string,return NULL */
|
||||
/* Empty string, return NULL */
|
||||
ph7_result_null(pCtx);
|
||||
return PH7_OK;
|
||||
}
|
||||
|
@@ -163,7 +163,7 @@ static void PH7_M_EULER_Const(ph7_value *pVal, void *pUserData) {
|
||||
static int PH7_builtin_sqrt(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -185,7 +185,7 @@ static int PH7_builtin_sqrt(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_exp(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -207,7 +207,7 @@ static int PH7_builtin_exp(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_floor(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -229,7 +229,7 @@ static int PH7_builtin_floor(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_cos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -251,7 +251,7 @@ static int PH7_builtin_cos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_acos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -273,7 +273,7 @@ static int PH7_builtin_acos(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_cosh(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -295,7 +295,7 @@ static int PH7_builtin_cosh(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_sin(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -317,7 +317,7 @@ static int PH7_builtin_sin(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_asin(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -339,7 +339,7 @@ static int PH7_builtin_asin(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_sinh(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -361,7 +361,7 @@ static int PH7_builtin_sinh(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_ceil(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -383,7 +383,7 @@ static int PH7_builtin_ceil(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_tan(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -405,7 +405,7 @@ static int PH7_builtin_tan(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_atan(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -427,7 +427,7 @@ static int PH7_builtin_atan(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_tanh(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -450,7 +450,7 @@ static int PH7_builtin_tanh(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_atan2(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x, y;
|
||||
if(nArg < 2) {
|
||||
/* Missing arguments,return 0 */
|
||||
/* Missing arguments, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -473,7 +473,7 @@ static int PH7_builtin_atan2(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_abs(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
int is_float;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -507,7 +507,7 @@ static int PH7_builtin_abs(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_log(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -534,7 +534,7 @@ static int PH7_builtin_log(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_log10(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -561,7 +561,7 @@ static int PH7_builtin_log10(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
static int PH7_builtin_pow(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
double r, x, y;
|
||||
if(nArg < 1) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -650,7 +650,7 @@ static int PH7_builtin_hypot(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
*/
|
||||
static int PH7_builtin_max(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
if(nArg < 2) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -682,7 +682,7 @@ static int PH7_builtin_max(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
*/
|
||||
static int PH7_builtin_min(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
if(nArg < 2) {
|
||||
/* Missing argument,return 0 */
|
||||
/* Missing argument, return 0 */
|
||||
ph7_result_int(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
|
@@ -348,14 +348,14 @@ static int vm_builtin_xml_parser_create_ns(ph7_context *pCtx, int nArg, ph7_valu
|
||||
static int vm_builtin_xml_parser_free(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -403,14 +403,14 @@ static int vm_builtin_xml_parser_free(ph7_context *pCtx, int nArg, ph7_value **a
|
||||
static int vm_builtin_xml_set_element_handler(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -422,7 +422,7 @@ static int vm_builtin_xml_set_element_handler(ph7_context *pCtx, int nArg, ph7_v
|
||||
PH7_MemObjStore(apArg[2]/* User callback*/, &pEngine->aCB[PH7_XML_END_TAG]);
|
||||
}
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -451,14 +451,14 @@ static int vm_builtin_xml_set_element_handler(ph7_context *pCtx, int nArg, ph7_v
|
||||
static int vm_builtin_xml_set_character_data_handler(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -466,7 +466,7 @@ static int vm_builtin_xml_set_character_data_handler(ph7_context *pCtx, int nArg
|
||||
/* Save the user callback for later invocation */
|
||||
PH7_MemObjStore(apArg[1]/* User callback*/, &pEngine->aCB[PH7_XML_CDATA]);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -493,14 +493,14 @@ static int vm_builtin_xml_set_character_data_handler(ph7_context *pCtx, int nArg
|
||||
static int vm_builtin_xml_set_default_handler(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -508,7 +508,7 @@ static int vm_builtin_xml_set_default_handler(ph7_context *pCtx, int nArg, ph7_v
|
||||
/* Save the user callback for later invocation */
|
||||
PH7_MemObjStore(apArg[1]/* User callback*/, &pEngine->aCB[PH7_XML_DEF]);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -534,14 +534,14 @@ static int vm_builtin_xml_set_default_handler(ph7_context *pCtx, int nArg, ph7_v
|
||||
static int vm_builtin_xml_set_end_namespace_decl_handler(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -549,7 +549,7 @@ static int vm_builtin_xml_set_end_namespace_decl_handler(ph7_context *pCtx, int
|
||||
/* Save the user callback for later invocation */
|
||||
PH7_MemObjStore(apArg[1]/* User callback*/, &pEngine->aCB[PH7_XML_NS_END]);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -577,14 +577,14 @@ static int vm_builtin_xml_set_end_namespace_decl_handler(ph7_context *pCtx, int
|
||||
static int vm_builtin_xml_set_start_namespace_decl_handler(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -592,7 +592,7 @@ static int vm_builtin_xml_set_start_namespace_decl_handler(ph7_context *pCtx, in
|
||||
/* Save the user callback for later invocation */
|
||||
PH7_MemObjStore(apArg[1]/* User callback*/, &pEngine->aCB[PH7_XML_NS_START]);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -620,14 +620,14 @@ static int vm_builtin_xml_set_start_namespace_decl_handler(ph7_context *pCtx, in
|
||||
static int vm_builtin_xml_set_processing_instruction_handler(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -635,7 +635,7 @@ static int vm_builtin_xml_set_processing_instruction_handler(ph7_context *pCtx,
|
||||
/* Save the user callback for later invocation */
|
||||
PH7_MemObjStore(apArg[1]/* User callback*/, &pEngine->aCB[PH7_XML_PI]);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -670,14 +670,14 @@ static int vm_builtin_xml_set_processing_instruction_handler(ph7_context *pCtx,
|
||||
static int vm_builtin_xml_set_unparsed_entity_decl_handler(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -685,7 +685,7 @@ static int vm_builtin_xml_set_unparsed_entity_decl_handler(ph7_context *pCtx, in
|
||||
/* Save the user callback for later invocation */
|
||||
PH7_MemObjStore(apArg[1]/* User callback*/, &pEngine->aCB[PH7_XML_UNPED]);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -718,14 +718,14 @@ static int vm_builtin_xml_set_unparsed_entity_decl_handler(ph7_context *pCtx, in
|
||||
static int vm_builtin_xml_set_notation_decl_handler(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -733,7 +733,7 @@ static int vm_builtin_xml_set_notation_decl_handler(ph7_context *pCtx, int nArg,
|
||||
/* Save the user callback for later invocation */
|
||||
PH7_MemObjStore(apArg[1]/* User callback*/, &pEngine->aCB[PH7_XML_ND]);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -769,14 +769,14 @@ static int vm_builtin_xml_set_notation_decl_handler(ph7_context *pCtx, int nArg,
|
||||
static int vm_builtin_xml_set_external_entity_ref_handler(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -784,7 +784,7 @@ static int vm_builtin_xml_set_external_entity_ref_handler(ph7_context *pCtx, int
|
||||
/* Save the user callback for later invocation */
|
||||
PH7_MemObjStore(apArg[1]/* User callback*/, &pEngine->aCB[PH7_XML_EER]);
|
||||
}
|
||||
/* All done,return TRUE */
|
||||
/* All done, return TRUE */
|
||||
ph7_result_bool(pCtx, 1);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -802,14 +802,14 @@ static int vm_builtin_xml_set_external_entity_ref_handler(ph7_context *pCtx, int
|
||||
static int vm_builtin_xml_get_current_line_number(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -833,14 +833,14 @@ static int vm_builtin_xml_get_current_byte_index(ph7_context *pCtx, int nArg, ph
|
||||
SyStream *pStream;
|
||||
SyToken *pToken;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -873,14 +873,14 @@ static int vm_builtin_xml_get_current_byte_index(ph7_context *pCtx, int nArg, ph
|
||||
static int vm_builtin_xml_set_object(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 2 || !ph7_value_is_resource(apArg[0]) || !ph7_value_is_object(apArg[1])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -909,14 +909,14 @@ static int vm_builtin_xml_get_current_column_number(ph7_context *pCtx, int nArg,
|
||||
SyStream *pStream;
|
||||
SyToken *pToken;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -947,14 +947,14 @@ static int vm_builtin_xml_get_current_column_number(ph7_context *pCtx, int nArg,
|
||||
static int vm_builtin_xml_get_error_code(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 1 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1052,7 +1052,7 @@ static sxi32 VmXMLStartElementHandler(SyXMLRawStr *pStart, SyXMLRawStr *pNS, sxu
|
||||
pCallback = &pEngine->aCB[PH7_XML_START_TAG];
|
||||
/* Make sure the given callback is callable */
|
||||
if(!PH7_VmIsCallable(pEngine->pVm, pCallback, 0)) {
|
||||
/* Not callable,return immediately*/
|
||||
/* Not callable, return immediately*/
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Create a ph7_value holding the tag name */
|
||||
@@ -1061,7 +1061,7 @@ static sxi32 VmXMLStartElementHandler(SyXMLRawStr *pStart, SyXMLRawStr *pNS, sxu
|
||||
pAttr = VmXMLAttrValue(pEngine, aAttr, nAttr);
|
||||
if(pTag == 0 || pAttr == 0) {
|
||||
SXUNUSED(pNS); /* cc warning */
|
||||
/* Out of mem,return immediately */
|
||||
/* Out of mem, return immediately */
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Invoke the user callback */
|
||||
@@ -1090,14 +1090,14 @@ static sxi32 VmXMLEndElementHandler(SyXMLRawStr *pEnd, SyXMLRawStr *pNS, void *p
|
||||
pCallback = &pEngine->aCB[PH7_XML_END_TAG];
|
||||
/* Make sure the given callback is callable */
|
||||
if(!PH7_VmIsCallable(pEngine->pVm, pCallback, 0)) {
|
||||
/* Not callable,return immediately*/
|
||||
/* Not callable, return immediately*/
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Create a ph7_value holding the tag name */
|
||||
pTag = VmXMLValue(pEngine, pEnd, pNS);
|
||||
if(pTag == 0) {
|
||||
SXUNUSED(pNS); /* cc warning */
|
||||
/* Out of mem,return immediately */
|
||||
/* Out of mem, return immediately */
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Invoke the user callback */
|
||||
@@ -1126,13 +1126,13 @@ static sxi32 VmXMLTextHandler(SyXMLRawStr *pText, void *pUserData) {
|
||||
pCallback = &pEngine->aCB[PH7_XML_CDATA];
|
||||
/* Make sure the given callback is callable */
|
||||
if(!PH7_VmIsCallable(pEngine->pVm, pCallback, 0)) {
|
||||
/* Not callable,return immediately*/
|
||||
/* Not callable, return immediately*/
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Create a ph7_value holding the data */
|
||||
pData = VmXMLValue(pEngine, &(*pText), 0);
|
||||
if(pData == 0) {
|
||||
/* Out of mem,return immediately */
|
||||
/* Out of mem, return immediately */
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Invoke the user callback */
|
||||
@@ -1161,14 +1161,14 @@ static sxi32 VmXMLPIHandler(SyXMLRawStr *pTargetStr, SyXMLRawStr *pDataStr, void
|
||||
pCallback = &pEngine->aCB[PH7_XML_PI];
|
||||
/* Make sure the given callback is callable */
|
||||
if(!PH7_VmIsCallable(pEngine->pVm, pCallback, 0)) {
|
||||
/* Not callable,return immediately*/
|
||||
/* Not callable, return immediately*/
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Get a ph7_value holding the data */
|
||||
pTarget = VmXMLValue(pEngine, &(*pTargetStr), 0);
|
||||
pData = VmXMLValue(pEngine, &(*pDataStr), 0);
|
||||
if(pTarget == 0 || pData == 0) {
|
||||
/* Out of mem,return immediately */
|
||||
/* Out of mem, return immediately */
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Invoke the user callback */
|
||||
@@ -1198,14 +1198,14 @@ static sxi32 VmXMLNSStartHandler(SyXMLRawStr *pUriStr, SyXMLRawStr *pPrefixStr,
|
||||
pCallback = &pEngine->aCB[PH7_XML_NS_START];
|
||||
/* Make sure the given callback is callable */
|
||||
if(!PH7_VmIsCallable(pEngine->pVm, pCallback, 0)) {
|
||||
/* Not callable,return immediately*/
|
||||
/* Not callable, return immediately*/
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Get a ph7_value holding the PREFIX/URI */
|
||||
pUri = VmXMLValue(pEngine, pUriStr, 0);
|
||||
pPrefix = VmXMLValue(pEngine, pPrefixStr, 0);
|
||||
if(pUri == 0 || pPrefix == 0) {
|
||||
/* Out of mem,return immediately */
|
||||
/* Out of mem, return immediately */
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Invoke the user callback */
|
||||
@@ -1233,13 +1233,13 @@ static sxi32 VmXMLNSEndHandler(SyXMLRawStr *pPrefixStr, void *pUserData) {
|
||||
pCallback = &pEngine->aCB[PH7_XML_NS_END];
|
||||
/* Make sure the given callback is callable */
|
||||
if(!PH7_VmIsCallable(pEngine->pVm, pCallback, 0)) {
|
||||
/* Not callable,return immediately*/
|
||||
/* Not callable, return immediately*/
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Get a ph7_value holding the prefix */
|
||||
pPrefix = VmXMLValue(pEngine, pPrefixStr, 0);
|
||||
if(pPrefix == 0) {
|
||||
/* Out of mem,return immediately */
|
||||
/* Out of mem, return immediately */
|
||||
return SXRET_OK;
|
||||
}
|
||||
/* Invoke the user callback */
|
||||
@@ -1288,14 +1288,14 @@ static int vm_builtin_xml_parse(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
const char *zData;
|
||||
int nByte;
|
||||
if(nArg < 2 || !ph7_value_is_resource(apArg[0]) || !ph7_value_is_string(apArg[1])) {
|
||||
/* Missing/Ivalid arguments,return FALSE */
|
||||
/* Missing/Ivalid arguments, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1362,14 +1362,14 @@ static int vm_builtin_xml_parse(ph7_context *pCtx, int nArg, ph7_value **apArg)
|
||||
static int vm_builtin_xml_parser_set_option(ph7_context *pCtx, int nArg, ph7_value **apArg) {
|
||||
ph7_xml_engine *pEngine;
|
||||
if(nArg < 2 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1393,14 +1393,14 @@ static int vm_builtin_xml_parser_get_option(ph7_context *pCtx, int nArg, ph7_val
|
||||
ph7_xml_engine *pEngine;
|
||||
int nOp;
|
||||
if(nArg < 2 || !ph7_value_is_resource(apArg[0])) {
|
||||
/* Missing/Ivalid argument,return FALSE */
|
||||
/* Missing/Ivalid argument, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
/* Point to the XML engine */
|
||||
pEngine = (ph7_xml_engine *)ph7_value_to_resource(apArg[0]);
|
||||
if(IS_INVALID_XML_ENGINE(pEngine)) {
|
||||
/* Corrupt engine,return FALSE */
|
||||
/* Corrupt engine, return FALSE */
|
||||
ph7_result_bool(pCtx, 0);
|
||||
return PH7_OK;
|
||||
}
|
||||
@@ -1416,7 +1416,7 @@ static int vm_builtin_xml_parser_get_option(ph7_context *pCtx, int nArg, ph7_val
|
||||
ph7_result_string(pCtx, "UTF-8", (int)sizeof("UTF-8") - 1);
|
||||
break;
|
||||
default:
|
||||
/* Unknown option,return FALSE*/
|
||||
/* Unknown option, return FALSE*/
|
||||
ph7_result_bool(pCtx, 0);
|
||||
break;
|
||||
}
|
||||
|
@@ -55,8 +55,10 @@ class Base32 {
|
||||
if(!in_array($input[$i], Base32::$map))
|
||||
return '';
|
||||
for(int $j = 0; $j < 8; $j++) {
|
||||
if(array_key_exists($input[$i + $j], Base32::$flippedMap)) {
|
||||
$x += str_pad(base_convert(Base32::$flippedMap[$input[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);
|
||||
if($i + $j < strlen($input)) {
|
||||
if(array_key_exists($input[$i + $j], Base32::$flippedMap)) {
|
||||
$x += str_pad(base_convert(Base32::$flippedMap[$input[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);
|
||||
}
|
||||
}
|
||||
}
|
||||
string[] $eightBits = str_split($x, 8);
|
||||
|
43
tests/beaufort_cipher.aer
Normal file
43
tests/beaufort_cipher.aer
Normal file
@@ -0,0 +1,43 @@
|
||||
class Beaufort {
|
||||
private string $cipher;
|
||||
|
||||
public string __construct(string $text, string $key) {
|
||||
string $alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
||||
for(int $i = 0; $i < strlen($text); $i++) {
|
||||
int $j;
|
||||
char $c0 = $text[$i];
|
||||
char $c1 = $key[$i % strlen($key)];
|
||||
int $start = 0;
|
||||
for($j = 0; $j < 26; $j++) {
|
||||
if($alphabet[$j] == strtoupper($c0)) {
|
||||
$start = $j;
|
||||
break;
|
||||
}
|
||||
}
|
||||
int $offset = 0;
|
||||
for($j = $start; $j < $start + 26; $j++) {
|
||||
int $letter = $j %26;
|
||||
if($alphabet[$letter] == strtoupper($c1)) {
|
||||
break;
|
||||
}
|
||||
$offset++;
|
||||
}
|
||||
$this->cipher += $alphabet[$offset];
|
||||
}
|
||||
}
|
||||
|
||||
public string getCipher() {
|
||||
return $this->cipher;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class Program {
|
||||
|
||||
public void main() {
|
||||
object $beaufort = new Beaufort('thisisasecretmessage', 'youwillneverguessit');
|
||||
var_dump($beaufort->getCipher());
|
||||
}
|
||||
|
||||
}
|
||||
|
1
tests/beaufort_cipher.exp
Normal file
1
tests/beaufort_cipher.exp
Normal file
@@ -0,0 +1 @@
|
||||
string(20 'FHMEATLVATNNNIAAAINU')
|
8
tests/data/includes/base_class.aer
Normal file
8
tests/data/includes/base_class.aer
Normal file
@@ -0,0 +1,8 @@
|
||||
class BaseClass {
|
||||
|
||||
protected void run() {
|
||||
printf('Test launched...');
|
||||
include 'data/includes/include_test.aer';
|
||||
}
|
||||
|
||||
}
|
1
tests/data/includes/include_test.aer
Normal file
1
tests/data/includes/include_test.aer
Normal file
@@ -0,0 +1 @@
|
||||
printf("OK!\n");
|
3
tests/data/includes/test_class.aer
Normal file
3
tests/data/includes/test_class.aer
Normal file
@@ -0,0 +1,3 @@
|
||||
class Test {
|
||||
string $test = 'This is a test';
|
||||
}
|
6
tests/execute_system.aer
Normal file
6
tests/execute_system.aer
Normal file
@@ -0,0 +1,6 @@
|
||||
class Program {
|
||||
public void main() {
|
||||
bool $res = system("echo OK");
|
||||
print("Result: ", $res);
|
||||
}
|
||||
}
|
2
tests/execute_system.exp
Normal file
2
tests/execute_system.exp
Normal file
@@ -0,0 +1,2 @@
|
||||
OK
|
||||
Result: TRUE
|
12
tests/include_statements.aer
Normal file
12
tests/include_statements.aer
Normal file
@@ -0,0 +1,12 @@
|
||||
require 'data/includes/base_class.aer';
|
||||
|
||||
class Program extends BaseClass {
|
||||
|
||||
void main() {
|
||||
$this->run();
|
||||
require 'data/includes/test_class.aer';
|
||||
object $test = new Test();
|
||||
var_dump($test);
|
||||
}
|
||||
|
||||
}
|
5
tests/include_statements.exp
Normal file
5
tests/include_statements.exp
Normal file
@@ -0,0 +1,5 @@
|
||||
Test launched...OK!
|
||||
object(Test) {
|
||||
['test'] =>
|
||||
string(14 'This is a test')
|
||||
}
|
@@ -1,10 +1,12 @@
|
||||
import 'math';
|
||||
|
||||
class Program {
|
||||
|
||||
private string num2alpha(int $n) {
|
||||
string $r = '';
|
||||
for(int $i = 1; $n >= 0 && $i < 10; $i++) {
|
||||
$r = chr(0x41 + ($n % pow(26, $i) / pow(26, $i - 1))) + $r;
|
||||
$n -= pow(26, $i);
|
||||
$n -= (int)pow(26, $i);
|
||||
}
|
||||
return $r;
|
||||
}
|
||||
@@ -13,13 +15,12 @@ class Program {
|
||||
int $r = 0;
|
||||
int $l = strlen($a);
|
||||
for(int $i = 0; $i < $l; $i++) {
|
||||
$r += pow(26, $i) * (ord($a[$l - $i - 1]) - 0x40);
|
||||
$r += (int)pow(26, $i) * (ord($a[$l - $i - 1]) - 0x40);
|
||||
}
|
||||
return (int) $r - 1;
|
||||
}
|
||||
|
||||
public void main() {
|
||||
import('math');
|
||||
var_dump($this->alpha2num("Salut"), $this->num2alpha(1723), $this->num2alpha(9854), $this->alpha2num("Base64"));
|
||||
}
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import 'dummy';
|
||||
|
||||
final class Program {
|
||||
public void main() {
|
||||
var_dump(function_exists('dummy_function'));
|
||||
var_dump(import('dummy'));
|
||||
var_dump(function_exists('dummy_function'));
|
||||
}
|
||||
}
|
||||
|
@@ -1,3 +1 @@
|
||||
bool(FALSE)
|
||||
bool(TRUE)
|
||||
bool(TRUE)
|
||||
|
105
tests/sudoku_solver.aer
Normal file
105
tests/sudoku_solver.aer
Normal file
@@ -0,0 +1,105 @@
|
||||
import 'math';
|
||||
|
||||
class Sudoku {
|
||||
public int[] $board;
|
||||
int $size;
|
||||
|
||||
public void __construct(int[] $board) {
|
||||
$this->board = $board;
|
||||
$this->size = sizeof($this->board);
|
||||
}
|
||||
|
||||
public bool isSafe(int $row, int $col, int $n) {
|
||||
for(int $d = 0; $d < $this->size; $d++) {
|
||||
if($this->board[$row][$d] == $n) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
for(int $r = 0; $r < $this->size; $r++) {
|
||||
if($this->board[$r][$col] == $n) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
int $sqrt = (int) sqrt($this->size);
|
||||
int $boxRowStart = $row - $row % $sqrt;
|
||||
int $boxColStart = $col - $col % $sqrt;
|
||||
for(int $w = $boxRowStart; $w < $boxRowStart + $sqrt; $w++) {
|
||||
for(int $q = $boxColStart; $q < $boxColStart + $sqrt; $q++) {
|
||||
if($this->board[$w][$q] == $n) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public void print() {
|
||||
for(int $r = 0; $r < $this->size; $r++) {
|
||||
for(int $d = 0; $d < $this->size; $d++) {
|
||||
print($this->board[$r][$d] + " ");
|
||||
}
|
||||
print("\n");
|
||||
}
|
||||
}
|
||||
|
||||
public bool solve() {
|
||||
int $row = -1;
|
||||
int $col = -1;
|
||||
bool $isEmpty = true;
|
||||
for(int $i = 0; $i < $this->size; $i++) {
|
||||
for(int $j = 0; $j < $this->size; $j++) {
|
||||
if($this->board[$i][$j] == 0) {
|
||||
$row = $i;
|
||||
$col = $j;
|
||||
$isEmpty = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(!$isEmpty) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if($isEmpty) {
|
||||
return true;
|
||||
}
|
||||
for(int $n = 1; $n <= $this->size; $n++) {
|
||||
if($this->isSafe($row, $col, $n)) {
|
||||
$this->board[$row][$col] = $n;
|
||||
if($this->solve()) {
|
||||
return true;
|
||||
} else {
|
||||
$this->board[$row][$col] = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class Program {
|
||||
|
||||
void main() {
|
||||
int[] $board = {
|
||||
{3, 0, 6, 5, 0, 8, 4, 0, 0},
|
||||
{5, 2, 0, 0, 0, 0, 0, 0, 0},
|
||||
{0, 8, 7, 0, 0, 0, 0, 3, 1},
|
||||
{0, 0, 3, 0, 1, 0, 0, 8, 0},
|
||||
{9, 0, 0, 8, 6, 3, 0, 0, 5},
|
||||
{0, 5, 0, 0, 9, 0, 6, 0, 0},
|
||||
{1, 3, 0, 0, 0, 0, 2, 5, 0},
|
||||
{0, 0, 0, 0, 0, 0, 0, 7, 4},
|
||||
{0, 0, 5, 2, 0, 6, 3, 0, 0}
|
||||
};
|
||||
object $sudoku = new Sudoku($board);
|
||||
$sudoku->print();
|
||||
print("=================\n");
|
||||
if($sudoku->solve()) {
|
||||
$sudoku->print();
|
||||
} else {
|
||||
print("No solution found\n");
|
||||
$sudoku->print();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
19
tests/sudoku_solver.exp
Normal file
19
tests/sudoku_solver.exp
Normal file
@@ -0,0 +1,19 @@
|
||||
3 0 6 5 0 8 4 0 0
|
||||
5 2 0 0 0 0 0 0 0
|
||||
0 8 7 0 0 0 0 3 1
|
||||
0 0 3 0 1 0 0 8 0
|
||||
9 0 0 8 6 3 0 0 5
|
||||
0 5 0 0 9 0 6 0 0
|
||||
1 3 0 0 0 0 2 5 0
|
||||
0 0 0 0 0 0 0 7 4
|
||||
0 0 5 2 0 6 3 0 0
|
||||
=================
|
||||
3 1 6 5 7 8 4 9 2
|
||||
5 2 9 1 3 4 7 6 8
|
||||
4 8 7 6 2 9 5 3 1
|
||||
2 6 3 4 1 5 9 8 7
|
||||
9 7 4 8 6 3 1 2 5
|
||||
8 5 1 7 9 2 6 4 3
|
||||
1 3 8 9 4 7 2 5 6
|
||||
6 9 2 3 5 1 8 7 4
|
||||
7 4 5 2 8 6 3 1 9
|
22
tests/tower_of_hanoi.aer
Normal file
22
tests/tower_of_hanoi.aer
Normal file
@@ -0,0 +1,22 @@
|
||||
class Hanoi {
|
||||
|
||||
public void towerOfHanoi(int $diskCount, int $fromPole, int $toPole, int $viaPole) {
|
||||
if($diskCount == 1) {
|
||||
printf('Move disk from pole ' + $fromPole + ' to pole ' + $toPole + "\n");
|
||||
} else {
|
||||
$this->towerOfHanoi($diskCount - 1, $fromPole, $viaPole, $toPole);
|
||||
$this->towerOfHanoi(1, $fromPole, $toPole, $viaPole);
|
||||
$this->towerOfHanoi($diskCount - 1, $viaPole, $toPole, $fromPole);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class Program {
|
||||
|
||||
public void main() {
|
||||
object $hanoi = new Hanoi();
|
||||
$hanoi->towerOfHanoi(4, 1, 2, 3);
|
||||
}
|
||||
|
||||
}
|
15
tests/tower_of_hanoi.exp
Normal file
15
tests/tower_of_hanoi.exp
Normal file
@@ -0,0 +1,15 @@
|
||||
Move disk from pole 1 to pole 3
|
||||
Move disk from pole 1 to pole 2
|
||||
Move disk from pole 3 to pole 2
|
||||
Move disk from pole 1 to pole 3
|
||||
Move disk from pole 2 to pole 1
|
||||
Move disk from pole 2 to pole 3
|
||||
Move disk from pole 1 to pole 3
|
||||
Move disk from pole 1 to pole 2
|
||||
Move disk from pole 3 to pole 2
|
||||
Move disk from pole 3 to pole 1
|
||||
Move disk from pole 2 to pole 1
|
||||
Move disk from pole 3 to pole 2
|
||||
Move disk from pole 1 to pole 3
|
||||
Move disk from pole 1 to pole 2
|
||||
Move disk from pole 3 to pole 2
|
Reference in New Issue
Block a user