Files
sdk/runtime/bin/extensions.h
T
Zachary Anderson b990bc3794 Fix native extension lookup
This CL allows native extension lookup to defer to the platform's
library lookup (e.g. dlopen) when the library cannot be found next to
the importing Dart library. It also allows dart-ext: to accept an
absolute path to the native library.

R=asiva@google.com

Review URL: https://codereview.chromium.org/2285223003 .
2016-08-30 09:31:47 -07:00

45 lines
1.4 KiB
C++

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef BIN_EXTENSIONS_H_
#define BIN_EXTENSIONS_H_
#include "include/dart_api.h"
#include "platform/globals.h"
namespace dart {
namespace bin {
class Extensions {
public:
// TODO(whesse): Make extension load from a relative path relative to
// the library it is in. Currently loads from current working directory.
static Dart_Handle LoadExtension(const char* extension_directory,
const char* extension_name,
Dart_Handle parent_library);
// Platform-specific implementations.
static void* LoadExtensionLibrary(const char* library_file);
static void* ResolveSymbol(void* lib_handle, const char* symbol);
private:
static Dart_Handle GetError();
static void* MakePathAndResolve(const char* dir, const char* name);
static void* ResolveAbsPathExtension(const char* extension_path);
static void* ResolveExtension(const char* extensioion_directory,
const char* extension_name);
// The returned string is scope allocated.
static const char* Concatenate(const char** strings);
DISALLOW_ALLOCATION();
DISALLOW_IMPLICIT_CONSTRUCTORS(Extensions);
};
} // namespace bin
} // namespace dart
#endif // BIN_EXTENSIONS_H_