Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prototype on how ftp could show more info #45

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11
ASFLAGS := -g $(ARCH)
LDFLAGS = -specs=3dsx.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map)

LIBS := -lcurl -lmbedtls -lmbedx509 -lmbedcrypto -larchive -lbz2 -llzma -lz \
LIBS := -lbftps -lcurl -lmbedtls -lmbedx509 -lmbedcrypto -larchive -lbz2 -llzma -lz \
-lcitro2d -lcitro3d -lctru -lm

#---------------------------------------------------------------------------------
Expand Down
35 changes: 35 additions & 0 deletions libs/include/bftps.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#ifndef BFTPS_H
#define BFTPS_H

#include <limits.h>
#define MAX_PATH PATH_MAX

#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
FILE_SENDING,
FILE_RECEIVING,
} bftps_file_transfer_mode_t;

typedef struct _bftps_file_transfer_t {
bftps_file_transfer_mode_t mode;
unsigned int fileSize; // This is only valid for sending files
unsigned int filePosition;
struct _bftps_file_transfer_t* next;
char name[MAX_PATH];
} bftps_file_transfer_t;

extern int bftps_start();
extern int bftps_stop();
extern const char* bftps_name();

extern const bftps_file_transfer_t* bftps_file_transfer_retrieve();
extern void bftps_file_transfer_cleanup(const bftps_file_transfer_t* file_transfer);

#ifdef __cplusplus
}
#endif

#endif /* BFTPS_H */

Binary file added libs/lib/libbftps.a
Binary file not shown.
134 changes: 95 additions & 39 deletions source/menus/menu_ftp.c
Original file line number Diff line number Diff line change
@@ -1,76 +1,129 @@
#include <stdio.h>
#include <string.h>
#include <unistd.h>

#include "C2D_helper.h"
#include "common.h"
#include "config.h"
#include "dirbrowse.h"
#include "fs.h"
#include "ftp.h"
//#include "ftp.h"
#include "bftps.h"
#include "menu_main.h"
#include "status_bar.h"
#include "textures.h"
#include "touch.h"
#include "utils.h"

const char* my_basename(const char* path) {
const char *pLastSlash = path;
while (*path != '\0') {
if (*path == '/')
pLastSlash = path+1;
path++;
}
return pLastSlash;
}

