Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  binary_sdk_member.go   Sprache: unbekannt

 
Spracherkennung für: .go vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

// Copyright 2020 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package cc

import (
 "fmt"
 "path/filepath"

 "android/soong/android"

 "github.com/google/blueprint"
 "github.com/google/blueprint/proptools"
)

//go:generate go run ../../blueprint/gobtools/codegen

func init() {
 android.RegisterSdkMemberType(ccBinarySdkMemberType)
}

var ccBinarySdkMemberType = &binarySdkMemberType{
 SdkMemberTypeBase: android.SdkMemberTypeBase{
  PropertyName:    "native_binaries",
  HostOsDependent: true,
 },
}

// @auto-generate: gob
type binarySdkMemberType struct {
 android.SdkMemberTypeBase
}

func (mt *binarySdkMemberType) AddDependencies(ctx android.SdkDependencyContext, dependencyTag blueprint.DependencyTag, names []string) {
 targets := ctx.MultiTargets()
 for _, bin := range names {
  for _, target := range targets {
   variations := target.Variations()
   if ctx.Device() {
    variations = append(variations,
     blueprint.Variation{Mutator: "image", Variation: android.CoreVariation})
   }
   ctx.AddFarVariationDependencies(variations, dependencyTag, bin)
  }
 }
}

func (mt *binarySdkMemberType) IsInstance(ctx android.ModuleContext, module android.ModuleProxy) bool {
 // Check the module to see if it can be used with this module type.
 if m, ok := android.OtherModuleProvider(ctx, module, CcInfoProvider); ok {
  for _, allowableMemberType := range m.SdkMemberTypes {
   if allowableMemberType.SdkPropertyName() == mt.SdkPropertyName() {
    return true
   }
  }
 }

 return false
}

func (mt *binarySdkMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule {
 pbm := ctx.SnapshotBuilder().AddPrebuiltModule(member, "cc_prebuilt_binary")

 info, ok := android.OtherModuleProvider(ctx.SdkModuleContext(), member.Variants()[0], CcInfoProvider)
 if !ok {
  panic(fmt.Errorf("not a cc module: %s", member.Variants()[0]))
 }

 if info.StlInfo != nil && info.StlInfo.Stl != nil {
  pbm.AddProperty("stl", proptools.String(info.StlInfo.Stl))
 }

 return pbm
}

func (mt *binarySdkMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties {
 return &nativeBinaryInfoProperties{}
}

const (
 nativeBinaryDir = "bin"
)

// path to the native binary. Relative to <sdk_root>/<api_dir>
func nativeBinaryPathFor(lib nativeBinaryInfoProperties) string {
 return filepath.Join(lib.OsPrefix(), lib.archType,
  nativeBinaryDir, lib.outputFile.Base())
}

// nativeBinaryInfoProperties represents properties of a native binary
//
// The exported (capitalized) fields will be examined and may be changed during common value extraction.
// The unexported fields will be left untouched.
type nativeBinaryInfoProperties struct {
 android.SdkMemberPropertiesBase

 // archType is not exported as if set (to a non default value) it is always arch specific.
 // This is "" for common properties.
 archType string

 // outputFile is not exported as it is always arch specific.
 outputFile android.Path

 // The set of shared libraries
 //
 // This field is exported as its contents may not be arch specific.
 SharedLibs []string

 // The set of system shared libraries
 //
 // This field is exported as its contents may not be arch specific.
 SystemSharedLibs []string

 // Arch specific flags.
 StaticExecutable bool
 Nocrt            bool
}

func setSharedAndSystemLibs(specifiedDeps *specifiedDeps, sharedLibs []string, systemLibs []string) {
 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, sharedLibs...)
 // Must distinguish nil and [] in system_shared_libs - ensure that [] in
 // either input list doesn't come out as nil.
 if specifiedDeps.systemSharedLibs == nil {
  specifiedDeps.systemSharedLibs = systemLibs
 } else {
  specifiedDeps.systemSharedLibs = append(specifiedDeps.systemSharedLibs, systemLibs...)
 }
}

func setLinkerSpecifiedDeps(linker *LinkerInfo, specifiedDeps *specifiedDeps) {
 if linker.ObjectLinkerInfo != nil {
  setSharedAndSystemLibs(specifiedDeps, linker.ObjectLinkerInfo.SharedLibs, linker.ObjectLinkerInfo.SystemSharedLibs)
  return
 }

 setSharedAndSystemLibs(specifiedDeps, linker.SharedLibs, linker.SystemSharedLibs)

 if linker.LibraryDecoratorInfo != nil {
  setSharedAndSystemLibs(specifiedDeps, linker.LibraryDecoratorInfo.SharedLibs, linker.LibraryDecoratorInfo.SystemSharedLibs)
  specifiedDeps.sharedLibs = android.FirstUniqueStrings(specifiedDeps.sharedLibs)
  if len(specifiedDeps.systemSharedLibs) > 0 {
   // Skip this if systemSharedLibs is either nil or [], to ensure they are
   // retained.
   specifiedDeps.systemSharedLibs = android.FirstUniqueStrings(specifiedDeps.systemSharedLibs)
  }
 }
}

func (p *nativeBinaryInfoProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.ModuleProxy) {
 commonInfo := android.OtherModulePointerProviderOrDefault(ctx.SdkModuleContext(), variant, android.CommonModuleInfoProvider)
 ccInfo := android.OtherModulePointerProviderOrDefault(ctx.SdkModuleContext(), variant, CcInfoProvider)
 p.archType = commonInfo.Target.Arch.ArchType.String()
 p.outputFile = getRequiredMemberOutputFile(ctx, variant)

 if ccInfo.LinkerInfo != nil {
  binaryLinker := ccInfo.LinkerInfo.BinaryDecoratorInfo
  p.StaticExecutable = binaryLinker.StaticExecutable
  p.Nocrt = binaryLinker.Nocrt

  specifiedDeps := specifiedDeps{}
  setLinkerSpecifiedDeps(ccInfo.LinkerInfo, &specifiedDeps)

  p.SharedLibs = specifiedDeps.sharedLibs
  p.SystemSharedLibs = specifiedDeps.systemSharedLibs
 }
}

func (p *nativeBinaryInfoProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) {
 builder := ctx.SnapshotBuilder()
 if p.outputFile != nil {
  propertySet.AddProperty("srcs", []string{nativeBinaryPathFor(*p)})

  builder.CopyToSnapshot(p.outputFile, nativeBinaryPathFor(*p))
 }

 if len(p.SharedLibs) > 0 {
  propertySet.AddPropertyWithTag("shared_libs", p.SharedLibs, builder.SdkMemberReferencePropertyTag(false))
 }

 // SystemSharedLibs needs to be propagated if it's a list, even if it's empty,
 // so check for non-nil instead of nonzero length.
 if p.SystemSharedLibs != nil {
  propertySet.AddPropertyWithTag("system_shared_libs", p.SystemSharedLibs, builder.SdkMemberReferencePropertyTag(false))
 }

 if p.StaticExecutable {
  propertySet.AddProperty("static_executable", p.StaticExecutable)
 }
 if p.Nocrt {
  propertySet.AddProperty("nocrt", p.Nocrt)
 }
}

[Dauer der Verarbeitung: 0.19 Sekunden, vorverarbeitet 2026-06-28]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik