Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
orbutils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nick Thomas
orbutils
Commits
e6c16e8d
Commit
e6c16e8d
authored
8 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
hack to get all entries to show up with ralloc
parent
162e17a0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/launcher/main.rs
+19
-8
19 additions, 8 deletions
src/launcher/main.rs
with
19 additions
and
8 deletions
src/launcher/main.rs
+
19
−
8
View file @
e6c16e8d
...
@@ -6,7 +6,8 @@ extern crate orbimage;
...
@@ -6,7 +6,8 @@ extern crate orbimage;
extern
crate
orbfont
;
extern
crate
orbfont
;
use
std
::
env
;
use
std
::
env
;
use
std
::
fs
::{
self
,
File
};
use
std
::
fs
::
File
;
use
std
::
path
::
Path
;
use
std
::
process
::
Command
;
use
std
::
process
::
Command
;
use
std
::
thread
;
use
std
::
thread
;
...
@@ -44,16 +45,26 @@ fn get_display_size() -> (i32, i32) {
...
@@ -44,16 +45,26 @@ fn get_display_size() -> (i32, i32) {
}
}
fn
get_packages
()
->
Vec
<
Package
>
{
fn
get_packages
()
->
Vec
<
Package
>
{
let
mut
packages
:
Vec
<
Package
>
=
Vec
::
new
();
let
read_dir
=
Path
::
new
(
"/apps/"
)
.read_dir
()
.expect
(
"failed to read_dir on /apps/"
);
for
entry_result
in
fs
::
read_dir
(
"/apps/"
)
.unwrap
()
{
let
mut
entries
=
vec!
[];
let
entry
=
entry_result
.unwrap
();
for
dir
in
read_dir
{
if
entry
.file_type
()
.unwrap
()
.is_dir
()
{
let
dir
=
match
dir
{
packages
.push
(
Package
::
from_path
(
&
(
"/apps/"
.to_string
()
+
entry
.file_name
()
.to_str
()
.unwrap
())));
Ok
(
x
)
=>
x
,
Err
(
_
)
=>
continue
,
};
let
file_name
=
dir
.file_name
()
.to_string_lossy
()
.into_owned
();
if
dir
.file_type
()
.expect
(
"failed to get file_type"
)
.is_dir
()
{
entries
.push
(
file_name
);
}
}
}
}
packages
.sort_by
(|
a
,
b
|
a
.name
.cmp
(
&
b
.name
));
entries
.sort
();
let
mut
packages
:
Vec
<
Package
>
=
Vec
::
new
();
for
entry
in
entries
.iter
()
{
packages
.push
(
Package
::
from_path
(
&
format!
(
"/apps/{}"
,
entry
)));
}
packages
packages
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment