Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
f26d8d83
Commit
f26d8d83
authored
Sep 30, 2015
by
Matt Perry
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1414 from mpcomplete/use.changes.2
Implement working UpdateTask in Dart
parents
d7576946
af3a10f4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
213 additions
and
7 deletions
+213
-7
activity.dart
packages/flutter/lib/src/services/activity.dart
+12
-2
BUILD.gn
packages/updater/BUILD.gn
+2
-0
main.dart
packages/updater/lib/main.dart
+94
-3
pipe_to_file.dart
packages/updater/lib/pipe_to_file.dart
+64
-0
version.dart
packages/updater/lib/version.dart
+32
-0
pubspec.yaml
packages/updater/pubspec.yaml
+9
-2
No files found.
packages/flutter/lib/src/services/activity.dart
View file @
f26d8d83
...
@@ -37,6 +37,15 @@ UserFeedbackProxy _initUserFeedbackProxy() {
...
@@ -37,6 +37,15 @@ UserFeedbackProxy _initUserFeedbackProxy() {
final
UserFeedbackProxy
_userFeedbackProxy
=
_initUserFeedbackProxy
();
final
UserFeedbackProxy
_userFeedbackProxy
=
_initUserFeedbackProxy
();
final
UserFeedback
userFeedback
=
_userFeedbackProxy
.
ptr
;
final
UserFeedback
userFeedback
=
_userFeedbackProxy
.
ptr
;
PathServiceProxy
_initPathServiceProxy
(
)
{
PathServiceProxy
proxy
=
new
PathServiceProxy
.
unbound
();
shell
.
requestService
(
null
,
proxy
);
return
proxy
;
}
final
PathServiceProxy
_pathServiceProxy
=
_initPathServiceProxy
();
final
PathService
pathService
=
_pathServiceProxy
.
ptr
;
Color
_cachedPrimaryColor
;
Color
_cachedPrimaryColor
;
String
_cachedLabel
;
String
_cachedLabel
;
...
@@ -55,5 +64,6 @@ void updateTaskDescription(String label, Color color) {
...
@@ -55,5 +64,6 @@ void updateTaskDescription(String label, Color color) {
_activityProxy
.
ptr
.
setTaskDescription
(
description
);
_activityProxy
.
ptr
.
setTaskDescription
(
description
);
}
}
Future
<
String
>
getFilesDir
()
async
=>
(
await
_activityProxy
.
ptr
.
getFilesDir
()).
path
;
Future
<
String
>
getAppDataDir
()
async
=>
(
await
_pathServiceProxy
.
ptr
.
getAppDataDir
()).
path
;
Future
<
String
>
getCacheDir
()
async
=>
(
await
_activityProxy
.
ptr
.
getCacheDir
()).
path
;
Future
<
String
>
getFilesDir
()
async
=>
(
await
_pathServiceProxy
.
ptr
.
getFilesDir
()).
path
;
Future
<
String
>
getCacheDir
()
async
=>
(
await
_pathServiceProxy
.
ptr
.
getCacheDir
()).
path
;
packages/updater/BUILD.gn
View file @
f26d8d83
...
@@ -25,6 +25,8 @@ action("updater") {
...
@@ -25,6 +25,8 @@ action("updater") {
]
]
deps = [
deps = [
"//sky/services/activity:interfaces",
"//sky/services/updater:interfaces",
"//sky/tools/sky_snapshot($host_toolchain)",
"//sky/tools/sky_snapshot($host_toolchain)",
]
]
}
}
packages/updater/lib/main.dart
View file @
f26d8d83
...
@@ -2,13 +2,104 @@
...
@@ -2,13 +2,104 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.
import
'dart:async'
;
import
'dart:io'
;
import
'package:mojo/core.dart'
;
import
'package:sky/services.dart'
;
import
'package:sky_services/updater/update_service.mojom.dart'
;
import
'package:path/path.dart'
as
path
;
import
'package:yaml/yaml.dart'
as
yaml
;
import
'version.dart'
;
import
'pipe_to_file.dart'
;
const
String
kManifestFile
=
'sky.yaml'
;
const
String
kBundleFile
=
'app.skyx'
;
UpdateServiceProxy
_initUpdateService
(
)
{
UpdateServiceProxy
updateService
=
new
UpdateServiceProxy
.
unbound
();
shell
.
requestService
(
null
,
updateService
);
return
updateService
;
}
final
UpdateServiceProxy
_updateService
=
_initUpdateService
();
String
cachedDataDir
=
null
;
Future
<
String
>
getDataDir
()
async
{
if
(
cachedDataDir
==
null
)
cachedDataDir
=
await
getAppDataDir
();
return
cachedDataDir
;
}
class
UpdateTask
{
class
UpdateTask
{
UpdateTask
()
{}
UpdateTask
()
{}
String
toString
()
=>
"UpdateTask()"
;
run
()
async
{
try
{
await
_runImpl
();
}
catch
(
e
)
{
print
(
'Update failed:
$e
'
);
}
finally
{
_updateService
.
ptr
.
notifyUpdateCheckComplete
();
}
}
_runImpl
()
async
{
_dataDir
=
await
getDataDir
();
await
_readLocalManifest
();
yaml
.
YamlMap
remoteManifest
=
await
_fetchManifest
();
if
(!
_shouldUpdate
(
remoteManifest
))
{
print
(
'Update skipped. No new version.'
);
return
;
}
MojoResult
result
=
await
_fetchBundle
();
if
(!
result
.
isOk
)
{
print
(
'Update failed while fetching new skyx bundle.'
);
return
;
}
await
_replaceBundle
();
print
(
'Update success.'
);
}
yaml
.
YamlMap
_currentManifest
;
String
_dataDir
;
String
_tempPath
;
_readLocalManifest
()
async
{
String
manifestPath
=
path
.
join
(
_dataDir
,
kManifestFile
);
String
manifestData
=
await
new
File
(
manifestPath
).
readAsString
();
_currentManifest
=
yaml
.
loadYaml
(
manifestData
,
sourceUrl:
manifestPath
);
}
Future
<
yaml
.
YamlMap
>
_fetchManifest
()
async
{
String
manifestUrl
=
_currentManifest
[
'update_url'
]
+
'/'
+
kManifestFile
;
String
manifestData
=
await
fetchString
(
manifestUrl
);
return
yaml
.
loadYaml
(
manifestData
,
sourceUrl:
manifestUrl
);
}
bool
_shouldUpdate
(
yaml
.
YamlMap
remoteManifest
)
{
Version
currentVersion
=
new
Version
(
_currentManifest
[
'version'
]);
Version
remoteVersion
=
new
Version
(
remoteManifest
[
'version'
]);
return
(
currentVersion
<
remoteVersion
);
}
Future
<
MojoResult
>
_fetchBundle
()
async
{
// TODO(mpcomplete): Use the cache dir. We need an equivalent of mkstemp().
_tempPath
=
path
.
join
(
_dataDir
,
'tmp.skyx'
);
String
bundleUrl
=
_currentManifest
[
'update_url'
]
+
'/'
+
kBundleFile
;
UrlResponse
response
=
await
fetchUrl
(
bundleUrl
);
return
PipeToFile
.
copyToFile
(
response
.
body
,
_tempPath
);
}
_replaceBundle
()
async
{
String
bundlePath
=
path
.
join
(
_dataDir
,
kBundleFile
);
await
new
File
(
_tempPath
).
rename
(
bundlePath
);
}
}
}
void
main
(
)
{
void
main
(
)
{
var
x
=
new
UpdateTask
();
var
task
=
new
UpdateTask
();
print
(
"Success:
$x
"
);
task
.
run
(
);
}
}
packages/updater/lib/pipe_to_file.dart
0 → 100644
View file @
f26d8d83
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:async'
;
import
'dart:io'
;
import
'dart:typed_data'
;
import
'package:mojo/core.dart'
;
// Helper class to drain the contents of a mojo data pipe to a file.
class
PipeToFile
{
MojoDataPipeConsumer
_consumer
;
MojoEventStream
_eventStream
;
IOSink
_outputStream
;
PipeToFile
(
this
.
_consumer
,
String
outputPath
)
{
_eventStream
=
new
MojoEventStream
(
_consumer
.
handle
);
_outputStream
=
new
File
(
outputPath
).
openWrite
();
}
Future
<
MojoResult
>
_doRead
()
async
{
ByteData
thisRead
=
_consumer
.
beginRead
();
if
(
thisRead
==
null
)
{
throw
'Data pipe beginRead failed:
${_consumer.status}
'
;
}
// TODO(mpcomplete): Should I worry about the _eventStream listen callback
// being invoked again before this completes?
await
_outputStream
.
add
(
thisRead
.
buffer
.
asUint8List
());
return
_consumer
.
endRead
(
thisRead
.
lengthInBytes
);
}
Future
<
MojoResult
>
drain
()
async
{
var
completer
=
new
Completer
();
// TODO(mpcomplete): Is it legit to pass an async callback to listen?
_eventStream
.
listen
((
List
<
int
>
event
)
async
{
var
mojoSignals
=
new
MojoHandleSignals
(
event
[
1
]);
if
(
mojoSignals
.
isReadable
)
{
var
result
=
await
_doRead
();
if
(!
result
.
isOk
)
{
_eventStream
.
close
();
_eventStream
=
null
;
_outputStream
.
close
();
completer
.
complete
(
result
);
}
else
{
_eventStream
.
enableReadEvents
();
}
}
else
if
(
mojoSignals
.
isPeerClosed
)
{
_eventStream
.
close
();
_eventStream
=
null
;
_outputStream
.
close
();
completer
.
complete
(
MojoResult
.
OK
);
}
else
{
throw
'Unexpected handle event:
$mojoSignals
'
;
}
});
return
completer
.
future
;
}
static
Future
<
MojoResult
>
copyToFile
(
MojoDataPipeConsumer
consumer
,
String
outputPath
)
{
var
drainer
=
new
PipeToFile
(
consumer
,
outputPath
);
return
drainer
.
drain
();
}
}
packages/updater/lib/version.dart
0 → 100644
View file @
f26d8d83
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'dart:math'
;
// This class represents a dot-separated version string. Used for comparing
// versions.
// Usage: assert(new Version('1.1.0') < new Version('1.2.1'));
class
Version
{
Version
(
String
versionStr
)
:
_parts
=
versionStr
.
split
(
'.'
).
map
((
val
)
=>
int
.
parse
(
val
)).
toList
();
List
<
int
>
_parts
;
bool
operator
<(
Version
other
)
=>
_compare
(
other
)
<
0
;
bool
operator
==(
dynamic
other
)
=>
other
is
Version
&&
_compare
(
other
)
==
0
;
bool
operator
>(
Version
other
)
=>
_compare
(
other
)
>
0
;
int
_compare
(
Version
other
)
{
int
length
=
min
(
_parts
.
length
,
other
.
_parts
.
length
);
for
(
int
i
=
0
;
i
<
length
;
++
i
)
{
if
(
_parts
[
i
]
<
other
.
_parts
[
i
])
return
-
1
;
if
(
_parts
[
i
]
>
other
.
_parts
[
i
])
return
1
;
}
return
_parts
.
length
-
other
.
_parts
.
length
;
// results in 1.0 < 1.0.0
}
int
get
hashCode
=>
_parts
.
fold
(
373
,
(
acc
,
part
)
=>
37
*
acc
+
part
);
}
packages/updater/pubspec.yaml
View file @
f26d8d83
name
:
sky_
updater
name
:
updater
version
:
0.0.1
version
:
0.0.1
author
:
Flutter Authors <flutter-dev@googlegroups.com>
author
:
Flutter Authors <flutter-dev@googlegroups.com>
description
:
The autoupdater for flutter
description
:
The autoupdater for flutter
homepage
:
http://flutter.io
homepage
:
http://flutter.io
dependencies
:
dependencies
:
mojo
:
^0.0.21
mojo
:
'
>=0.1.0
<0.2.0'
sky
:
any
sky_services
:
any
path
:
any
yaml
:
any
dependency_overrides
:
sky
:
path
:
../sky
environment
:
environment
:
sdk
:
'
>=1.12.0
<2.0.0'
sdk
:
'
>=1.12.0
<2.0.0'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment