blob: e641078c073a8d3b57318a603eb509ebd12b98ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2009 - DIGITEO - Allan CORNET
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
*
*/
/*----------------------------------------------------------------------------*/
#include <string.h>
#include "strsplit.h"
#include "MALLOC.h"
#include "freeArrayOfString.h"
/*----------------------------------------------------------------------------*/
wchar_t **strsplit(wchar_t * wcstringToSplit, double *indices, int sizeIndices, strsplit_error *ierr)
{
wchar_t **splitted = NULL;
*ierr = STRSPLIT_NO_ERROR;
if (wcstringToSplit)
{
int lengthToCopy = 0;
int lenString = (int)wcslen(wcstringToSplit);
int i = 0, j = 0;
wchar_t* wcStrDest = NULL;
wchar_t* wcStrSrc = NULL;
for (i = 0; i < sizeIndices; i++)
{
/* Check 2nd input matrix position */
if ( ((int)indices[i] <= 0) || ((int)indices[i] >= lenString) )
{
*ierr = STRSPLIT_INCORRECT_VALUE_ERROR;
return NULL;
}
/* check 2nd input order */
if (sizeIndices > 1)
{
if ( i < (sizeIndices - 1) )
{
if ((int)indices[i] > (int)indices[i + 1])
{
*ierr = STRSPLIT_INCORRECT_ORDER_ERROR;
return NULL;
}
}
}
}
splitted = (wchar_t**)MALLOC(sizeof(wchar_t*) * (sizeIndices + 1));
if (splitted == NULL)
{
*ierr = STRSPLIT_MEMORY_ALLOCATION_ERROR;
return NULL;
}
for (i = 0; i < sizeIndices; i++)
{
if (i == 0)
{
lengthToCopy = (int)indices[i];
}
else
{
lengthToCopy = (int)indices[i] - (int)indices[i - 1];
}
splitted[i] = (wchar_t*)MALLOC(sizeof(wchar_t) * (lengthToCopy + 1));
wcStrDest = splitted[i];
if (splitted[i] == NULL)
{
freeArrayOfWideString(splitted, sizeIndices);
*ierr = STRSPLIT_MEMORY_ALLOCATION_ERROR;
return NULL;
}
wcStrSrc = &wcstringToSplit[j];
memcpy(wcStrDest, wcStrSrc, lengthToCopy * sizeof(wchar_t));
wcStrDest[lengthToCopy] = 0;
j = (int)indices[i];
}
lengthToCopy = lenString - (int)indices[sizeIndices - 1];
splitted[sizeIndices] = (wchar_t*)MALLOC(sizeof(wchar_t) * (lengthToCopy + 1));
wcStrDest = splitted[sizeIndices];
if (splitted[sizeIndices] == NULL)
{
freeArrayOfWideString(splitted, sizeIndices + 1);
*ierr = STRSPLIT_MEMORY_ALLOCATION_ERROR;
return NULL;
}
wcStrSrc = &wcstringToSplit[j];
memcpy(wcStrDest, wcStrSrc, lengthToCopy * sizeof(wchar_t));
wcStrDest[lengthToCopy] = 0;
}
return splitted;
}
/*----------------------------------------------------------------------------*/
|