mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-21 16:23:20 +00:00
recursive globbing, mais ça leak
This commit is contained in:
parent
04d20b726c
commit
354844f79f
@ -79,9 +79,8 @@ void recursiveExpandWord(char* path, WordList* listToExpand){
|
|||||||
int i = 0;
|
int i = 0;
|
||||||
int indexToExpand = -1;
|
int indexToExpand = -1;
|
||||||
|
|
||||||
//TODO : free
|
|
||||||
WordList* pathToList = splitWordIntoList(path, '/');
|
WordList* pathToList = splitWordIntoList(path, '/');
|
||||||
WordListElement* tempElement; //beware of the size, should be checked before anyway
|
WordListElement* tempElement; //beware of the size, should be checked before anyway (?)
|
||||||
tempElement = pathToList->first;
|
tempElement = pathToList->first;
|
||||||
|
|
||||||
|
|
||||||
@ -104,13 +103,14 @@ void recursiveExpandWord(char* path, WordList* listToExpand){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
|
||||||
char* correctedPath = concatWordListToWord(pathToList,0, indexToExpand);
|
char* correctedPath = concatWordListToWord(pathToList,0, indexToExpand + 1);
|
||||||
WordList* foundFiles = getFiles(getPath(correctedPath), getFileName(correctedPath));
|
WordList* foundFiles = getFiles(getPath(correctedPath), getFileName(correctedPath));
|
||||||
|
printWordList(foundFiles);
|
||||||
|
|
||||||
if(foundFiles->size > 0){
|
if(foundFiles->size > 0){
|
||||||
|
|
||||||
tempElement = foundFiles->first;
|
tempElement = foundFiles->first;
|
||||||
char* concatenedEndOfPath = concatWordListToWord(foundFiles, indexToExpand + 1, foundFiles->size - 1);
|
char* concatenedEndOfPath = concatWordListToWord(pathToList, indexToExpand + 1, foundFiles->size - 1);
|
||||||
|
|
||||||
for(i=0; i < foundFiles->size; i++){
|
for(i=0; i < foundFiles->size; i++){
|
||||||
|
|
||||||
@ -141,6 +141,7 @@ char* concatWordListToWord(WordList* list,int firstElemIndex, int lastElemIndex)
|
|||||||
int i;
|
int i;
|
||||||
char* concatenedString = (char*) malloc(sizeof(char));
|
char* concatenedString = (char*) malloc(sizeof(char));
|
||||||
if(concatenedString == NULL) crash();
|
if(concatenedString == NULL) crash();
|
||||||
|
concatenedString[0] = '\0';
|
||||||
|
|
||||||
if(lastElemIndex > list->size -1){
|
if(lastElemIndex > list->size -1){
|
||||||
lastElemIndex = list->size - 1;
|
lastElemIndex = list->size - 1;
|
||||||
@ -159,7 +160,7 @@ char* concatWordListToWord(WordList* list,int firstElemIndex, int lastElemIndex)
|
|||||||
}
|
}
|
||||||
for(i=firstElemIndex; i < lastElemIndex; i++){
|
for(i=firstElemIndex; i < lastElemIndex; i++){
|
||||||
|
|
||||||
trueStrcat(concatenedString, tempElement->word);
|
concatenedString = trueStrcat(concatenedString, tempElement->word);
|
||||||
tempElement = tempElement->next;
|
tempElement = tempElement->next;
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -314,6 +315,11 @@ WordList* splitWordIntoList(char* string, char splitChar){
|
|||||||
WordList* newWordList = createWordList();
|
WordList* newWordList = createWordList();
|
||||||
if(newWordList == NULL) crash();
|
if(newWordList == NULL) crash();
|
||||||
|
|
||||||
|
if(string[0] == '.'){
|
||||||
|
addEndWordList(newWordList, (char*) ".");
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
while(!finished){
|
while(!finished){
|
||||||
|
|
||||||
if(string[i] == splitChar || string[i] == '\0'){
|
if(string[i] == splitChar || string[i] == '\0'){
|
||||||
|
Loading…
Reference in New Issue
Block a user