Compare commits
No commits in common. "94e5d7bfa5d8444a4d3eb9772bf52ce0e60344ed" and "8e4a8f6f09fd766a320aaa49659dc39692098aa5" have entirely different histories.
94e5d7bfa5
...
8e4a8f6f09
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,2 @@
|
||||
.history
|
||||
.vscode
|
||||
publish
|
||||
|
34
README.md
34
README.md
@ -22,29 +22,15 @@ cat ./spam/example_spam1.txt | ./isspam
|
||||
```
|
||||
## Example output
|
||||
```
|
||||
File: ./spam/example_spam3.txt
|
||||
Capitalized words: 39
|
||||
Sentences: 20
|
||||
Words: 420
|
||||
Numbers: 1
|
||||
Forbidden words: 15
|
||||
<0:recovery>
|
||||
<1:techie>
|
||||
<2:https>
|
||||
<3:digital>
|
||||
<4:hack>
|
||||
<5://>
|
||||
<6:com>
|
||||
<7:@>
|
||||
<8:crypto>
|
||||
<9:bitcoin>
|
||||
<10:whatsapp>
|
||||
<11:cryptocurrency>
|
||||
<12:stolen>
|
||||
<13:contact>
|
||||
<14:understanding>
|
||||
Word count per sentence: 21
|
||||
Memory usage: 1 MB, 6.460 (re)allocated, 4.222 unqiue free'd, 0 in use.
|
||||
File: ./not_spam/not_spam1.txt
|
||||
Capitalized words: 1
|
||||
Sentences: 5
|
||||
Words: 52
|
||||
Numbers: 0
|
||||
Forbidden words: 0
|
||||
Word count per sentence: 10
|
||||
|
||||
Memory usage: 29 KB, 479 (re)allocated, 327 unqiue free'd, 0 in use.
|
||||
```
|
||||
## Valgrind status
|
||||
Date: 2024-11-28
|
||||
@ -59,4 +45,4 @@ Memory usage: 1 MB, 6.460 (re)allocated, 4.222 unqiue free'd, 0 in use.
|
||||
==131498==
|
||||
==131498== For lists of detected and suppressed errors, rerun with: -s
|
||||
==131498== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
|
||||
```
|
||||
```
|
88
isspam.c
88
isspam.c
@ -24,28 +24,9 @@ char *forbidden_words[] = {
|
||||
"stolen", "freeze", "quick", "crucial", "tracing", "scammers", "expers", "hire", "century",
|
||||
"transaction", "essential", "managing", "contact", "contacting", "understanding", "assets", "funds", NULL};
|
||||
|
||||
|
||||
bool show_capitalized = false;
|
||||
bool show_sentences = false;
|
||||
bool show_words = false;
|
||||
bool show_numbers = false;
|
||||
bool show_forbidden_words = true;
|
||||
|
||||
|
||||
|
||||
|
||||
bool file_exists(char * path){
|
||||
FILE * f = fopen(path, "r");
|
||||
bool result = f != NULL;
|
||||
if(f){
|
||||
fclose(f);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
void sld(sl *lst) {
|
||||
for (ulonglong i = 0; i < lst->count; i++) {
|
||||
printf("<%llu:%s>\n", i, lst->strings[i]);
|
||||
for (uint i = 0; i < lst->count; i++) {
|
||||
printf("<%u:%s>\n", i, lst->strings[i]);
|
||||
}
|
||||
}
|
||||
|
||||
@ -68,10 +49,10 @@ char *remove_preserved_chars(char *content) {
|
||||
|
||||
char *slds(sl *lst) {
|
||||
str_t *buffer = strn(1337);
|
||||
for (ulonglong i = 0; i < lst->count; i++) {
|
||||
for (uint i = 0; i < lst->count; i++) {
|
||||
char *temp = (char *)malloc(strlen(lst->strings[i]) + 20);
|
||||
char *cc = remove_preserved_chars(lst->strings[i]);
|
||||
sprintf(temp, "<%llu:%s>\n", i, cc);
|
||||
sprintf(temp, "<%u:%s>\n", i, cc);
|
||||
free(cc);
|
||||
stra(buffer, temp);
|
||||
free(temp);
|
||||
@ -263,6 +244,7 @@ sl *get_forbidden_words(char *content) {
|
||||
slf(words);
|
||||
return found;
|
||||
}
|
||||
|
||||
void analyze(FILE *f) {
|
||||
char *data = fread_till_eof(f);
|
||||
|
||||
@ -275,10 +257,8 @@ void analyze(FILE *f) {
|
||||
|
||||
// All capitalized words
|
||||
sl *capitalized_words = get_capitalized_words(data);
|
||||
ulonglong capitalized_words_count = capitalized_words->count;
|
||||
printf("Capitalized words: %llu\n", capitalized_words_count);
|
||||
if(show_capitalized)
|
||||
sld(capitalized_words);
|
||||
uint capitalized_words_count = capitalized_words->count;
|
||||
printf("Capitalized words: %u\n", capitalized_words_count);
|
||||
sbuf = slds(capitalized_words);
|
||||
stra(all, sbuf);
|
||||
free(sbuf);
|
||||
@ -286,9 +266,8 @@ void analyze(FILE *f) {
|
||||
sl *sentences = get_sentences(data);
|
||||
|
||||
// All sentences
|
||||
printf("Sentences: %llu\n", sentences->count);
|
||||
if(show_sentences)
|
||||
sld(sentences);
|
||||
printf("Sentences: %u\n", sentences->count);
|
||||
// sld(sentences);
|
||||
sbuf = slds(sentences);
|
||||
stra(all, sbuf);
|
||||
free(sbuf);
|
||||
@ -296,33 +275,31 @@ void analyze(FILE *f) {
|
||||
sl *words = get_words(data);
|
||||
|
||||
// All words
|
||||
printf("Words: %llu\n", words->count);
|
||||
if(show_words)
|
||||
sld(words);
|
||||
printf("Words: %u\n", words->count);
|
||||
// sld(words);
|
||||
sbuf = slds(words);
|
||||
stra(all, sbuf);
|
||||
free(sbuf);
|
||||
|
||||
// Numbers
|
||||
sl *numbers = get_numbers(data);
|
||||
printf("Numbers: %llu\n", numbers->count);
|
||||
if(show_numbers)
|
||||
sld(numbers);
|
||||
printf("Numbers: %u\n", numbers->count);
|
||||
// sld(numbers);
|
||||
sbuf = slds(numbers);
|
||||
stra(all, sbuf);
|
||||
free(sbuf);
|
||||
|
||||
// Forbidden words
|
||||
sl *fw = get_forbidden_words(data);
|
||||
printf("Forbidden words: %llu\n", fw->count);
|
||||
if(show_forbidden_words)
|
||||
sld(fw);
|
||||
printf("Forbidden words: %u\n", fw->count);
|
||||
// sld(fw);
|
||||
sbuf = slds(fw);
|
||||
stra(all, sbuf);
|
||||
free(sbuf);
|
||||
|
||||
strd(all);
|
||||
ulonglong word_count_per_sentence = words->count / (sentences->count ? sentences->count : 1);
|
||||
printf("Word count per sentence: %llu\n", word_count_per_sentence);
|
||||
uint word_count_per_sentence = words->count / sentences->count;
|
||||
printf("Word count per sentence: %u\n", word_count_per_sentence);
|
||||
|
||||
slf(capitalized_words);
|
||||
slf(sentences);
|
||||
@ -340,40 +317,17 @@ void analyze_file(char *path) {
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
|
||||
if (argc > 1) {
|
||||
for (int i = 1; i < argc; i++) {
|
||||
if(!strcmp(argv[1],"--hide-capitalized")){
|
||||
show_capitalized=false;
|
||||
}else if(!strcmp(argv[1],"--show-sentences")){
|
||||
show_sentences=true;
|
||||
}else if(!strcmp(argv[1],"--show-words")){
|
||||
show_words=true;
|
||||
}else if(!strcmp(argv[1],"--show-numbers")){
|
||||
show_words=true;
|
||||
}else if(!strcmp(argv[1],"--hide-forbidden-words")){
|
||||
show_forbidden_words=false;
|
||||
}else if(!strcmp(argv[1],"help") || !strcmp(argv[1],"--help")){
|
||||
printf("%s",
|
||||
"Usage: spam [file] [file] [file]\n"
|
||||
"Flag defaults:\n"
|
||||
" hide-capitalized = true\n"
|
||||
" show-sentences = false\n"
|
||||
" show-words = false\n"
|
||||
" show-numbers = false\n"
|
||||
" hide-forbidden-words = false\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
printf("File: %s\n", argv[i]);
|
||||
analyze_file(argv[i]);
|
||||
printf("%s\n", rmalloc_stats());
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
printf("%s\n", rmalloc_stats());
|
||||
return 0;
|
||||
}
|
||||
analyze(stdin);
|
||||
printf("%s\n", rmalloc_stats());
|
||||
return 0;
|
||||
}
|
||||
}
|
@ -185,7 +185,7 @@ void *rfree(void *obj) {
|
||||
char *rmalloc_lld_format(ulonglong num) {
|
||||
char res[100];
|
||||
res[0] = 0;
|
||||
sprintf(res, "%'llu", num);
|
||||
sprintf(res, "%'lld", num);
|
||||
char *resp = res;
|
||||
while (*resp) {
|
||||
if (*resp == ',')
|
||||
@ -208,7 +208,7 @@ char *rmalloc_bytes_format(int factor, ulonglong num) {
|
||||
}
|
||||
|
||||
char *rmalloc_stats() {
|
||||
static char res[300];
|
||||
static char res[200];
|
||||
res[0] = 0;
|
||||
setlocale(LC_NUMERIC, "en_US.UTF-8");
|
||||
sprintf(res, "Memory usage: %s, %s (re)allocated, %s unqiue free'd, %s in use.", rmalloc_bytes_format(0, rmalloc_total_bytes_allocated),
|
||||
|
@ -4,11 +4,9 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
|
||||
|
||||
typedef struct rstring_list_t {
|
||||
unsigned long long size;
|
||||
unsigned long long count;
|
||||
unsigned int size;
|
||||
unsigned int count;
|
||||
char **strings;
|
||||
} rstring_list_t;
|
||||
|
||||
@ -19,7 +17,7 @@ rstring_list_t *rstring_list_new() {
|
||||
}
|
||||
|
||||
void rstring_list_free(rstring_list_t *rsl) {
|
||||
for (unsigned long long i = 0; i < rsl->size; i++) {
|
||||
for (uint i = 0; i < rsl->size; i++) {
|
||||
free(rsl->strings[i]);
|
||||
}
|
||||
if (rsl->strings)
|
||||
@ -36,7 +34,7 @@ void rstring_list_add(rstring_list_t *rsl, char *str) {
|
||||
rsl->count++;
|
||||
}
|
||||
bool rstring_list_contains(rstring_list_t *rsl, char *str) {
|
||||
for (unsigned long long i = 0; i < rsl->count; i++) {
|
||||
for (uint i = 0; i < rsl->count; i++) {
|
||||
if (!strcmp(rsl->strings[i], str))
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user