diff --git a/Kernel/interruptions/systemCalls.c b/Kernel/interruptions/systemCalls.c index 19184c7..e5e5760 100644 --- a/Kernel/interruptions/systemCalls.c +++ b/Kernel/interruptions/systemCalls.c @@ -21,12 +21,12 @@ uint64_t read(uint64_t fd, uint64_t buffer, uint64_t length) { char *bufferAux = (char *) buffer; int readBytes = 0; - if (!isForeground()) - return 0; - fd = getFdIn(); if (fd == STDIN) { + if (!isForeground()) + return 0; + while (length-- > 0) { *bufferAux = getKeyFromBuffer(); if (*bufferAux == 0) { @@ -35,12 +35,10 @@ uint64_t read(uint64_t fd, uint64_t buffer, uint64_t length) { readBytes--; blockIO(); } - if (*bufferAux == '\v') { - return 0; - // break; - } readBytes++; - bufferAux++; + if (*bufferAux++ == '\v') { + break; + } // blockIO(); } } else { @@ -48,10 +46,13 @@ uint64_t read(uint64_t fd, uint64_t buffer, uint64_t length) { *bufferAux = readPipe(fd); if (*bufferAux == 0) break; - bufferAux++; readBytes++; + if (*bufferAux++ == '\v') { + break; + } } } + // *bufferAux = 0; return readBytes; } \ No newline at end of file diff --git a/Kernel/utils/pipe.c b/Kernel/utils/pipe.c index 936b8bd..bed7832 100644 --- a/Kernel/utils/pipe.c +++ b/Kernel/utils/pipe.c @@ -88,20 +88,20 @@ void writePipe(int fd, char c) { semWait(node->pipe->sem); - semPost(node->pipe->fullSem); - node->pipe->buffer[node->pipe->currentW++ % PIPE_MAX_SIZE] = c; semPost(node->pipe->sem); + + semPost(node->pipe->fullSem); } char readPipe(int fd) { node_t *prev = NULL; node_t *node = searchRPipe(&prev, fd); - semWait(node->pipe->sem); + semWait(node->pipe->fullSem); - semPost(node->pipe->fullSem); + semWait(node->pipe->sem); char c = node->pipe->buffer[node->pipe->currentR++ % PIPE_MAX_SIZE]; diff --git a/Kernel/utils/scheduler.c b/Kernel/utils/scheduler.c index 1d4c2d2..ca62fab 100644 --- a/Kernel/utils/scheduler.c +++ b/Kernel/utils/scheduler.c @@ -234,14 +234,14 @@ char blockIO() { currentProcess->state = BLOCKEDIO; } - processCDT *prev = NULL; - processADT parent = searchProcess(&prev, currentProcess->ppid, firstProcess); - if (currentProcess->foreground) { - if (parent->backWait) { - parent->backWait = 0; - parent->foreground = 1; - } - } + // processCDT *prev = NULL; + // processADT parent = searchProcess(&prev, currentProcess->ppid, firstProcess); + // if (currentProcess->foreground) { + // if (parent->backWait) { + // parent->backWait = 0; + // parent->foreground = 1; + // } + // } forceTimer(); return EXIT_SUCCESS; diff --git a/Userland/Makefile b/Userland/Makefile index 993dcc0..c728f6e 100644 --- a/Userland/Makefile +++ b/Userland/Makefile @@ -14,5 +14,4 @@ clean: cd SampleCodeModule; make clean rm -rf *.bin - .PHONY: sampleCodeModule all clean diff --git a/Userland/SampleCodeModule/Makefile b/Userland/SampleCodeModule/Makefile index 4ae6163..c1786c6 100644 --- a/Userland/SampleCodeModule/Makefile +++ b/Userland/SampleCodeModule/Makefile @@ -1,7 +1,7 @@ include ../Makefile.inc -MODULE=0000-sampleCodeModule.bin -MODULE_ELF=0000-sampleCodeModule.elf +MODULE=../0000-sampleCodeModule.bin +MODULE_ELF=../0000-sampleCodeModule.elf SOURCES=$(wildcard *.c) SOURCES_SHELL=$(wildcard shell/*.c) SOURCES_ASM=$(wildcard asm/*.asm) @@ -13,17 +13,17 @@ OBJECTS_PROMPT=$(SOURCES_PROMPT:.c=.o) OBJECTS_BOTTLER=$(SOURCES_BOTTLER:.c=.o) OBJECTS_ASM=$(SOURCES_ASM:.asm=.o) -ALL_OBJECTS= $(OBJECTS) $(OBJECTS_ASM) $(OBJECTS_SHELL) $(OBJECTS_COMMANDS) $(OBJECTS_PROMPT) $(OBJECTS_BOTTLER) +ALL_OBJECTS= $(OBJECTS) $(OBJECTS_ASM) $(OBJECTS_SHELL) $(OBJECTS_PROMPT) $(OBJECTS_BOTTLER) STATICLIBS= all: $(MODULE) $(MODULE_ELF) $(MODULE): $(STATICLIBS) $(ALL_OBJECTS) - $(LD) $(LDFLAGS) -T sampleCodeModule.ld $(OBJECTS) $(OBJECTS_SHELL) $(OBJECTS_ASM) $(OBJECTS_PROMPT) $(OBJECTS_BOTTLER) -o ../$(MODULE) + $(LD) $(LDFLAGS) -T sampleCodeModule.ld -o $@ $^ $(MODULE_ELF): $(STATICLIBS) $(ALL_OBJECTS) - $(LD) $(LDFLAGS) -I./include -I./shell/include -I./bottler/include -T sampleCodeModule.ld --oformat=elf64-x86-64 $(OBJECTS) $(OBJECTS_SHELL) $(OBJECTS_ASM) $(OBJECTS_PROMPT) $(OBJECTS_BOTTLER) -o ../$(MODULE_ELF) + $(LD) $(LDFLAGS) -T sampleCodeModule.ld --oformat=elf64-x86-64 -o $@ $^ %.o:%.c $(GCC) $(GCCFLAGS) -T _loader.c -I./include -I./shell/include -I./bottler/include -c $< -o $@ @@ -32,6 +32,6 @@ $(MODULE_ELF): $(STATICLIBS) $(ALL_OBJECTS) $(ASM) $(ASMFLAGS) $< -o $@ clean: - rm -rf $(ALL_OBJECTS) + rm -rf $(ALL_OBJECTS) ../*.bin .PHONY: all clean print \ No newline at end of file diff --git a/Userland/SampleCodeModule/include/libc.h b/Userland/SampleCodeModule/include/libc.h index 82dc6de..2895664 100644 --- a/Userland/SampleCodeModule/include/libc.h +++ b/Userland/SampleCodeModule/include/libc.h @@ -7,7 +7,7 @@ void winClear(); void printString(char * string); void printStringError(char * string); void printStringLen(char * string, int len); -void new_line(); +void newline(); void backspace(); char getChar(); void putChar(char c); @@ -28,5 +28,6 @@ char * strstrip(char * s, char c); void ftoa(double f, char * buf, int precision); char * strcat(char * dest, const char * src); int strcpy(char * strDest, const char * strSrc); +void addEOF(); #endif \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/cat.c b/Userland/SampleCodeModule/shell/commands/cat.c index f9b16e2..a6e474c 100644 --- a/Userland/SampleCodeModule/shell/commands/cat.c +++ b/Userland/SampleCodeModule/shell/commands/cat.c @@ -2,39 +2,28 @@ #define SIZE 1000 -/* -void cat(int argc, char ** argv) { - char c; - int i = 0; - char buffer[SIZE] = {0}; - while ((c = getChar()) != 0 && c != -1) { - if (i >= SIZE) - break; - buffer[i++] = c; - } - - printStringLen(buffer, i); - sys_exit(); -} -*/ - void cat(int argc, char ** argv) { char c; int i = 0, j = 0, line = 0; char buffer[SIZE] = {0}; - while ((c = getChar()) <= 0) { + while ((c = getChar()) > 0) { if (i >= SIZE) break; + buffer[i++] = c; + j++; if (c == '\n') { - printStringLen(buffer[line], j); + printStringLen(buffer + line, j); j = 0; line = i; } - buffer[i++] = c; - j++; + if (c == '\b') { + buffer[--i] = 0; + buffer[--i] = 0; + } } + printStringLen(buffer + line, j); - printStringLen(buffer, i); + newline(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/cpuid.c b/Userland/SampleCodeModule/shell/commands/cpuid.c index 4e81e3d..682c291 100644 --- a/Userland/SampleCodeModule/shell/commands/cpuid.c +++ b/Userland/SampleCodeModule/shell/commands/cpuid.c @@ -104,8 +104,9 @@ void cpufeatures(int argc, char *argv[]) { for (int i = 0; i < len; i++) { if (checks[i]()) { printString(supports[i]); - new_line(); + newline(); } } + addEOF(); sys_exit(); } diff --git a/Userland/SampleCodeModule/shell/commands/filter.c b/Userland/SampleCodeModule/shell/commands/filter.c index 4bcfda0..186e16b 100644 --- a/Userland/SampleCodeModule/shell/commands/filter.c +++ b/Userland/SampleCodeModule/shell/commands/filter.c @@ -6,30 +6,31 @@ int isVocal(char c) { return c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U' || c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u'; } -void debug8() -{ - return; -} - -void debug9() -{ - return; -} - void filter(int argc, char ** argv) { char c; - int i = 0; + int i = 0, j = 0, line = 0; char buffer[SIZE] = {0}; - debug9(); - while ((c = getChar()) != 0 && c != -1) { - debug8(); + while ((c = getChar()) > 0) { if (i >= SIZE) break; - if (isVocal(c)) - buffer[i++] = c; + if (!isVocal(c)) { + buffer[i++] = c; + j++; + } + if (c == '\b') { + buffer[--i] = 0; + if (isVocal(buffer[i-1])) + buffer[--i] = 0; + } + if (c == '\n') { + printStringLen(buffer + line, j); + j = 0; + line = i; + } } - printStringLen(buffer, i); - new_line(); + printStringLen(buffer + line, j); + + newline(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/help.c b/Userland/SampleCodeModule/shell/commands/help.c index 0fd7c73..a3dd934 100644 --- a/Userland/SampleCodeModule/shell/commands/help.c +++ b/Userland/SampleCodeModule/shell/commands/help.c @@ -7,7 +7,8 @@ static const int len = 9; void help(int argc, char *argv[]) { for (int i = 0; i < len; i++) { printString(info[i]); - new_line(); + newline(); } + addEOF(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/inforeg.c b/Userland/SampleCodeModule/shell/commands/inforeg.c index 9c14028..d2c2154 100644 --- a/Userland/SampleCodeModule/shell/commands/inforeg.c +++ b/Userland/SampleCodeModule/shell/commands/inforeg.c @@ -17,13 +17,14 @@ void inforeg(int argc, char *argv[]) { for (int i = 0; i < 17; i++) { if (i % 5 == 0 && i != 0) - new_line(); + newline(); printString(regsNames[i]); printStringLen("0x", 2); printString(gtoa(regs[i], bufferAux, 16, 20)); if (i != 14 && i % 5 != 4) printStringLen(" - ", 3); } - new_line(); + addEOF(); + newline(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/loop.c b/Userland/SampleCodeModule/shell/commands/loop.c index 384e574..98b3746 100644 --- a/Userland/SampleCodeModule/shell/commands/loop.c +++ b/Userland/SampleCodeModule/shell/commands/loop.c @@ -12,7 +12,7 @@ void loop(int argc, char *argv[]) { buffer = strcat(strcat(itoa(pid, buffer, 10), " "), str); while (1) { printString(buffer); - putChar('\n'); + newline(); sys_sleep(secs); } sys_free(buffer); diff --git a/Userland/SampleCodeModule/shell/commands/phylo.c b/Userland/SampleCodeModule/shell/commands/phylo.c index c9bc3d6..5dd16f0 100644 --- a/Userland/SampleCodeModule/shell/commands/phylo.c +++ b/Userland/SampleCodeModule/shell/commands/phylo.c @@ -1,32 +1,7 @@ #include "phylo.h" -#include -#include - -#define ARGV_SIZE 2 -#define BUFF_SIZE 20 -#define MAX_PHILO_SIZE 3 -#define MAX_NAME_SIZE 10 -#define STARTING 5 - -int * state; -typedef enum states {EATING = 0, HUNGRY, THINKING} states; - -typedef struct philosopher_t { - int debug; - char ** argv; - char * buffer; - sem_t * sem; - int pid; - states state; - - struct philosopher_t * left; - struct philosopher_t * right; -} philosopher_t; - -philosopher_t * firstPhil; - -sem_t * mutex; +philosopher_t *firstPhil; +sem_t *mutex; int philoCount = STARTING; void printState() { @@ -37,7 +12,7 @@ void printState() { else putChar('.'); phil = phil->right; } while (phil != firstPhil); - putChar('\n'); + newline(); } void test(philosopher_t * phil) @@ -48,8 +23,6 @@ void test(philosopher_t * phil) } } -void philosopher(int argc, char ** argv); - void addPhilo() { philoCount++; @@ -60,8 +33,6 @@ void addPhilo() { new->sem = sys_semOpen("filosofo", 0); new->argv[0] = "filosofo"; - // new->argv[1] = itoa((uint64_t) new, new->argv[1], 10); - // strcpy(phil->buffer, itoa((uint64_t) phil, phil->buffer, 10)); strcpy(new->buffer, itoa((uint64_t) new, new->buffer, 10)); new->argv[1] = new->buffer; @@ -98,12 +69,9 @@ void take_fork(philosopher_t * phil) { sys_semPost(mutex); sys_semWait(phil->sem); - - // sys_sleep(1); } void put_fork(philosopher_t * phil) { - sys_semWait(mutex); phil->state = THINKING; @@ -114,8 +82,7 @@ void put_fork(philosopher_t * phil) { sys_semPost(mutex); } -void philosopher(int argc, char ** argv) -{ +void philosopher(int argc, char ** argv) { if (argc != 2) { sys_exit(); } @@ -123,14 +90,12 @@ void philosopher(int argc, char ** argv) philosopher_t * i = (philosopher_t *) ((uint64_t) atoi(argv[1], -1)); while (1) { - // sys_sleep(1); sys_sleep(1); take_fork(i); printState(); sys_sleep(1); - // sys_sleep(2); put_fork(i); printState(); @@ -162,7 +127,6 @@ void phylo(int argc, char ** argv) { phil->sem = sys_semOpen("filosofo", 0); phil->argv[0] = "filosofo"; - // phil->argv[1] = itoa((uint64_t) phil, phil->argv[1], 10); strcpy(phil->buffer, itoa((uint64_t) phil, phil->buffer, 10)); phil->argv[1] = phil->buffer; @@ -190,24 +154,22 @@ void phylo(int argc, char ** argv) { } while (phil != firstPhil); char c; - while (1) { - while ((c = getChar()) != 0 && c != -1) { - if (c == 'a') { - addPhilo(); - } - else if (c == 'r') { - removePhilo(); - } - else if (c == 'q') { - end(); - } + // while (1) { + while ((c = getChar()) != 0 && c != -1) { + if (c == 'a') { + addPhilo(); + } + else if (c == 'r') { + removePhilo(); + } + else if (c == 'q') { + end(); } } + // } sys_exit(); } -#include "ps.h" - void freePhilo(philosopher_t * phil) { sys_semClose(phil->sem); sys_free(phil); @@ -232,12 +194,7 @@ void end() { sys_exit(); } - - -// La primera es muy similar a: - /* * Taken from "Operating Systems - Design and Implementation" by Tanenbaum * Section 2.3, page 91, Figure 2-10 - * https://gist.github.com/codelance/4186161 */ diff --git a/Userland/SampleCodeModule/shell/commands/pipes.c b/Userland/SampleCodeModule/shell/commands/pipes.c index baca9fb..118dece 100644 --- a/Userland/SampleCodeModule/shell/commands/pipes.c +++ b/Userland/SampleCodeModule/shell/commands/pipes.c @@ -4,7 +4,8 @@ void pipes(int argc, char *argv[]) { char * output = sys_pipes(); printString(output); - new_line(); + newline(); sys_free(output); + addEOF(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/printmem.c b/Userland/SampleCodeModule/shell/commands/printmem.c index 565afab..7115cf8 100644 --- a/Userland/SampleCodeModule/shell/commands/printmem.c +++ b/Userland/SampleCodeModule/shell/commands/printmem.c @@ -28,7 +28,8 @@ void printmem(int argc, char *argv[]) { char bufferAux[8]; printStringLen("0x", 2); printString(itoa(buffer[i], bufferAux, 16)); - new_line(); + newline(); } + addEOF(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/ps.c b/Userland/SampleCodeModule/shell/commands/ps.c index 21728c6..45a1c2c 100644 --- a/Userland/SampleCodeModule/shell/commands/ps.c +++ b/Userland/SampleCodeModule/shell/commands/ps.c @@ -4,7 +4,8 @@ void ps(int argc, char *argv[]) { char * output = sys_ps(); printString(output); - new_line(); + addEOF(); + newline(); sys_free(output); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/quadratic.c b/Userland/SampleCodeModule/shell/commands/quadratic.c index af0fb69..f675997 100644 --- a/Userland/SampleCodeModule/shell/commands/quadratic.c +++ b/Userland/SampleCodeModule/shell/commands/quadratic.c @@ -32,13 +32,14 @@ void quadratic(int argc, char *argv[]) { printString("x + "); ftoa(c, buffer, 10); printString(buffer); - new_line(); + newline(); ftoa(sol1, buffer, 10); printString(buffer); printStringLen(" and ", 6); char buffer2[30] = {0}; ftoa(sol2, buffer2, 10); printString(buffer2); - new_line(); + addEOF(); + newline(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/semCom.c b/Userland/SampleCodeModule/shell/commands/semCom.c index 05dffb4..d41d80d 100644 --- a/Userland/SampleCodeModule/shell/commands/semCom.c +++ b/Userland/SampleCodeModule/shell/commands/semCom.c @@ -4,7 +4,8 @@ void sem(int argc, char *argv[]) { char * output = sys_sem(); printString(output); - new_line(); + newline(); sys_free(output); + addEOF(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/time.c b/Userland/SampleCodeModule/shell/commands/time.c index 5a79f5a..5e1e89f 100644 --- a/Userland/SampleCodeModule/shell/commands/time.c +++ b/Userland/SampleCodeModule/shell/commands/time.c @@ -47,5 +47,7 @@ void time(int argc, char *argv[]) { printTime(getMinutes()); putChar(':'); printTime(getSeconds()); + addEOF(); + newline(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/commands/wc.c b/Userland/SampleCodeModule/shell/commands/wc.c index 0f32f3f..72d65bd 100644 --- a/Userland/SampleCodeModule/shell/commands/wc.c +++ b/Userland/SampleCodeModule/shell/commands/wc.c @@ -6,7 +6,7 @@ void wc(int argc, char ** argv) { char c; int i = 0; char buffer[SIZE] = {0}; - while ((c = getChar()) != 0 && c != -1) { + while ((c = getChar()) > 0) { if (i >= SIZE) break; if (c == '\n') @@ -14,5 +14,6 @@ void wc(int argc, char ** argv) { } printStringLen(gtoa(i, buffer, 10, SIZE), SIZE); + newline(); sys_exit(); } \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/include/phylo.h b/Userland/SampleCodeModule/shell/include/phylo.h index cb3d3a2..b867818 100644 --- a/Userland/SampleCodeModule/shell/include/phylo.h +++ b/Userland/SampleCodeModule/shell/include/phylo.h @@ -1,9 +1,33 @@ -#ifndef PHYLO_LIB -#define PHYLO_LIB +#ifndef PHYLO_H +#define PHYLO_H +#include +#include #include "libc.h" #include "system.h" +#include "phyloLib.h" + +#define ARGV_SIZE 2 +#define BUFF_SIZE 20 +#define MAX_PHILO_SIZE 3 +#define MAX_NAME_SIZE 10 +#define STARTING 5 -void phylo(int argc, char *argv[]); +int * state; +typedef enum states {EATING = 0, HUNGRY, THINKING} states; + +typedef struct philosopher_t { + int debug; + char ** argv; + char * buffer; + sem_t * sem; + int pid; + states state; + + struct philosopher_t * left; + struct philosopher_t * right; +} philosopher_t; + +void philosopher(int argc, char ** argv); #endif \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/include/phyloLib.h b/Userland/SampleCodeModule/shell/include/phyloLib.h new file mode 100644 index 0000000..74d3b5b --- /dev/null +++ b/Userland/SampleCodeModule/shell/include/phyloLib.h @@ -0,0 +1,6 @@ +#ifndef PHYLOLIB_H +#define PHYLOLIB_H + +void phylo(int argc, char *argv[]); + +#endif \ No newline at end of file diff --git a/Userland/SampleCodeModule/shell/include/shell.h b/Userland/SampleCodeModule/shell/include/shell.h index 3849ae8..a05f30c 100644 --- a/Userland/SampleCodeModule/shell/include/shell.h +++ b/Userland/SampleCodeModule/shell/include/shell.h @@ -21,7 +21,7 @@ #include "semCom.h" #include "stddef.h" #include "nice.h" -#include "phylo.h" +#include "phyloLib.h" #include "kill.h" #include "block.h" #include "unblock.h"