void Menu_DisplayFTP(void) {
ftp_init();

bftps_start();

Result ret = 0;
char buf[137], hostname[128];
u32 wifi_status = 0;
char buf[137], buf2[512];
u32 wifiStatus = 0;

int pBar = 0, xlim = 270;
int position = 0, xlim = 270, heigth = 0;

ret = gethostname(hostname, sizeof(hostname));
//ret = gethostname(hostname, sizeof(hostname));

if (R_SUCCEEDED(gspLcdInit())) {
GSPLCD_PowerOffBacklight(GSPLCD_SCREEN_TOP);
gspLcdExit();
}

while(MENU_STATE == MENU_STATE_FTP) {
ftp_loop();
//ftp_loop();

C3D_FrameBegin(C3D_FRAME_SYNCDRAW);
C2D_TargetClear(RENDER_BOTTOM, config.dark_theme? BLACK_BG : WHITE);
C2D_SceneBegin(RENDER_BOTTOM);
Draw_Rect(0, 0, 320, 20, config.dark_theme? STATUS_BAR_DARK : STATUS_BAR_LIGHT); // Status bar
Draw_Rect(0, 20, 320, 220, config.dark_theme? MENU_BAR_DARK : MENU_BAR_LIGHT); // Menu bar

ret = ACU_GetWifiStatus(&wifi_status);
ret = ACU_GetWifiStatus(&wifiStatus);

Menu_DrawMenuBar();

if ((wifi_status != 0) && R_SUCCEEDED(ret)) {
Draw_Text(((320 - Draw_GetTextWidth(0.42f, "FTP initialized")) / 2), 37, 0.42f, WHITE, "FTP initialized");
snprintf(buf, 137, "IP: %s:5000", R_FAILED(ret)? "Failed to get IP" : hostname);

if (strlen(ftp_accepted_connection) != 0)
Draw_Text(((320 - Draw_GetTextWidth(0.42f, ftp_accepted_connection)) / 2), 77, 0.42f, WHITE, ftp_accepted_connection);

Draw_Text(((320 - Draw_GetTextWidth(0.42f, "File browser cannot be accesed at this time.")) / 2), 97, 0.42f, WHITE, "File browser cannot be accesed at this time.");

if (strlen(ftp_file_transfer) != 0)
Draw_Text(((320 - Draw_GetTextWidth(0.42f, ftp_file_transfer)) / 2), 147, 0.42f, WHITE, ftp_file_transfer);

if (isTransfering) {
Draw_Rect(50, 140, 220, 3, config.dark_theme? STATUS_BAR_DARK : STATUS_BAR_LIGHT);
Draw_Rect(pBar, 140, 40, 3, WHITE);

// Boundary stuff
Draw_Rect(0, 140, 50, 3, config.dark_theme? MENU_BAR_DARK : MENU_BAR_LIGHT);
Draw_Rect(270, 140, 50, 3, config.dark_theme? MENU_BAR_DARK : MENU_BAR_LIGHT);
pBar += 4;
if ((wifiStatus != 0) && R_SUCCEEDED(ret)) {
Draw_Text(((320 - Draw_GetTextWidth(0.42f, "FTP initialized")) / 2), 37, 0.42f, WHITE, "FTP initialized");
//snprintf(buf, 137, "IP: %s:5000", R_FAILED(ret)? "Failed to get IP" : hostname);
snprintf(buf, 137, "%s", bftps_name());

/* for now I still don't have a list of conected clients, is this really necessary?
if (strlen(ftp_accepted_connection) != 0)
Draw_Text(((320 - Draw_GetTextWidth(0.42f, ftp_accepted_connection)) / 2), 77, 0.42f, WHITE, ftp_accepted_connection);
*/

Draw_Text(((320 - Draw_GetTextWidth(0.42f, "File browser cannot be accessed at this time.")) / 2), 97, 0.42f, WHITE, "File browser cannot be accesed at this time.");

const bftps_file_transfer_t* transfersInfo = bftps_file_transfer_retrieve();
if (transfersInfo) {
const bftps_file_transfer_t* file = transfersInfo;
heigth = 0;
while (file) { // should be limited to the amount of information that can be shown (for now working on two simultaneous)
if (file->mode == FILE_SENDING) {
float fraction = ((float) file->filePosition / (float) file->fileSize);
snprintf(buf2, 512, "Sending: %.2f%%", fraction * (float) 100);
//file name should have an elipsis when is to longer
Draw_Text(((320 - Draw_GetTextWidth(0.45f, buf2)) / 2), 150 + heigth, 0.45f, WHITE, buf2);
Draw_Text(((320 - Draw_GetTextWidth(0.35f, my_basename(file->name))) / 2), 170 + heigth, 0.35f, WHITE, my_basename(file->name));
int progress = round(fraction * (float) (xlim - 50));
Draw_Rect(50, 140 + heigth, 220, 3, config.dark_theme ? STATUS_BAR_DARK : STATUS_BAR_LIGHT);
Draw_Rect(50, 140 + heigth, progress, 3, WHITE);
} else {
snprintf(buf2, 512, "Receiving: %.2fMB",
((float) file->filePosition / ((float) 1024 * (float) 1024)));
//file name should have an elipsis when is to longer
Draw_Text(((320 - Draw_GetTextWidth(0.45f, buf2)) / 2), 150 + heigth, 0.45f, WHITE, buf2);
Draw_Text(((320 - Draw_GetTextWidth(0.35f, my_basename(file->name))) / 2), 170 + heigth, 0.35f, WHITE, my_basename(file->name));

position += 4;
if (position >= xlim)
position = 34;
Draw_Rect(50, 140 + heigth, 220, 3, config.dark_theme ? STATUS_BAR_DARK : STATUS_BAR_LIGHT);
Draw_Rect(position, 140 + heigth, 40, 3, WHITE);
// Boundary stuff
Draw_Rect(0, 140 + heigth, 50, 3, config.dark_theme ? MENU_BAR_DARK : MENU_BAR_LIGHT);
Draw_Rect(270, 140 + heigth, 50, 3, config.dark_theme ? MENU_BAR_DARK : MENU_BAR_LIGHT);
}
heigth += 50;
file = file->next;
}
bftps_file_transfer_cleanup(transfersInfo);
}

/*
if (strlen(ftp_file_transfer) != 0)
Draw_Text(((320 - Draw_GetTextWidth(0.42f, ftp_file_transfer)) / 2), 147, 0.42f, WHITE, ftp_file_transfer);

if (isTransfering) {
Draw_Rect(50, 140, 220, 3, config.dark_theme? STATUS_BAR_DARK : STATUS_BAR_LIGHT);
Draw_Rect(pBar, 140, 40, 3, WHITE);

// Boundary stuff
Draw_Rect(0, 140, 50, 3, config.dark_theme? MENU_BAR_DARK : MENU_BAR_LIGHT);
Draw_Rect(270, 140, 50, 3, config.dark_theme? MENU_BAR_DARK : MENU_BAR_LIGHT);
pBar += 4;

if (pBar >= xlim)
pBar = 34;
}
}
else {
Draw_Text(((320 - Draw_GetTextWidth(0.42f, "Failed to initialize FTP.")) / 2), 37, 0.42f, WHITE, "Failed to initialize FTP.");
snprintf(buf, 18, "WiFi not enabled.");
}
if (pBar >= xlim)
pBar = 34;
}
*/
} else {
Draw_Text(((320 - Draw_GetTextWidth(0.42f, "Failed to initialize FTP.")) / 2), 37, 0.42f, WHITE, "Failed to initialize FTP.");
snprintf(buf, 18, "WiFi not enabled.");
}

Draw_Text(((320 - Draw_GetTextWidth(0.42f, buf)) / 2), 57, 0.42f, WHITE, buf);
Draw_Text(((320 - Draw_GetTextWidth(0.42f, "Tap the FTP icon to disable the FTP connection.")) / 2), 117, 0.42f, WHITE, "Tap the FTP icon to disable the FTP connection.");
Expand All @@ -82,11 +135,14 @@ void Menu_DisplayFTP(void) {

if (((kDown & KEY_TOUCH) && (TouchInRect(73, 0, 97, 20))) || (kDown & KEY_SELECT))
break;
// so CPU is not doing unneeded extra work, 100ms should made the UI responsive enough, probably we could increase this to 150 mss
usleep(100000);
}

memset(ftp_accepted_connection, 0, 20); // Empty accepted connection address
memset(ftp_file_transfer, 0, 50); // Empty transfer status
ftp_exit();
//memset(ftp_accepted_connection, 0, 20); // Empty accepted connection address
//memset(ftp_file_transfer, 0, 50); // Empty transfer status
//ftp_exit();
bftps_stop();

if (R_SUCCEEDED(gspLcdInit())) {
GSPLCD_PowerOnBacklight(GSPLCD_SCREEN_TOP);
Expand Down