Skip to content

Commit 234071f

Browse files
authored
Merge pull request wirepair#29 from wirepair/try_different_json_lib
Try different json lib
2 parents 80ce877 + 7c9ecb4 commit 234071f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+259
-76
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Changelog (2020)
22

3+
- May 18th: Replace encoding/json with https://github.com/json-iterator/go, heavy DOM usage should see reduction of memory by half. Updated to latest gcd / protocol.json file for 81.0.4044.138
34
- April 19th: Fix bad merge
45
- April 19th: Move to go modules, remove vendor directory. Fix gcdapigen to output version properly. Updated to latest gcd / protocol.json file for 81.0.4044.113
56

chrome_target.go

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ THE SOFTWARE.
2525
package gcd
2626

2727
import (
28-
"encoding/json"
2928
"io"
3029
"log"
3130
"net"

gcd.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ THE SOFTWARE.
2525
package gcd
2626

2727
import (
28-
"encoding/json"
2928
"errors"
3029
"fmt"
3130
"io/ioutil"
@@ -35,10 +34,14 @@ import (
3534
"os/exec"
3635
"time"
3736

37+
jsoniter "github.com/json-iterator/go"
38+
3839
"github.com/wirepair/gcd/gcdapi"
3940
)
4041

41-
var GCDVERSION = "v1.0.9"
42+
var json = jsoniter.ConfigCompatibleWithStandardLibrary
43+
44+
var GCDVERSION = "v1.0.10"
4245

4346
var (
4447
ErrNoTabAvailable = errors.New("no available tab found")

gcd_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package gcd
22

33
import (
4-
"encoding/json"
54
"flag"
65
"fmt"
76
"io/ioutil"

gcdapi/accessibility.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/animation.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/applicationcache.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/audits.go

+18-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

@@ -22,25 +21,41 @@ type AuditsAffectedRequest struct {
2221
Url string `json:"url,omitempty"` //
2322
}
2423

24+
// Information about the frame affected by an inspector issue.
25+
type AuditsAffectedFrame struct {
26+
FrameId string `json:"frameId"` //
27+
}
28+
2529
// This information is currently necessary, as the front-end has a difficult time finding a specific cookie. With this, we can convey specific error information without the cookie.
2630
type AuditsSameSiteCookieIssueDetails struct {
2731
Cookie *AuditsAffectedCookie `json:"cookie"` //
28-
CookieWarningReasons []string `json:"cookieWarningReasons"` // enum values: WarnSameSiteUnspecifiedCrossSiteContext, WarnSameSiteNoneInsecure, WarnSameSiteUnspecifiedLaxAllowUnsafe, WarnSameSiteCrossSchemeSecureUrlMethodUnsafe, WarnSameSiteCrossSchemeSecureUrlLax, WarnSameSiteCrossSchemeSecureUrlStrict, WarnSameSiteCrossSchemeInsecureUrlMethodUnsafe, WarnSameSiteCrossSchemeInsecureUrlLax, WarnSameSiteCrossSchemeInsecureUrlStrict
32+
CookieWarningReasons []string `json:"cookieWarningReasons"` // enum values: WarnSameSiteUnspecifiedCrossSiteContext, WarnSameSiteNoneInsecure, WarnSameSiteUnspecifiedLaxAllowUnsafe, WarnSameSiteStrictLaxDowngradeStrict, WarnSameSiteStrictCrossDowngradeStrict, WarnSameSiteStrictCrossDowngradeLax, WarnSameSiteLaxCrossDowngradeStrict, WarnSameSiteLaxCrossDowngradeLax
2933
CookieExclusionReasons []string `json:"cookieExclusionReasons"` // enum values: ExcludeSameSiteUnspecifiedTreatedAsLax, ExcludeSameSiteNoneInsecure
3034
Operation string `json:"operation"` // Optionally identifies the site-for-cookies and the cookie url, which may be used by the front-end as additional context. enum values: SetCookie, ReadCookie
3135
SiteForCookies string `json:"siteForCookies,omitempty"` //
3236
CookieUrl string `json:"cookieUrl,omitempty"` //
3337
Request *AuditsAffectedRequest `json:"request,omitempty"` //
3438
}
3539

40+
// No Description.
41+
type AuditsMixedContentIssueDetails struct {
42+
ResourceType string `json:"resourceType,omitempty"` // The type of resource causing the mixed content issue (css, js, iframe, form,...). Marked as optional because it is mapped to from blink::mojom::RequestContextType, which will be replaced by network::mojom::RequestDestination enum values: Audio, Beacon, CSPReport, Download, EventSource, Favicon, Font, Form, Frame, Image, Import, Manifest, Ping, PluginData, PluginResource, Prefetch, Resource, Script, ServiceWorker, SharedWorker, Stylesheet, Track, Video, Worker, XMLHttpRequest, XSLT
43+
ResolutionStatus string `json:"resolutionStatus"` // The way the mixed content issue is being resolved. enum values: MixedContentBlocked, MixedContentAutomaticallyUpgraded, MixedContentWarning
44+
InsecureURL string `json:"insecureURL"` // The unsafe http url causing the mixed content issue.
45+
MainResourceURL string `json:"mainResourceURL"` // The url responsible for the call to an unsafe url.
46+
Request *AuditsAffectedRequest `json:"request,omitempty"` // The mixed content request. Does not always exist (e.g. for unsafe form submission urls).
47+
Frame *AuditsAffectedFrame `json:"frame,omitempty"` // Optional because not every mixed content issue is necessarily linked to a frame.
48+
}
49+
3650
// This struct holds a list of optional fields with additional information specific to the kind of issue. When adding a new issue code, please also add a new optional field to this type.
3751
type AuditsInspectorIssueDetails struct {
3852
SameSiteCookieIssueDetails *AuditsSameSiteCookieIssueDetails `json:"sameSiteCookieIssueDetails,omitempty"` //
53+
MixedContentIssueDetails *AuditsMixedContentIssueDetails `json:"mixedContentIssueDetails,omitempty"` //
3954
}
4055

4156
// An inspector issue reported from the back-end.
4257
type AuditsInspectorIssue struct {
43-
Code string `json:"code"` // enum values: SameSiteCookieIssue
58+
Code string `json:"code"` // enum values: SameSiteCookieIssue, MixedContentIssue
4459
Details *AuditsInspectorIssueDetails `json:"details"` //
4560
}
4661

gcdapi/browser.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/cachestorage.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/css.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/database.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/debugger.go

+62-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

@@ -57,6 +56,12 @@ type DebuggerBreakLocation struct {
5756
Type string `json:"type,omitempty"` //
5857
}
5958

59+
// Debug symbols available for a wasm script.
60+
type DebuggerDebugSymbols struct {
61+
Type string `json:"type"` // Type of the debug symbols.
62+
ExternalURL string `json:"externalURL,omitempty"` // URL of the external symbol source.
63+
}
64+
6065
// Fired when breakpoint is resolved to an actual script and location.
6166
type DebuggerBreakpointResolvedEvent struct {
6267
Method string `json:"method"`
@@ -124,6 +129,7 @@ type DebuggerScriptParsedEvent struct {
124129
StackTrace *RuntimeStackTrace `json:"stackTrace,omitempty"` // JavaScript top stack frame of where the script parsed event was triggered if available.
125130
CodeOffset int `json:"codeOffset,omitempty"` // If the scriptLanguage is WebAssembly, the code section offset in the module.
126131
ScriptLanguage string `json:"scriptLanguage,omitempty"` // The language of the script. enum values: JavaScript, WebAssembly
132+
DebugSymbols *DebuggerDebugSymbols `json:"debugSymbols,omitempty"` // If the scriptLanguage is WebASsembly, the source of debug symbols for the module.
127133
} `json:"Params,omitempty"`
128134
}
129135

@@ -288,6 +294,61 @@ func (c *Debugger) EvaluateOnCallFrame(callFrameId string, expression string, ob
288294
return c.EvaluateOnCallFrameWithParams(&v)
289295
}
290296

297+
type DebuggerExecuteWasmEvaluatorParams struct {
298+
// WebAssembly call frame identifier to evaluate on.
299+
CallFrameId string `json:"callFrameId"`
300+
// Code of the evaluator module.
301+
Evaluator string `json:"evaluator"`
302+
// Terminate execution after timing out (number of milliseconds).
303+
Timeout float64 `json:"timeout,omitempty"`
304+
}
305+
306+
// ExecuteWasmEvaluatorWithParams - Execute a Wasm Evaluator module on a given call frame.
307+
// Returns - result - Object wrapper for the evaluation result. exceptionDetails - Exception details.
308+
func (c *Debugger) ExecuteWasmEvaluatorWithParams(v *DebuggerExecuteWasmEvaluatorParams) (*RuntimeRemoteObject, *RuntimeExceptionDetails, error) {
309+
resp, err := gcdmessage.SendCustomReturn(c.target, c.target.GetSendCh(), &gcdmessage.ParamRequest{Id: c.target.GetId(), Method: "Debugger.executeWasmEvaluator", Params: v})
310+
if err != nil {
311+
return nil, nil, err
312+
}
313+
314+
var chromeData struct {
315+
Result struct {
316+
Result *RuntimeRemoteObject
317+
ExceptionDetails *RuntimeExceptionDetails
318+
}
319+
}
320+
321+
if resp == nil {
322+
return nil, nil, &gcdmessage.ChromeEmptyResponseErr{}
323+
}
324+
325+
// test if error first
326+
cerr := &gcdmessage.ChromeErrorResponse{}
327+
json.Unmarshal(resp.Data, cerr)
328+
if cerr != nil && cerr.Error != nil {
329+
return nil, nil, &gcdmessage.ChromeRequestErr{Resp: cerr}
330+
}
331+
332+
if err := json.Unmarshal(resp.Data, &chromeData); err != nil {
333+
return nil, nil, err
334+
}
335+
336+
return chromeData.Result.Result, chromeData.Result.ExceptionDetails, nil
337+
}
338+
339+
// ExecuteWasmEvaluator - Execute a Wasm Evaluator module on a given call frame.
340+
// callFrameId - WebAssembly call frame identifier to evaluate on.
341+
// evaluator - Code of the evaluator module.
342+
// timeout - Terminate execution after timing out (number of milliseconds).
343+
// Returns - result - Object wrapper for the evaluation result. exceptionDetails - Exception details.
344+
func (c *Debugger) ExecuteWasmEvaluator(callFrameId string, evaluator string, timeout float64) (*RuntimeRemoteObject, *RuntimeExceptionDetails, error) {
345+
var v DebuggerExecuteWasmEvaluatorParams
346+
v.CallFrameId = callFrameId
347+
v.Evaluator = evaluator
348+
v.Timeout = timeout
349+
return c.ExecuteWasmEvaluatorWithParams(&v)
350+
}
351+
291352
type DebuggerGetPossibleBreakpointsParams struct {
292353
// Start of range to search possible breakpoint locations in.
293354
Start *DebuggerLocation `json:"start"`

gcdapi/dom.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/domdebugger.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/domsnapshot.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/domstorage.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/emulation.go

+22-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

@@ -21,6 +20,23 @@ type EmulationMediaFeature struct {
2120
Value string `json:"value"` //
2221
}
2322

23+
// Used to specify User Agent Cient Hints to emulate. See https://wicg.github.io/ua-client-hints
24+
type EmulationUserAgentBrandVersion struct {
25+
Brand string `json:"brand"` //
26+
Version string `json:"version"` //
27+
}
28+
29+
// Used to specify User Agent Cient Hints to emulate. See https://wicg.github.io/ua-client-hints
30+
type EmulationUserAgentMetadata struct {
31+
Brands []*EmulationUserAgentBrandVersion `json:"brands"` //
32+
FullVersion string `json:"fullVersion"` //
33+
Platform string `json:"platform"` //
34+
PlatformVersion string `json:"platformVersion"` //
35+
Architecture string `json:"architecture"` //
36+
Model string `json:"model"` //
37+
Mobile bool `json:"mobile"` //
38+
}
39+
2440
type Emulation struct {
2541
target gcdmessage.ChromeTargeter
2642
}
@@ -520,6 +536,8 @@ type EmulationSetUserAgentOverrideParams struct {
520536
AcceptLanguage string `json:"acceptLanguage,omitempty"`
521537
// The platform navigator.platform should return.
522538
Platform string `json:"platform,omitempty"`
539+
// To be sent in Sec-CH-UA-* headers and returned in navigator.userAgentData
540+
UserAgentMetadata *EmulationUserAgentMetadata `json:"userAgentMetadata,omitempty"`
523541
}
524542

525543
// SetUserAgentOverrideWithParams - Allows overriding user agent with the given string.
@@ -531,10 +549,12 @@ func (c *Emulation) SetUserAgentOverrideWithParams(v *EmulationSetUserAgentOverr
531549
// userAgent - User agent to use.
532550
// acceptLanguage - Browser langugage to emulate.
533551
// platform - The platform navigator.platform should return.
534-
func (c *Emulation) SetUserAgentOverride(userAgent string, acceptLanguage string, platform string) (*gcdmessage.ChromeResponse, error) {
552+
// userAgentMetadata - To be sent in Sec-CH-UA-* headers and returned in navigator.userAgentData
553+
func (c *Emulation) SetUserAgentOverride(userAgent string, acceptLanguage string, platform string, userAgentMetadata *EmulationUserAgentMetadata) (*gcdmessage.ChromeResponse, error) {
535554
var v EmulationSetUserAgentOverrideParams
536555
v.UserAgent = userAgent
537556
v.AcceptLanguage = acceptLanguage
538557
v.Platform = platform
558+
v.UserAgentMetadata = userAgentMetadata
539559
return c.SetUserAgentOverrideWithParams(&v)
540560
}

gcdapi/fetch.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/headlessexperimental.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/heapprofiler.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/indexeddb.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/io.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

gcdapi/layertree.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
package gcdapi
66

77
import (
8-
"encoding/json"
98
"github.com/wirepair/gcd/gcdmessage"
109
)
1110

0 commit comments

Comments
 (0)