package propertytotalitems import ( "fmt" nonnegativeinteger "github.com/go-fed/activity/streams/values/nonNegativeInteger" vocab "github.com/go-fed/activity/streams/vocab" "net/url" ) // ActivityStreamsTotalItemsProperty is the functional property "totalItems". It // is permitted to be a single default-valued value type. type ActivityStreamsTotalItemsProperty struct { xmlschemaNonNegativeIntegerMember int hasNonNegativeIntegerMember bool unknown interface{} iri *url.URL alias string } // DeserializeTotalItemsProperty creates a "totalItems" property from an interface // representation that has been unmarshalled from a text or binary format. func DeserializeTotalItemsProperty(m map[string]interface{}, aliasMap map[string]string) (*ActivityStreamsTotalItemsProperty, error) { alias := "" if a, ok := aliasMap["https://www.w3.org/TR/activitystreams-vocabulary"]; ok { alias = a } propName := "totalItems" if len(alias) > 0 { // Use alias both to find the property, and set within the property. propName = fmt.Sprintf("%s:%s", alias, "totalItems") } i, ok := m[propName] if ok { if s, ok := i.(string); ok { u, err := url.Parse(s) // If error exists, don't error out -- skip this and treat as unknown string ([]byte) at worst // Also, if no scheme exists, don't treat it as a URL -- net/url is greedy if err == nil && len(u.Scheme) > 0 { this := &ActivityStreamsTotalItemsProperty{ alias: alias, iri: u, } return this, nil } } if v, err := nonnegativeinteger.DeserializeNonNegativeInteger(i); err == nil { this := &ActivityStreamsTotalItemsProperty{ alias: alias, hasNonNegativeIntegerMember: true, xmlschemaNonNegativeIntegerMember: v, } return this, nil } this := &ActivityStreamsTotalItemsProperty{ alias: alias, unknown: i, } return this, nil } return nil, nil } // NewActivityStreamsTotalItemsProperty creates a new totalItems property. func NewActivityStreamsTotalItemsProperty() *ActivityStreamsTotalItemsProperty { return &ActivityStreamsTotalItemsProperty{alias: ""} } // Clear ensures no value of this property is set. Calling // IsXMLSchemaNonNegativeInteger afterwards will return false. func (this *ActivityStreamsTotalItemsProperty) Clear() { this.unknown = nil this.iri = nil this.hasNonNegativeIntegerMember = false } // Get returns the value of this property. When IsXMLSchemaNonNegativeInteger // returns false, Get will return any arbitrary value. func (this ActivityStreamsTotalItemsProperty) Get() int { return this.xmlschemaNonNegativeIntegerMember } // GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will // return any arbitrary value. func (this ActivityStreamsTotalItemsProperty) GetIRI() *url.URL { return this.iri } // HasAny returns true if the value or IRI is set. func (this ActivityStreamsTotalItemsProperty) HasAny() bool { return this.IsXMLSchemaNonNegativeInteger() || this.iri != nil } // IsIRI returns true if this property is an IRI. func (this ActivityStreamsTotalItemsProperty) IsIRI() bool { return this.iri != nil } // IsXMLSchemaNonNegativeInteger returns true if this property is set and not an // IRI. func (this ActivityStreamsTotalItemsProperty) IsXMLSchemaNonNegativeInteger() bool { return this.hasNonNegativeIntegerMember } // JSONLDContext returns the JSONLD URIs required in the context string for this // property and the specific values that are set. The value in the map is the // alias used to import the property's value or values. func (this ActivityStreamsTotalItemsProperty) JSONLDContext() map[string]string { m := map[string]string{"https://www.w3.org/TR/activitystreams-vocabulary": this.alias} var child map[string]string /* Since the literal maps in this function are determined at code-generation time, this loop should not overwrite an existing key with a new value. */ for k, v := range child { m[k] = v } return m } // KindIndex computes an arbitrary value for indexing this kind of value. This is // a leaky API detail only for folks looking to replace the go-fed // implementation. Applications should not use this method. func (this ActivityStreamsTotalItemsProperty) KindIndex() int { if this.IsXMLSchemaNonNegativeInteger() { return 0 } if this.IsIRI() { return -2 } return -1 } // LessThan compares two instances of this property with an arbitrary but stable // comparison. Applications should not use this because it is only meant to // help alternative implementations to go-fed to be able to normalize // nonfunctional properties. func (this ActivityStreamsTotalItemsProperty) LessThan(o vocab.ActivityStreamsTotalItemsProperty) bool { // LessThan comparison for if either or both are IRIs. if this.IsIRI() && o.IsIRI() { return this.iri.String() < o.GetIRI().String() } else if this.IsIRI() { // IRIs are always less than other values, none, or unknowns return true } else if o.IsIRI() { // This other, none, or unknown value is always greater than IRIs return false } // LessThan comparison for the single value or unknown value. if !this.IsXMLSchemaNonNegativeInteger() && !o.IsXMLSchemaNonNegativeInteger() { // Both are unknowns. return false } else if this.IsXMLSchemaNonNegativeInteger() && !o.IsXMLSchemaNonNegativeInteger() { // Values are always greater than unknown values. return false } else if !this.IsXMLSchemaNonNegativeInteger() && o.IsXMLSchemaNonNegativeInteger() { // Unknowns are always less than known values. return true } else { // Actual comparison. return nonnegativeinteger.LessNonNegativeInteger(this.Get(), o.Get()) } } // Name returns the name of this property: "totalItems". func (this ActivityStreamsTotalItemsProperty) Name() string { return "totalItems" } // Serialize converts this into an interface representation suitable for // marshalling into a text or binary format. Applications should not need this // function as most typical use cases serialize types instead of individual // properties. It is exposed for alternatives to go-fed implementations to use. func (this ActivityStreamsTotalItemsProperty) Serialize() (interface{}, error) { if this.IsXMLSchemaNonNegativeInteger() { return nonnegativeinteger.SerializeNonNegativeInteger(this.Get()) } else if this.IsIRI() { return this.iri.String(), nil } return this.unknown, nil } // Set sets the value of this property. Calling IsXMLSchemaNonNegativeInteger // afterwards will return true. func (this *ActivityStreamsTotalItemsProperty) Set(v int) { this.Clear() this.xmlschemaNonNegativeIntegerMember = v this.hasNonNegativeIntegerMember = true } // SetIRI sets the value of this property. Calling IsIRI afterwards will return // true. func (this *ActivityStreamsTotalItemsProperty) SetIRI(v *url.URL) { this.Clear() this.iri = v }